{
  "schemaVersion": "1.0",
  "item": {
    "slug": "perplexity-search-skill",
    "name": "Perplexity Search Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/M4vF14/perplexity-search-skill",
    "canonicalUrl": "https://clawhub.ai/M4vF14/perplexity-search-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/perplexity-search-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perplexity-search-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "PUBLISHING.md",
      "README.md",
      "SECURITY_AUDIT.md",
      "SKILL.md",
      "scripts/search.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/perplexity-search-skill"
    },
    "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/perplexity-search-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/perplexity-search-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/perplexity-search-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/perplexity-search-skill/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Perplexity Search",
        "body": "Search the web using Perplexity's Search API for ranked, real-time results."
      },
      {
        "title": "Quick Start",
        "body": "Basic search:\n\npython3 {baseDir}/scripts/search.py \"your search query\"\n\nWith options:\n\n# Get 10 results\npython3 {baseDir}/scripts/search.py \"AI trends 2024\" --count 10\n\n# Filter by recency\npython3 {baseDir}/scripts/search.py \"recent AI news\" --recency week\n\n# Get raw JSON output\npython3 {baseDir}/scripts/search.py \"market research\" --json"
      },
      {
        "title": "API Key Setup",
        "body": "The script requires a PERPLEXITY_API_KEY environment variable.\n\nOption 1: Set in OpenClaw config (recommended)\n\nAdd to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"perplexity-search\": {\n      \"env\": {\n        \"PERPLEXITY_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n\nOption 2: Environment variable\n\nexport PERPLEXITY_API_KEY=\"your-api-key-here\"\n\nGet your API key from: https://perplexity.ai/account/api"
      },
      {
        "title": "Parameters",
        "body": "query - Search query string (required)\n--count N - Number of results (1-10, default: 5)\n--recency FILTER - Recency filter: day, week, month, or year\n--json - Output raw JSON instead of formatted results"
      },
      {
        "title": "Response Format",
        "body": "The API returns:\n\n{\n  \"results\": [\n    {\n      \"title\": \"Article title\",\n      \"url\": \"https://example.com/article\",\n      \"snippet\": \"Brief excerpt from the page...\",\n      \"date\": \"2024-01-15\",\n      \"last_updated\": \"2024-02-01\"\n    }\n  ],\n  \"id\": \"search-request-id\"\n}"
      },
      {
        "title": "Use Cases",
        "body": "Market Research:\n\npython3 {baseDir}/scripts/search.py \"golf coaching Instagram trends\" --count 10\n\nRecent News:\n\npython3 {baseDir}/scripts/search.py \"AI regulation updates\" --recency week\n\nCompetitive Analysis:\n\npython3 {baseDir}/scripts/search.py \"AI golf training apps\" --count 10"
      },
      {
        "title": "Pricing",
        "body": "Perplexity Search API: $5 per 1,000 requests\n\nTrack your usage at: https://perplexity.ai/account/api"
      },
      {
        "title": "Security",
        "body": "API key loaded from environment only - never hardcoded\nOutput sanitization prevents terminal injection\nError messages don't expose sensitive information\n30-second timeout prevents hanging requests\nInput validation on all parameters"
      },
      {
        "title": "Notes",
        "body": "Results are ranked by relevance\nIncludes real-time web data\nSupports filtering by recency\nReturns structured JSON or formatted text\nRate limits apply based on your Perplexity plan"
      }
    ],
    "body": "Perplexity Search\n\nSearch the web using Perplexity's Search API for ranked, real-time results.\n\nQuick Start\n\nBasic search:\n\npython3 {baseDir}/scripts/search.py \"your search query\"\n\n\nWith options:\n\n# Get 10 results\npython3 {baseDir}/scripts/search.py \"AI trends 2024\" --count 10\n\n# Filter by recency\npython3 {baseDir}/scripts/search.py \"recent AI news\" --recency week\n\n# Get raw JSON output\npython3 {baseDir}/scripts/search.py \"market research\" --json\n\nAPI Key Setup\n\nThe script requires a PERPLEXITY_API_KEY environment variable.\n\nOption 1: Set in OpenClaw config (recommended)\n\nAdd to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"perplexity-search\": {\n      \"env\": {\n        \"PERPLEXITY_API_KEY\": \"your-api-key-here\"\n      }\n    }\n  }\n}\n\n\nOption 2: Environment variable\n\nexport PERPLEXITY_API_KEY=\"your-api-key-here\"\n\n\nGet your API key from: https://perplexity.ai/account/api\n\nParameters\nquery - Search query string (required)\n--count N - Number of results (1-10, default: 5)\n--recency FILTER - Recency filter: day, week, month, or year\n--json - Output raw JSON instead of formatted results\nResponse Format\n\nThe API returns:\n\n{\n  \"results\": [\n    {\n      \"title\": \"Article title\",\n      \"url\": \"https://example.com/article\",\n      \"snippet\": \"Brief excerpt from the page...\",\n      \"date\": \"2024-01-15\",\n      \"last_updated\": \"2024-02-01\"\n    }\n  ],\n  \"id\": \"search-request-id\"\n}\n\nUse Cases\n\nMarket Research:\n\npython3 {baseDir}/scripts/search.py \"golf coaching Instagram trends\" --count 10\n\n\nRecent News:\n\npython3 {baseDir}/scripts/search.py \"AI regulation updates\" --recency week\n\n\nCompetitive Analysis:\n\npython3 {baseDir}/scripts/search.py \"AI golf training apps\" --count 10\n\nPricing\n\nPerplexity Search API: $5 per 1,000 requests\n\nTrack your usage at: https://perplexity.ai/account/api\n\nSecurity\nAPI key loaded from environment only - never hardcoded\nOutput sanitization prevents terminal injection\nError messages don't expose sensitive information\n30-second timeout prevents hanging requests\nInput validation on all parameters\nNotes\nResults are ranked by relevance\nIncludes real-time web data\nSupports filtering by recency\nReturns structured JSON or formatted text\nRate limits apply based on your Perplexity plan"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/M4vF14/perplexity-search-skill",
    "publisherUrl": "https://clawhub.ai/M4vF14/perplexity-search-skill",
    "owner": "M4vF14",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/perplexity-search-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/perplexity-search-skill",
    "agentUrl": "https://openagent3.xyz/skills/perplexity-search-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/perplexity-search-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/perplexity-search-skill/agent.md"
  }
}