{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hacker-news",
    "name": "Hacker News",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/hacker-news",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/hacker-news",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hacker-news",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hacker-news",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "api.md",
      "search.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/hacker-news"
    },
    "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/hacker-news",
    "agentPageUrl": "https://openagent3.xyz/skills/hacker-news/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hacker-news/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hacker-news/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": "Quick Reference",
        "body": "TopicFileAPI endpointsapi.mdSearch patternssearch.md"
      },
      {
        "title": "1. Two APIs Available",
        "body": "APIUse CaseBase URLOfficial HN APISingle items, real-timehttps://hacker-news.firebaseio.com/v0Algolia SearchFull-text search, filtershttps://hn.algolia.com/api/v1"
      },
      {
        "title": "2. Official API Endpoints",
        "body": "/topstories.json — top 500 story IDs\n/newstories.json — newest 500 story IDs\n/beststories.json — best stories\n/askstories.json — Ask HN\n/showstories.json — Show HN\n/jobstories.json — job postings\n/item/{id}.json — story/comment details\n/user/{username}.json — user profile"
      },
      {
        "title": "3. Algolia Search Syntax",
        "body": "/search?query=TERM&tags=TAG&numericFilters=FILTER\n\nTags (combinable with AND):\n\nstory, comment, poll, job, ask_hn, show_hn\nauthor_USERNAME — posts by user\nstory_ID — comments on story\n\nNumeric filters:\n\ncreated_at_i>TIMESTAMP — after date\npoints>N — minimum points\nnum_comments>N — minimum comments"
      },
      {
        "title": "4. Common Patterns",
        "body": "RequestEndpointFrontpageOfficial /topstories.json → fetch first 30 itemsSearch postsAlgolia /search?query=X&tags=storyUser's postsAlgolia /search?tags=author_USERNAMEWho is hiring?Algolia /search?query=who is hiring&tags=story,author_whoishiringComments on storyAlgolia /search?tags=comment,story_IDThis week's topAlgolia /search?tags=story&numericFilters=created_at_i>WEEK_TS"
      },
      {
        "title": "5. Response Handling",
        "body": "Official API returns IDs → batch fetch items (parallelize)\nAlgolia returns full objects with hits[] array\nStory object: id, title, url, score, by, time, descendants (comment count)\nComment object: id, text, by, parent, time"
      },
      {
        "title": "6. Rate Limits",
        "body": "Official API: No auth required, generous limits\nAlgolia: 10,000 requests/hour (no key needed)\nAlways paginate large results (page=N, hitsPerPage=N)"
      },
      {
        "title": "7. Gotchas",
        "body": "url is null for Ask HN/Show HN text posts — use text field instead\ndeleted and dead items exist — check before displaying\nTimestamps are Unix seconds, not milliseconds\nAlgolia objectID = HN item id (as string)"
      }
    ],
    "body": "Quick Reference\nTopic\tFile\nAPI endpoints\tapi.md\nSearch patterns\tsearch.md\nCore Rules\n1. Two APIs Available\nAPI\tUse Case\tBase URL\nOfficial HN API\tSingle items, real-time\thttps://hacker-news.firebaseio.com/v0\nAlgolia Search\tFull-text search, filters\thttps://hn.algolia.com/api/v1\n2. Official API Endpoints\n/topstories.json — top 500 story IDs\n/newstories.json — newest 500 story IDs\n/beststories.json — best stories\n/askstories.json — Ask HN\n/showstories.json — Show HN\n/jobstories.json — job postings\n/item/{id}.json — story/comment details\n/user/{username}.json — user profile\n3. Algolia Search Syntax\n/search?query=TERM&tags=TAG&numericFilters=FILTER\n\n\nTags (combinable with AND):\n\nstory, comment, poll, job, ask_hn, show_hn\nauthor_USERNAME — posts by user\nstory_ID — comments on story\n\nNumeric filters:\n\ncreated_at_i>TIMESTAMP — after date\npoints>N — minimum points\nnum_comments>N — minimum comments\n4. Common Patterns\nRequest\tEndpoint\nFrontpage\tOfficial /topstories.json → fetch first 30 items\nSearch posts\tAlgolia /search?query=X&tags=story\nUser's posts\tAlgolia /search?tags=author_USERNAME\nWho is hiring?\tAlgolia /search?query=who is hiring&tags=story,author_whoishiring\nComments on story\tAlgolia /search?tags=comment,story_ID\nThis week's top\tAlgolia /search?tags=story&numericFilters=created_at_i>WEEK_TS\n5. Response Handling\nOfficial API returns IDs → batch fetch items (parallelize)\nAlgolia returns full objects with hits[] array\nStory object: id, title, url, score, by, time, descendants (comment count)\nComment object: id, text, by, parent, time\n6. Rate Limits\nOfficial API: No auth required, generous limits\nAlgolia: 10,000 requests/hour (no key needed)\nAlways paginate large results (page=N, hitsPerPage=N)\n7. Gotchas\nurl is null for Ask HN/Show HN text posts — use text field instead\ndeleted and dead items exist — check before displaying\nTimestamps are Unix seconds, not milliseconds\nAlgolia objectID = HN item id (as string)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/hacker-news",
    "publisherUrl": "https://clawhub.ai/ivangdavila/hacker-news",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hacker-news",
    "downloadUrl": "https://openagent3.xyz/downloads/hacker-news",
    "agentUrl": "https://openagent3.xyz/skills/hacker-news/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hacker-news/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hacker-news/agent.md"
  }
}