{
  "schemaVersion": "1.0",
  "item": {
    "slug": "parallel-search",
    "name": "Parallel Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/NormallyGaussian/parallel-search",
    "canonicalUrl": "https://clawhub.ai/NormallyGaussian/parallel-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/parallel-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=parallel-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/parallel-search"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/parallel-search",
    "agentPageUrl": "https://openagent3.xyz/skills/parallel-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/parallel-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/parallel-search/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Parallel Search",
        "body": "High-accuracy web search built for AI agents. Returns ranked results with intelligent excerpts optimized for LLM consumption."
      },
      {
        "title": "When to Use",
        "body": "Trigger this skill when the user asks for:\n\n\"search the web\", \"web search\", \"look up\", \"find online\"\n\"current news about...\", \"latest updates on...\"\n\"research [topic]\", \"what's happening with...\"\nFact-checking with citations needed\nDomain-specific searches (e.g., \"search GitHub for...\", \"find on Reddit...\")"
      },
      {
        "title": "Quick Start",
        "body": "parallel-cli search \"your query\" --json --max-results 5"
      },
      {
        "title": "Basic Usage",
        "body": "parallel-cli search \"<objective>\" [options]"
      },
      {
        "title": "Common Flags",
        "body": "FlagDescription-q, --query \"<keyword>\"Add keyword filter (repeatable, 3-8 recommended)--max-results NNumber of results (1-20, default: 10)--jsonOutput as JSON--after-date YYYY-MM-DDFilter for recent content--include-domains domain.comLimit to specific domains (repeatable, max 10)--exclude-domains domain.comExclude domains (repeatable, max 10)--excerpt-max-chars-total NLimit total excerpt size (default: 8000)"
      },
      {
        "title": "Examples",
        "body": "Basic search:\n\nparallel-cli search \"When was the United Nations founded?\" --json --max-results 5\n\nWith keyword filters:\n\nparallel-cli search \"Latest developments in quantum computing\" \\\n  -q \"quantum\" -q \"computing\" -q \"2026\" \\\n  --json --max-results 10\n\nDomain-scoped search:\n\nparallel-cli search \"React hooks best practices\" \\\n  --include-domains react.dev --include-domains github.com \\\n  --json --max-results 5\n\nRecent news only:\n\nparallel-cli search \"AI regulation news\" \\\n  --after-date 2026-01-01 \\\n  --json --max-results 10"
      },
      {
        "title": "Objective",
        "body": "Write 1-3 sentences describing:\n\nThe real task context (why you need the info)\nFreshness constraints (\"prefer 2026+\", \"latest docs\")\nPreferred sources (\"official docs\", \"news sites\")"
      },
      {
        "title": "Keyword Queries",
        "body": "Add 3-8 keyword queries including:\n\nSpecific terms, version numbers, error strings\nCommon synonyms\nDate terms if relevant (\"2026\", \"Jan 2026\")"
      },
      {
        "title": "Response Format",
        "body": "Returns structured JSON with:\n\nsearch_id — unique identifier\nresults[] — array of results:\n\nurl — source URL\ntitle — page title\nexcerpts[] — relevant text excerpts\npublish_date — when available"
      },
      {
        "title": "Output Handling",
        "body": "When turning results into a user-facing answer:\n\nPrefer official/primary sources when possible\nQuote or paraphrase only the relevant extracted text\nInclude URL + publish_date for transparency\nIf results disagree, present both and note the discrepancy"
      },
      {
        "title": "Running Out of Context?",
        "body": "For long conversations, save results and use sessions_spawn:\n\nparallel-cli search \"<query>\" --json -o /tmp/search-<topic>.json\n\nThen spawn a sub-agent:\n\n{\n  \"tool\": \"sessions_spawn\",\n  \"task\": \"Read /tmp/search-<topic>.json and synthesize a summary with sources.\",\n  \"label\": \"search-summary\"\n}"
      },
      {
        "title": "Error Handling",
        "body": "Exit CodeMeaning0Success1Unexpected error (network, parse)2Invalid arguments3API error (non-2xx)"
      },
      {
        "title": "Prerequisites",
        "body": "Get an API key at parallel.ai\nInstall the CLI:\n\ncurl -fsSL https://parallel.ai/install.sh | bash\nexport PARALLEL_API_KEY=your-key"
      },
      {
        "title": "References",
        "body": "API Docs\nSearch API Reference"
      }
    ],
    "body": "Parallel Search\n\nHigh-accuracy web search built for AI agents. Returns ranked results with intelligent excerpts optimized for LLM consumption.\n\nWhen to Use\n\nTrigger this skill when the user asks for:\n\n\"search the web\", \"web search\", \"look up\", \"find online\"\n\"current news about...\", \"latest updates on...\"\n\"research [topic]\", \"what's happening with...\"\nFact-checking with citations needed\nDomain-specific searches (e.g., \"search GitHub for...\", \"find on Reddit...\")\nQuick Start\nparallel-cli search \"your query\" --json --max-results 5\n\nCLI Reference\nBasic Usage\nparallel-cli search \"<objective>\" [options]\n\nCommon Flags\nFlag\tDescription\n-q, --query \"<keyword>\"\tAdd keyword filter (repeatable, 3-8 recommended)\n--max-results N\tNumber of results (1-20, default: 10)\n--json\tOutput as JSON\n--after-date YYYY-MM-DD\tFilter for recent content\n--include-domains domain.com\tLimit to specific domains (repeatable, max 10)\n--exclude-domains domain.com\tExclude domains (repeatable, max 10)\n--excerpt-max-chars-total N\tLimit total excerpt size (default: 8000)\nExamples\n\nBasic search:\n\nparallel-cli search \"When was the United Nations founded?\" --json --max-results 5\n\n\nWith keyword filters:\n\nparallel-cli search \"Latest developments in quantum computing\" \\\n  -q \"quantum\" -q \"computing\" -q \"2026\" \\\n  --json --max-results 10\n\n\nDomain-scoped search:\n\nparallel-cli search \"React hooks best practices\" \\\n  --include-domains react.dev --include-domains github.com \\\n  --json --max-results 5\n\n\nRecent news only:\n\nparallel-cli search \"AI regulation news\" \\\n  --after-date 2026-01-01 \\\n  --json --max-results 10\n\nBest-Practice Prompting\nObjective\n\nWrite 1-3 sentences describing:\n\nThe real task context (why you need the info)\nFreshness constraints (\"prefer 2026+\", \"latest docs\")\nPreferred sources (\"official docs\", \"news sites\")\nKeyword Queries\n\nAdd 3-8 keyword queries including:\n\nSpecific terms, version numbers, error strings\nCommon synonyms\nDate terms if relevant (\"2026\", \"Jan 2026\")\nResponse Format\n\nReturns structured JSON with:\n\nsearch_id — unique identifier\nresults[] — array of results:\nurl — source URL\ntitle — page title\nexcerpts[] — relevant text excerpts\npublish_date — when available\nOutput Handling\n\nWhen turning results into a user-facing answer:\n\nPrefer official/primary sources when possible\nQuote or paraphrase only the relevant extracted text\nInclude URL + publish_date for transparency\nIf results disagree, present both and note the discrepancy\nRunning Out of Context?\n\nFor long conversations, save results and use sessions_spawn:\n\nparallel-cli search \"<query>\" --json -o /tmp/search-<topic>.json\n\n\nThen spawn a sub-agent:\n\n{\n  \"tool\": \"sessions_spawn\",\n  \"task\": \"Read /tmp/search-<topic>.json and synthesize a summary with sources.\",\n  \"label\": \"search-summary\"\n}\n\nError Handling\nExit Code\tMeaning\n0\tSuccess\n1\tUnexpected error (network, parse)\n2\tInvalid arguments\n3\tAPI error (non-2xx)\nPrerequisites\nGet an API key at parallel.ai\nInstall the CLI:\ncurl -fsSL https://parallel.ai/install.sh | bash\nexport PARALLEL_API_KEY=your-key\n\nReferences\nAPI Docs\nSearch API Reference"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/NormallyGaussian/parallel-search",
    "publisherUrl": "https://clawhub.ai/NormallyGaussian/parallel-search",
    "owner": "NormallyGaussian",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/parallel-search",
    "downloadUrl": "https://openagent3.xyz/downloads/parallel-search",
    "agentUrl": "https://openagent3.xyz/skills/parallel-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/parallel-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/parallel-search/agent.md"
  }
}