HN Reader

v1.0.0

Monitors and fetches HackerNews stories via official API, supporting top, new, best, Ask, Show, Jobs categories and keyword searches.

1· 357·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the implementation: the code queries https://hacker-news.firebaseio.com/v0/ and implements top/new/best/ask/show/job/item/user/search commands; required artifacts (axios) are appropriate.
Instruction Scope
SKILL.md describes CLI usage that corresponds to the code. The runtime instructions do not read files, access secrets, or post data to third-party endpoints beyond the official HN API.
Install Mechanism
No install spec; repository is instruction+node script with a single dependency (axios) declared in package.json/package-lock.json — a proportionate dependency for HTTP requests.
Credentials
No environment variables, credentials, or config paths are requested or used. The skill performs only public API requests and does not require secrets.
Persistence & Privilege
Skill is not always-enabled and does not attempt to modify other skills or system-wide settings; autonomous invocation is allowed by platform default but not elevated here.
Assessment
This skill appears coherent and limited to reading publicly available Hacker News data. If you plan to run it: (1) review or pin the axios dependency (package-lock.json) and install in a controlled environment, (2) run the script locally to confirm behavior, and (3) if you have a policy against allowing skills to make outbound network calls, be aware this performs HTTP requests to the official HN API. Otherwise it does not request credentials or access unrelated resources.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fye322scv2bb0qawktecdrh829q2b
357downloads
1stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

HackerNews Skill

Monitora e busca stories do HackerNews via API oficial.

Gatilhos

Ative a skill usando palavras-chave:

  • "hackernews", "hn" — listar top stories
  • "top stories", "front page" — top stories
  • "new", "latest", "novas" — stories recentes
  • "ask hn", "askstories" — Ask HN
  • "show hn", "showstories" — Show HN
  • "jobs", "vagas" — Jobs
  • "best", "melhores" — Melhores stories
  • "buscar no hn", "pesquisar hn" — buscar por termo

Como Usar

# Listar top stories (padrão: 10)
node index.js top
node index.js top 20

# Stories recentes
node index.js new
node index.js new 15

# Melhores stories
node index.js best

# Ask HN
node index.js ask
node index.js show

# Jobs
node index.js jobs

# Ver detalhes de uma story por ID
node index.js item 12345678

# Ver perfil de usuário
node index.js user pg

# Buscar stories por termo
node index.js search rust
node index.js search "machine learning"

##API

  • URL Base: https://hacker-news.firebaseio.com/v0/
  • Rate Limit: Nenhum (API pública)
  • Autenticação: Não requerida

Comments

Loading comments...