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

@enderfga/dsh-clawo

v0.1.0

Published

DeepSeek Harness bundle that registers Claw Orchestrator as an ACP subagent provider — delegate a dsh subagent to a multi-engine council across Claude Code, Codex and Cursor.

Readme

@enderfga/dsh-clawo

A DeepSeek Harness bundle that registers Claw Orchestrator as an ACP subagent provider.

dsh already ships subagent-claude-code and subagent-codex, so delegating to a single coding CLI is covered. This delegates to something none of those can be: a multi-engine runtime. A clawo subagent can answer with one engine, or convene a council of several in isolated git worktrees and hand back the synthesis.

Install

dsh plugin --profile <name> add @enderfga/dsh-clawo

That is the whole setup. The bundle contains no code — it is nine lines of YAML that point dsh's own ACP client at npx @enderfga/claw-orchestrator acp.

Verify it composed into your profile:

dsh --profile <name> --dump-config | grep -A6 subagent-clawo

What the subagent can do

The provider is registered as clawo. Its prompts run through Claw Orchestrator's ACP agent, which supports:

| Mode | Behaviour | |---|---| | single (default) | One engine answers. | | council | Several engines debate in isolated git worktrees and reach consensus. | | ultraplan | Long-horizon planning pass. | | ultrareview | Parallel reviewers sweep the working tree. |

Modes are selected with a slash command in the prompt — /council fix the failing test.

Requirements

  • dsh 0.1.0-rc.6 or newer (the dsh.bundle.patch manifest contract and @deepseek-ai/dsh-subagent-acp).
  • Node 22.19+ / 24+, matching dsh's own floor.
  • Whichever coding CLIs you want Claw Orchestrator to drive, authenticated on the host — claude, codex, and so on. The subagent runs on your machine, not in dsh.

Known limitations

Inherited from the ACP agent, and worth knowing before you rely on them:

  • No conversation resume. loadSession is advertised as false. This suits dsh, whose ACP subagent provider starts a fresh session per run and inherits no parent context anyway.
  • No mid-turn permission prompt. Claw Orchestrator resolves permission into engine CLI flags when a session opens, so session/request_permission is not implemented. dsh's provider defaults to auto-rejecting permission requests, so nothing is lost here.
  • Council is slow. A measured two-round run took roughly nine minutes. It is a deliberate action, not a default.

Why npx and not a dependency

Claw Orchestrator depends on re2, a 17 MB native module used for ReDoS-safe pattern matching. Declaring it as a dependency would make every dsh profile compile a native addon at install time. Fetching the published binary through npx keeps this bundle at three files and zero dependencies, and keeps a failed native build out of your profile install.

Status

dsh is in developer preview and states that compatibility-breaking changes are expected. This bundle depends on exactly two things — the dsh.bundle.patch manifest contract and the config keys of @deepseek-ai/dsh-subagent-acp — so a break here is a YAML fix, not a rewrite. Please open an issue if a dsh release moves either.

License

MIT