npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cofy-x/dsh-console

v0.1.0-alpha.17

Published

DSH-native terminal workbench (TUI) for DeepSeek Harness with durable sessions, structured tools, plans, subagents, and rotating Pokémon startup art.

Readme

DSH Console

dsh-console is a TypeScript and React/Ink terminal frontend for DeepSeek Harness.

DSH Console is currently a public alpha. Commands and UI details may change before the first stable release.

Install

DSH Console requires Node.js 24 or newer, supports DeepSeek Harness 0.1.6-alpha.2 through the maximum tested version 0.1.6-alpha.2, and needs a working DSH provider configuration. Console follows audited DSH releases; the compatible prerelease can differ from npm latest, so install the exact audited pair:

npm install --global @deepseek-ai/[email protected] @cofy-x/[email protected]
dsh-console --prompt "hello"

The launcher resolves the actual dsh executable on PATH and validates its version before changing the Console profile. Check it with dsh --version and command -v dsh on macOS/Linux, (Get-Command dsh).Source in PowerShell, or where dsh in Command Prompt. Older DSH releases are blocked with the exact repair command; newer unaudited releases receive a non-blocking warning.

Public Alpha releases retain prerelease versions while the current published Console remains available through npm's default install path. The published launcher reconciles its package into the DSH profile; pnpm start from a source checkout resolves that checkout and is a separate development path.

Use

The launcher initializes its owned dsh-console DSH profile, aligns the profile package with the launcher version, and starts an interactive terminal session. It can continue persisted work before the TUI starts:

dsh-console --continue
dsh-console --resume dsh-console-01234567-89ab-cdef-0123-456789abcdef --prompt "continue this work"

Startup continuation is scoped to persisted Console conversations and their persistent forks in the current directory. Useful interactive commands include:

/model       Select the active DSH model
/new         Start a fresh conversation
/sessions    Search, preview, rename, resume, or fork workspace Sessions
/jobs        Inspect and stop background jobs for the interactive Session
/goals       Inspect and manage the Session goal and its round limit
/tools       Inspect tools exposed by the active DSH agent
/skills      Inspect user-invocable Skills for the active DSH agent
/preset      Show or change the blank Session's DSH Agent preset
/permission  Select the active DSH permission preset
/theme       Select the terminal theme
/settings    Edit Console settings

DSH owns provider credentials, model routing, session logs, and attachments. DSH Console does not maintain a separate authentication or session database.

In /sessions, press / to search and Enter to preview a Session. Forking offers completed Turn boundaries, preserves the source composition and model route, and creates a durable conversation without changing files. /jobs never consumes the Agent's output cursor; output remains in DSH's job_output flow. /goals distinguishes durable phase from process-local activation: restored goals remain disarmed until you explicitly resume them. Native /goal ... commands and their attachment support remain available.

Full-text search opens a DSH-managed, rebuildable SQLite index under DSH_HOME on the first search, not at startup. Session logs remain the durable source of truth. A user profile that explicitly disables the DSH search provider keeps that override.

See the GitHub repository for source development, architecture, alpha boundaries, and license attribution details.