DeepSeek Harness 插件

hn-cli

Hacker News tools for DeepSeek Harness: front-page feeds, item comment trees, Algolia search, user profiles.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
heartleo/hn-cli
最近更新
2026年8月18日
分类
文档与渲染
GitHub stars
51
载体类型
plugin
包路径
plugins/hacker-news
目录证据
上游声明已找到 dsh.bundle
证据路径
plugins/hacker-news/package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

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

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

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/heartleo/hn-cli/tree/HEAD/plugins/hacker-news
插件名:hn-cli
作者:heartleo

检查来源文件

安装前先看这个插件目录里的 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.

The plugin is published as dsh-hacker-news and listed in the awesome-dsh-plugin community registry.

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.