DeepSeek Harness plugin

hacker-news

Hacker News tools for feeds, discussion threads, search, and user profiles.

Jump to install

Source facts

Repository
heartleo/hn-cli
Latest update
Aug 18, 2026
Category
Tools & Capabilities
GitHub stars
50

Install

Start with a prompt that asks an agent to read the 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 read the page and repository first.

Do not install anything yet. Read this DeepSeek Harness plugin and explain what it does, which files, networks, or credentials it can access, and how to install and remove it.

Plugin page: https://deepseekplugins.org/plugins/heartleo/hn-cli~23hacker-news
GitHub: https://github.com/heartleo/hn-cli/tree/main/plugins/hacker-news
Plugin: hn-cli#hacker-news
Author: heartleo
Install command: dsh plugin --profile web add dsh-hacker-news

Do not run the install command until I confirm.

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.

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.