Install
openclaw skills install @replynodes-ai/hackernews-apiAnonymous, read-only public Hacker News GETs through the ReplyNodes gateway; no credentials, payment, wallet, login, or write capability is required or suppo...
openclaw skills install @replynodes-ai/hackernews-apiRead-only Hacker News API for monitoring stories, searching discussions, and looking up public items and users through ReplyNodes prepaid credits with one long-lived Bearer fetcher key.
Gateway: https://api.replynodes.com
Use one long-lived ReplyNodes fetcher key. Send it on every request as:
Authorization: Bearer YOUR_FETCHER_KEY
Store the real key in the agent's secret configuration. Never put it in prompts, source files, logs, URLs, or returned data. The gateway performs shared control-plane scope and entitlement checks.
prepaid_credit only.Every operation is an HTTP GET and reads public data only:
stories_top — GET https://api.replynodes.com/v1/hackernews/stories_top. List top public Hacker News stories This operation costs 2 prepaid credits.stories_new — GET https://api.replynodes.com/v1/hackernews/stories_new. List newest public Hacker News stories This operation costs 2 prepaid credits.stories_best — GET https://api.replynodes.com/v1/hackernews/stories_best. List best public Hacker News stories This operation costs 2 prepaid credits.stories_ask — GET https://api.replynodes.com/v1/hackernews/stories_ask. List public Ask HN stories This operation costs 2 prepaid credits.stories_show — GET https://api.replynodes.com/v1/hackernews/stories_show. List public Show HN stories This operation costs 2 prepaid credits.stories_job — GET https://api.replynodes.com/v1/hackernews/stories_job. List public Hacker News job stories This operation costs 2 prepaid credits.item — GET https://api.replynodes.com/v1/hackernews/item/{id}. Fetch one public Hacker News item This operation costs 2 prepaid credits.user — GET https://api.replynodes.com/v1/hackernews/user/{handle}. Fetch one public Hacker News user This operation costs 2 prepaid credits.search — GET https://api.replynodes.com/v1/hackernews/search. Search public Hacker News discussions This operation costs 2 prepaid credits.https://api.replynodes.com as the gateway origin.curl -sS https://api.replynodes.com/v1/hackernews/capabilities
curl -sS -H "Authorization: Bearer YOUR_FETCHER_KEY" \
"https://api.replynodes.com/v1/hackernews/stories_top"
This skill has no write, publish, account, follow, or credential-management operation. It must not be used to claim private data access, unauthenticated access, guaranteed availability, or unsupported pricing.
The operation list is generated from services/hackernews-fetcher/internal/capabilities/capabilities.go. manifest.json, references/operations.json, and CHECKSUMS.sha256 are generated artifacts; change the catalog or source capability contract and regenerate them together.