migrate-to-parallel

Migrate Exa, Tavily, Perplexity, or Firecrawl web-data integrations completely to the appropriate Parallel products while preserving application behavior. Use when replacing these providers' SDKs or REST calls, dependencies, environment variables, request parameters, response parsing, model tools, s

By parallel-web · 1,960 installs

npx skills add parallel-web/parallel-agent-skills --skill migrate-to-parallel

Source repository · Upstream listing

Migrate to Parallel Replace the provider boundary end to end. Treat a successful HTTP response as the midpoint, not completion: migrate request construction, response consumers, dependencies, configuration, tests, and operational behavior. Resolve <skill root to the directory containing this SKILL.md . Resolve every bundled reference and script from that directory, regardless of the current working directory. The scanner uses only the Python standard library. If Python 3.9 or newer is unavailable, perform equivalent repository searches with the harness's file search tools and state that the bundled scan was not run. Load the right references 1. Read [references/exa.md](references/exa.md) when the repository contains Exa. 2. Read [references/tavily.md](references/tavily.md) when the repository contains Tavily. 3. Read [references/perplexity.md](references/perplexity.md) when the repository contains Perplexity Search, Sonar, Agent API web tools, or a Perplexity search wrapper. 4. Read [references/firecrawl.md](references/firecrawl.md) when the repository contains Firecrawl Search, Scrape, Batch Scrape, Extract, Agent, Research Index, Crawl, Map, Parse, Browser, Interact, Monitor, or MCP usage. 5. Read [references/parallel search.md](references/parallel search.md) when any call may route to Search or needs query, filter, freshness, mode, or result list migration. 6. Read [references/parallel products.md](references/parallel products.md) when any call may route to Extract, Chat, Task, or entity discovery, or needs streaming, structured output, or citations. 7. Read [references/integration patterns.md](references/integration patterns.md) when queries are generated dynamically, the provider is exposed as a model tool, provider response types escape into multiple modules, or the application needs full content or synthesized answers. 8. Open current official documentation for any detected SDK, wrapper, parameter, or response field not covered by those references. Do not guess at provider behavior. Preserve these invariants Preserve caller visible behavior unless the user explicitly authorizes a change. Never silently drop a filter, content field, synthesized answer, image, safety control, or score based decision. Never print API keys or secret values. Check only whether a key is present. Do not add a hidden LLM call merely to manufacture search queries . Do not treat an arbitrary user prompt as a keyword query merely because it fits an API length limit. Keep web research intent, hard filters, handler policy, and answer synthesis instructions in their separate contracts. Treat omitted provider parameters as behavior too: inspect their defaults before omitting a Parallel setting. Do not recreate the entire legacy provider SDK behind a compatibility shim. Normalize only the contract the application actually uses. Do not remove credentials from external secret managers or provider dashboards unless the user explicitly asks. Remove obsolete code references and update checked in templates. Treat mode mappings as starting points. Verify latency, quality, and output behavior with the application's real queries. Stop before destructive edits when a required behavior has no supported Parallel equivalent and no in scope substitute. Report the exact gap and the smallest decision needed. Stop when the Perplexity boundary requires embeddings; they are not a Parallel Search replacement. Route finance search through Parallel's general index using Search, Chat, or Task according to the consumed contract, and stop only when a hard market data coverage, freshness, or raw result requirement remains unpreserved. Keep Agent API model routing, sandbox, MCP, and existing custom function capabilities separate unless the user explicitly expands the migration scope. Stop when the Firecrawl boundary requires complete crawling or URL mapping, local/private file parsing, browser actions or sessions, screenshots or other rich scrape formats, change tracking, or Firecrawl specific privacy/security controls without an approved replacement. Search and Extract do not reproduce those contracts. Follow repository local instructions such as AGENTS.md , CLAUDE.md , and CONTRIBUTING.md . Preserve unrelated work and never reset or discard user changes. Complete safe repository local migration work without stopping after an inventory or plan. Do not commit, push, change hosted secrets, or alter provider accounts unless the user asks. 1. Inventory the real migration surface Record the current branch and working tree state before editing. Run the bundled scanner from the target repository: Use format json for machine readable output. The scanner intentionally skips dependency/generated directories, binaries, unreadable files, and oversized files; it cannot identify provider neutral consumers from field names alone. Treat it as an inventory aid, not proof of completeness. Inspect the results and then trace each provider response to its consumers. Also inspect: package manifests and lockfiles; direct REST endpoints and auth headers; SDK clients, async clients, wrappers, and model tool definitions; environment schemas, examples, deployment config, and docs; request builders, retries, timeouts, caches, observability, and error handling; response fields used for rendering, ranking, thresholds, citations, or model context; Firecrawl crawl, batch, extract, browser, interaction, webhook, and job lifecycle consumers; tests, mocks, fixtures, and snapshots. Run the existing focused tests before editing when feasible. Record which behavior is currently covered, which failures are pre existing, and which behavior must be verified manually. Before editing, write a decision row for every provider call site: Call site Provider product Consumed behavior Parallel route Semantic gap Action path:line Search, Scrape, Agent, etc. Inputs, outputs, lifecycle, and policy the caller relies on Exact product path, if any Anything the route cannot preserve migrate , retain , or block Choose exactly one action before changing the call: migrate only when the proposed route preserves the consumed contract or the user has already approved the named difference; retain when the call is outside the migration boundary or is the smallest safe way to preserve an unsupported capability; block when the requested boundary cannot be completed without a user decision. Name the smallest decision, and continue any independent migrate rows. Do not use a broader Parallel product merely to eliminate a provider import. A plausible result shape is not evidence that source scope, spend controls, model behavior, lifecycle, or privacy policy remains equivalent. 2. Choose the migration boundary Consider both designs before editing: Direct replacement: Use when provider calls are few, nearby, and provider specific response types do not escape. Replace each call and its consumers atomically. Application owned web data module: Use when calls are scattered, several Parallel products are needed, or provider fields escape into the application. Put request construction, response normalization, retries, and telemetry behind one small caller facing interface. Make this a deep module that hides provider details; do not add a pass through wrapper. Prefer the design that localizes future search provider changes and minimizes edits to unrelated callers. If the application publishes the old provider's raw response, either preserve only the documented application contract through a normalizer or update all consumers together. 3. Migrate requests intentionally Build every Parallel Search API request around these facts: search queries is required. Supply at least one non empty keyword query; use two or three diverse keyword queries when the calling flow can provide them. objective is optional but recommended. Put the self contained web research goal there, not the whole user conversation or answer format instructions. Use https://api.parallel.ai/v1/search , x api key , and PARALLEL API KEY for direct REST calls. Use the official parallel web package for both Python and TypeScript unless the detected framework has a current first party Parallel integration that preserves the needed contract. Classify every legacy input before translating it: full web research goal, context, or soft source/freshness preference → objective ; concise retrieval probes → search queries ; must only or must never source restrictions → advanced settings.source policy ; answer format, synthesis instructions, structured output, or streaming → the existing synthesis layer, Chat API, or Task API; latency, result count, cache, and excerpt controls → application owned policy chosen and tested explicitly. For static calls, write an explicit objective and two or three keyword probes. For model tools, use the exact three query schema in [references/integration patterns.md](references/integration patterns.md). A one query direct call fallback is only for an already keyword style legacy value and must be evaluated. Do not silently truncate intent, invent keyword variants, add a hidden planner, or move hard filters into prose. Apply the provider mapping only after that classification. Preserve only settings that implement a real product requirement; unnecessary advanced settings can reduce quality. Validate runtime values against the Parallel V1 contract before sending them. Pay particular attention to query count/length, objective length, the combined 200 domain limit, date normalization, and supported location codes. Do not carry the old provider's numeric ranges forward implicitly. 4. Migrate response behavior Update every consumer to the Parallel response shape. The Search API returns ranked results with url , optional title , optional publish date , and an excerpts array. It does not return the old provider's relevance score, generated answer, image fields, response time, or full page body. Preserve field semantics, not just field names. A date only publish date does not restore an old timestamp's time of day precision, a search id is not a session identifier, and SKU usage counts are not provider credits or dollar cost. Normalize only when the application contract defines the conversion; otherwise make the contract change explicit. Route non search behavior explicitly: Use Search API excerpts directly for LLM context or concise evidence. Use the Extract API for full content from known result URLs, reusing the Search API session id . Use the Chat API or the application's existing model for a grounded answer. Use the Task API for asynchronous multi step research or structured synthesis. Use Entity Search for synchronous people or company discovery. For Firecrawl, classify the product before choosing a route. Search generally maps to Search; public URL markdown or full content may map to Extract; structured multi page research may map to Task only when Task preserves the required source scope, spend policy, quality choice, and lifecycle. Exact known URL structured extraction instead favors Extract plus an application owned model/parser. Research Index, Crawl, Map, Parse uploads, Browser, Interact, Monitor, screenshots, and other rich scrape behavior are not Search field mappings. Follow [references/firecrawl.md](references/firecrawl.md) and preserve separate capabilities until an explicit replacement is approved. Do not fill missing fields with plausible looking constants. Remove obsolete consumers, redesign the application contract, or use the appropriate Parallel API. 5. Replace dependencies and configuration Add only the SDKs required by the chosen routes: parallel web for Search, Extract, or Task; openai for Chat unless the application already has a compatible client; n