{
  "schemaVersion": "1.0",
  "item": {
    "slug": "noticias-cangrejo",
    "name": "Noticias Cangrejo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/davidk2yoyo/noticias-cangrejo",
    "canonicalUrl": "https://clawhub.ai/davidk2yoyo/noticias-cangrejo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/noticias-cangrejo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=noticias-cangrejo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "requirements.txt",
      "scripts/__init__.py",
      "scripts/fetch_news.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/noticias-cangrejo"
    },
    "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/noticias-cangrejo",
    "agentPageUrl": "https://openagent3.xyz/skills/noticias-cangrejo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/noticias-cangrejo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/noticias-cangrejo/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": "NoticiasCangrejo",
        "body": "Generate a Markdown news digest for any topic using the GNews API."
      },
      {
        "title": "When To Use",
        "body": "Use this skill when the user asks for recent news on any topic, such as politics, science, startups, health, finance, sports, or local events, and wants a concise, linkable summary."
      },
      {
        "title": "Environment Requirement",
        "body": "Set this environment variable before execution:\n\nGNEWS_API_KEY"
      },
      {
        "title": "Workflow",
        "body": "Receive a topic from the user.\nValidate that GNEWS_API_KEY exists.\nQuery GNews Search API for up to 20 articles using topic + language.\nCompute relevance based on topic-word overlap against article title and description.\nKeep the top 15 ranked articles.\nPrint Markdown output with:\n\nDate (YYYY/MM/DD)\nGreeting line in Spanish\nTopic line\nNumbered list of article title + URL\n\n\nOptionally save output to a file with --output."
      },
      {
        "title": "Execution",
        "body": "Canonical OpenClaw execution is defined in _meta.json under run:\n\npython3 scripts/fetch_news.py \"<topic>\"\n\nOptional parameters:\n\n--lang (default: en)\n--max-articles (default: 20)\n--output to write Markdown to a file"
      },
      {
        "title": "Example Usage",
        "body": "export GNEWS_API_KEY=\"your_api_key_here\"\npython3 scripts/fetch_news.py \"global markets\" --lang en --max-articles 20 --output ./markets.md"
      }
    ],
    "body": "NoticiasCangrejo\n\nGenerate a Markdown news digest for any topic using the GNews API.\n\nWhen To Use\n\nUse this skill when the user asks for recent news on any topic, such as politics, science, startups, health, finance, sports, or local events, and wants a concise, linkable summary.\n\nEnvironment Requirement\n\nSet this environment variable before execution:\n\nGNEWS_API_KEY\nWorkflow\nReceive a topic from the user.\nValidate that GNEWS_API_KEY exists.\nQuery GNews Search API for up to 20 articles using topic + language.\nCompute relevance based on topic-word overlap against article title and description.\nKeep the top 15 ranked articles.\nPrint Markdown output with:\nDate (YYYY/MM/DD)\nGreeting line in Spanish\nTopic line\nNumbered list of article title + URL\nOptionally save output to a file with --output.\nExecution\n\nCanonical OpenClaw execution is defined in _meta.json under run:\n\npython3 scripts/fetch_news.py \"<topic>\"\n\n\nOptional parameters:\n\n--lang (default: en)\n--max-articles (default: 20)\n--output to write Markdown to a file\nExample Usage\nexport GNEWS_API_KEY=\"your_api_key_here\"\npython3 scripts/fetch_news.py \"global markets\" --lang en --max-articles 20 --output ./markets.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/davidk2yoyo/noticias-cangrejo",
    "publisherUrl": "https://clawhub.ai/davidk2yoyo/noticias-cangrejo",
    "owner": "davidk2yoyo",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/noticias-cangrejo",
    "downloadUrl": "https://openagent3.xyz/downloads/noticias-cangrejo",
    "agentUrl": "https://openagent3.xyz/skills/noticias-cangrejo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/noticias-cangrejo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/noticias-cangrejo/agent.md"
  }
}