DeepSeek Harness 插件

hacker-news

用于获取 Hacker News 榜单、讨论串、搜索和用户资料的工具。

跳到安装方式

来源信息

GitHub 仓库
heartleo/hn-cli
最近更新
2026年8月18日
分类
工具与能力
GitHub stars
50

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/heartleo/hn-cli~23hacker-news
GitHub:https://github.com/heartleo/hn-cli/tree/main/plugins/hacker-news
插件名:hn-cli#hacker-news
作者:heartleo
安装命令:dsh plugin --profile web add dsh-hacker-news

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器2 个文件
README.md来源说明 · 只读预览

hacker-news — DeepSeek Harness plugin

Hacker News tools for DeepSeek Harness: browse the ranked feeds, read a thread with its reply tree, search the Algolia index, and look up a user.

Plain ESM JavaScript, no build step and no runtime dependency on the hn binary — it talks to the public HN APIs directly (https://hacker-news.firebaseio.com/v0 and https://hn.algolia.com/api/v1).

Tools

ToolArgumentsReturns
hn_storiesfeed (top/new/best/ask/show/job), limit, offsetRanked stories with id, score, comment count, URLs
hn_itemid (required), comment_limit, max_depthThe item plus its reply tree in reading order, with depth and truncated
hn_searchquery (required), sort (relevance/date), tags, limitAlgolia hits normalised to the story shape
hn_userid (required)found, karma, account age, bio, submission count

Comment HTML is converted to plain text (links keep their label plus target) and clipped at maxTextLength. Reply loading is breadth-first, so a small comment_limit returns the top of the thread rather than one deep branch; truncated reports whether anything was left out.

Use

Ask naturally; the plugin guides the agent to the matching tool:

What's popular on Hacker News right now?
Search Hacker News for SQLite WASM.
Read HN item 49322107 and summarize the discussion.
Look up the HN user dang.

Install

Install the published package:

dsh plugin --profile <name> add -w dsh-hacker-news

Restart DSH Web after installation. If your npm mirror has not indexed the latest release, use the public npm registry for the install:

$env:npm_config_registry = 'https://registry.npmjs.org/'
dsh plugin --profile <name> add -w dsh-hacker-news

The package ships runnable JavaScript, so no prepare build and no pnpm allowBuilds entry is needed. To install directly from the repository or from a local checkout:

dsh plugin --profile <name> add -w github:heartleo/hn-cli#path:/plugins/hacker-news
dsh plugin --profile <name> add -w /absolute/path/to/hn-cli/plugins/hacker-news
dsh --profile <name> --dump-config   # shows the "# == dsh-hacker-news" layer

To load it from source without installing, point a patch overlay at the entry file:

- insert:
    - id: hacker-news
      name: '/absolute/path/to/hn-cli/plugins/hacker-news/index.js'
pnpm dsh web --patch ./scratch/hacker-news.cordis.yml

Configuration

Every tunable is a config field, overridable per profile in cordis.patch.yml:

- id: hacker-news
  name: dsh-hacker-news
  config:
    defaultStoryLimit: 30
    defaultCommentLimit: 100
    requestTimeoutMs: 20000
FieldDefaultMeaning
firebaseBaseUrlhttps://hacker-news.firebaseio.com/v0Official HN API root
algoliaBaseUrlhttps://hn.algolia.com/api/v1Search API root
requestTimeoutMs15000Per-request timeout
concurrency20Maximum in-flight item fetches
defaultStoryLimit / maxStoryLimit20 / 100Story and search result counts
defaultCommentLimit / maxCommentLimit50 / 400Replies loaded per hn_item call
defaultCommentDepth / maxCommentDepth5 / 10Reply nesting followed
maxTextLength2000Clip length for story, comment, and bio text
userAgentdsh-hacker-news/0.1.0 …Sent on every request

Checking it locally

npm test first runs the offline routing and presentation tests, then load-check.mjs registers the tools against a stub context, runs every tool against the live API, validates each result with the registry's own output-schema validator, and exercises the rejection paths:

cd plugins/hacker-news
npm install --no-package-lock
npm test

The final integration phase needs network access.