{
  "schemaVersion": "1.0",
  "item": {
    "slug": "google-trends",
    "name": "Google Trends",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/satnamra/google-trends",
    "canonicalUrl": "https://clawhub.ai/satnamra/google-trends",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/google-trends",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=google-trends",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "trends-daily.sh"
    ],
    "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/google-trends"
    },
    "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/google-trends",
    "agentPageUrl": "https://openagent3.xyz/skills/google-trends/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-trends/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-trends/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": "Google Trends Monitoring",
        "body": "Monitor and analyze Google Trends data for market research, content planning, and trend tracking."
      },
      {
        "title": "Capabilities",
        "body": "Daily Trending Searches - What's trending today in any country\nKeyword Interest Over Time - Historical trend data for keywords\nKeyword Comparison - Compare multiple keywords\nRelated Topics & Queries - Discover related searches\nRegional Interest - See where keywords are most popular"
      },
      {
        "title": "Get Trending Searches (Today)",
        "body": "Use web_fetch to get Google Trends RSS:\n\n# US Daily Trends\ncurl -s \"https://trends.google.com/trending/rss?geo=US\" | head -100\n\n# Lithuania\ncurl -s \"https://trends.google.com/trending/rss?geo=LT\" | head -100\n\n# Worldwide\ncurl -s \"https://trends.google.com/trending/rss?geo=\" | head -100"
      },
      {
        "title": "Check Keyword Interest",
        "body": "For detailed keyword analysis, use the Google Trends website:\n\n# Open in browser\nopen \"https://trends.google.com/trends/explore?q=bitcoin&geo=US\"\n\n# Or fetch via web_fetch for basic data\nweb_fetch \"https://trends.google.com/trends/explore?q=bitcoin\""
      },
      {
        "title": "Compare Keywords",
        "body": "# Compare multiple terms (comma-separated)\nopen \"https://trends.google.com/trends/explore?q=bitcoin,ethereum,solana&geo=US\""
      },
      {
        "title": "trends-daily.sh",
        "body": "Get today's trending searches:\n\n#!/bin/bash\n# Usage: ./trends-daily.sh [country_code]\n# Example: ./trends-daily.sh LT\n\nGEO=\"${1:-US}\"\ncurl -s \"https://trends.google.com/trending/rss?geo=$GEO\" | \\\n  grep -o '<title>[^<]*</title>' | \\\n  sed 's/<[^>]*>//g' | \\\n  tail -n +2 | \\\n  head -20"
      },
      {
        "title": "trends-compare.sh",
        "body": "Generate comparison URL:\n\n#!/bin/bash\n# Usage: ./trends-compare.sh keyword1 keyword2 keyword3\n# Example: ./trends-compare.sh bitcoin ethereum solana\n\nKEYWORDS=$(echo \"$@\" | tr ' ' ',')\necho \"https://trends.google.com/trends/explore?q=$KEYWORDS\""
      },
      {
        "title": "Morning Market Research",
        "body": "1. Get US trending searches\n2. Get LT trending searches  \n3. Check if any trends relate to our business\n4. Report interesting findings"
      },
      {
        "title": "Content Planning",
        "body": "1. Compare potential blog topics\n2. Find which has more search interest\n3. Check seasonal patterns\n4. Decide on content focus"
      },
      {
        "title": "Competitor Monitoring",
        "body": "1. Compare brand names\n2. Track interest over time\n3. Identify when competitors spike\n4. Investigate causes"
      },
      {
        "title": "Cron Job Integration",
        "body": "Set up automated trend monitoring:\n\n// Example cron job for daily trends report\n{\n  \"name\": \"Daily Trends Report\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 9 * * *\" },\n  \"payload\": {\n    \"kind\": \"agentTurn\",\n    \"message\": \"Get today's Google Trends for US and LT. Summarize top 10 trends for each. Highlight any tech/business related trends.\"\n  }\n}"
      },
      {
        "title": "Countries",
        "body": "Common country codes:\n\nUS - United States\nLT - Lithuania\nDE - Germany\nGB - United Kingdom\nFR - France\nJP - Japan\n(empty) - Worldwide"
      },
      {
        "title": "Limitations",
        "body": "Google Trends doesn't provide official API\nRate limiting may apply for heavy usage\nData is relative (not absolute numbers)\nHistorical data limited to ~5 years for detailed view"
      },
      {
        "title": "Tips",
        "body": "Use specific terms - \"iPhone 15 Pro\" vs just \"iPhone\"\nCheck seasonality - Some trends are cyclical\nCompare with baseline - Use a stable term for reference\nLook at related queries - Discover new opportunities\nMonitor competitors - Track brand interest over time"
      }
    ],
    "body": "Google Trends Monitoring\n\nMonitor and analyze Google Trends data for market research, content planning, and trend tracking.\n\nCapabilities\nDaily Trending Searches - What's trending today in any country\nKeyword Interest Over Time - Historical trend data for keywords\nKeyword Comparison - Compare multiple keywords\nRelated Topics & Queries - Discover related searches\nRegional Interest - See where keywords are most popular\nUsage\nGet Trending Searches (Today)\n\nUse web_fetch to get Google Trends RSS:\n\n# US Daily Trends\ncurl -s \"https://trends.google.com/trending/rss?geo=US\" | head -100\n\n# Lithuania\ncurl -s \"https://trends.google.com/trending/rss?geo=LT\" | head -100\n\n# Worldwide\ncurl -s \"https://trends.google.com/trending/rss?geo=\" | head -100\n\nCheck Keyword Interest\n\nFor detailed keyword analysis, use the Google Trends website:\n\n# Open in browser\nopen \"https://trends.google.com/trends/explore?q=bitcoin&geo=US\"\n\n# Or fetch via web_fetch for basic data\nweb_fetch \"https://trends.google.com/trends/explore?q=bitcoin\"\n\nCompare Keywords\n# Compare multiple terms (comma-separated)\nopen \"https://trends.google.com/trends/explore?q=bitcoin,ethereum,solana&geo=US\"\n\nScripts\ntrends-daily.sh\n\nGet today's trending searches:\n\n#!/bin/bash\n# Usage: ./trends-daily.sh [country_code]\n# Example: ./trends-daily.sh LT\n\nGEO=\"${1:-US}\"\ncurl -s \"https://trends.google.com/trending/rss?geo=$GEO\" | \\\n  grep -o '<title>[^<]*</title>' | \\\n  sed 's/<[^>]*>//g' | \\\n  tail -n +2 | \\\n  head -20\n\ntrends-compare.sh\n\nGenerate comparison URL:\n\n#!/bin/bash\n# Usage: ./trends-compare.sh keyword1 keyword2 keyword3\n# Example: ./trends-compare.sh bitcoin ethereum solana\n\nKEYWORDS=$(echo \"$@\" | tr ' ' ',')\necho \"https://trends.google.com/trends/explore?q=$KEYWORDS\"\n\nExample Workflows\nMorning Market Research\n1. Get US trending searches\n2. Get LT trending searches  \n3. Check if any trends relate to our business\n4. Report interesting findings\n\nContent Planning\n1. Compare potential blog topics\n2. Find which has more search interest\n3. Check seasonal patterns\n4. Decide on content focus\n\nCompetitor Monitoring\n1. Compare brand names\n2. Track interest over time\n3. Identify when competitors spike\n4. Investigate causes\n\nCron Job Integration\n\nSet up automated trend monitoring:\n\n// Example cron job for daily trends report\n{\n  \"name\": \"Daily Trends Report\",\n  \"schedule\": { \"kind\": \"cron\", \"expr\": \"0 9 * * *\" },\n  \"payload\": {\n    \"kind\": \"agentTurn\",\n    \"message\": \"Get today's Google Trends for US and LT. Summarize top 10 trends for each. Highlight any tech/business related trends.\"\n  }\n}\n\nCountries\n\nCommon country codes:\n\nUS - United States\nLT - Lithuania\nDE - Germany\nGB - United Kingdom\nFR - France\nJP - Japan\n(empty) - Worldwide\nLimitations\nGoogle Trends doesn't provide official API\nRate limiting may apply for heavy usage\nData is relative (not absolute numbers)\nHistorical data limited to ~5 years for detailed view\nTips\nUse specific terms - \"iPhone 15 Pro\" vs just \"iPhone\"\nCheck seasonality - Some trends are cyclical\nCompare with baseline - Use a stable term for reference\nLook at related queries - Discover new opportunities\nMonitor competitors - Track brand interest over time"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/satnamra/google-trends",
    "publisherUrl": "https://clawhub.ai/satnamra/google-trends",
    "owner": "satnamra",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/google-trends",
    "downloadUrl": "https://openagent3.xyz/downloads/google-trends",
    "agentUrl": "https://openagent3.xyz/skills/google-trends/agent",
    "manifestUrl": "https://openagent3.xyz/skills/google-trends/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/google-trends/agent.md"
  }
}