DeepSeek Harness plugin

hn-cli

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

Jump to install

Source facts

Repository
heartleo/hn-cli
Latest update
Aug 18, 2026
Category
Docs & Rendering
GitHub stars
51
Format
plugin
Package path
plugins/hacker-news
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
plugins/hacker-news/package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/heartleo/hn-cli/tree/HEAD/plugins/hacker-news
Plugin: hn-cli
Author: heartleo

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

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.