{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hackernews",
    "name": "Hacker News",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gchapim/hackernews",
    "canonicalUrl": "https://clawhub.ai/gchapim/hackernews",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hackernews",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hackernews",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "references/api.md",
      "scripts/hn.sh",
      "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/hackernews"
    },
    "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/hackernews",
    "agentPageUrl": "https://openagent3.xyz/skills/hackernews/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hackernews/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hackernews/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": "Hacker News",
        "body": "CLI tool for the Hacker News API. No authentication required."
      },
      {
        "title": "CLI Usage",
        "body": "Run scripts/hn.sh <command>. All commands support --json for raw JSON output."
      },
      {
        "title": "Browse Stories",
        "body": "# Top/trending stories (default 10)\nscripts/hn.sh top\nscripts/hn.sh top --limit 20\n\n# Other lists\nscripts/hn.sh new --limit 5     # newest\nscripts/hn.sh best --limit 10   # highest rated\nscripts/hn.sh ask                # Ask HN\nscripts/hn.sh show               # Show HN\nscripts/hn.sh jobs               # job postings"
      },
      {
        "title": "View Item Details & Comments",
        "body": "# Full item details (story, comment, job, poll)\nscripts/hn.sh item 12345678\n\n# Top comments on a story\nscripts/hn.sh comments 12345678\nscripts/hn.sh comments 12345678 --limit 10 --depth 2"
      },
      {
        "title": "User Profiles",
        "body": "scripts/hn.sh user dang"
      },
      {
        "title": "Search",
        "body": "# Basic search\nscripts/hn.sh search \"rust programming\"\n\n# With filters\nscripts/hn.sh search \"LLM\" --type story --sort date --period week --limit 5\nscripts/hn.sh search \"hiring remote\" --type comment --period month"
      },
      {
        "title": "Who is Hiring",
        "body": "# Latest \"Who is hiring?\" job postings\nscripts/hn.sh whoishiring\nscripts/hn.sh whoishiring --limit 20"
      },
      {
        "title": "Common Workflows",
        "body": "User asksCommand\"What's trending on HN?\"scripts/hn.sh top\"Latest Ask HN posts\"scripts/hn.sh ask\"Search HN for X\"scripts/hn.sh search \"X\"\"Show me comments on story Y\"scripts/hn.sh comments Y\"Who is hiring?\"scripts/hn.sh whoishiring\"Tell me about HN user Z\"scripts/hn.sh user Z"
      },
      {
        "title": "Notes",
        "body": "Story lists use parallel fetching for speed\nHTML in comments/bios is auto-converted to plain text\nTimestamps shown as relative time (\"2h ago\", \"3d ago\")\nFor API details, see references/api.md"
      }
    ],
    "body": "Hacker News\n\nCLI tool for the Hacker News API. No authentication required.\n\nCLI Usage\n\nRun scripts/hn.sh <command>. All commands support --json for raw JSON output.\n\nBrowse Stories\n# Top/trending stories (default 10)\nscripts/hn.sh top\nscripts/hn.sh top --limit 20\n\n# Other lists\nscripts/hn.sh new --limit 5     # newest\nscripts/hn.sh best --limit 10   # highest rated\nscripts/hn.sh ask                # Ask HN\nscripts/hn.sh show               # Show HN\nscripts/hn.sh jobs               # job postings\n\nView Item Details & Comments\n# Full item details (story, comment, job, poll)\nscripts/hn.sh item 12345678\n\n# Top comments on a story\nscripts/hn.sh comments 12345678\nscripts/hn.sh comments 12345678 --limit 10 --depth 2\n\nUser Profiles\nscripts/hn.sh user dang\n\nSearch\n# Basic search\nscripts/hn.sh search \"rust programming\"\n\n# With filters\nscripts/hn.sh search \"LLM\" --type story --sort date --period week --limit 5\nscripts/hn.sh search \"hiring remote\" --type comment --period month\n\nWho is Hiring\n# Latest \"Who is hiring?\" job postings\nscripts/hn.sh whoishiring\nscripts/hn.sh whoishiring --limit 20\n\nCommon Workflows\nUser asks\tCommand\n\"What's trending on HN?\"\tscripts/hn.sh top\n\"Latest Ask HN posts\"\tscripts/hn.sh ask\n\"Search HN for X\"\tscripts/hn.sh search \"X\"\n\"Show me comments on story Y\"\tscripts/hn.sh comments Y\n\"Who is hiring?\"\tscripts/hn.sh whoishiring\n\"Tell me about HN user Z\"\tscripts/hn.sh user Z\nNotes\nStory lists use parallel fetching for speed\nHTML in comments/bios is auto-converted to plain text\nTimestamps shown as relative time (\"2h ago\", \"3d ago\")\nFor API details, see references/api.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gchapim/hackernews",
    "publisherUrl": "https://clawhub.ai/gchapim/hackernews",
    "owner": "gchapim",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hackernews",
    "downloadUrl": "https://openagent3.xyz/downloads/hackernews",
    "agentUrl": "https://openagent3.xyz/skills/hackernews/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hackernews/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hackernews/agent.md"
  }
}