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

@normahq/acp-dump

v1.0.0

Published

Meta package for acp-dump

Readme

acp-dump

test lint security release npm License Version

Inspect ACP agents before wiring them into your workflow.

acp-dump starts any stdio Agent Client Protocol (ACP) server command and prints the initialize/session data you need to trust, debug, or compare it.

Use it when an ACP provider says it supports models, modes, auth, sessions, or capabilities, and you want to see exactly what it reports before building against it.

What You Get

| Capability | Behavior | | --- | --- | | ACP preflight | Starts a stdio ACP server command and initializes a session. | | Capability inventory | Prints protocol version, agent capabilities, auth methods, and session details. | | Model and mode discovery | Shows available session models and modes when the provider exposes them. | | JSON output | Emits machine-readable output for scripts, CI checks, and debugging artifacts. | | Quiet by default | Keeps inspector lifecycle logs out of the result unless --debug is enabled. | | Provider agnostic | Works with OpenCode, Codex, Claude Code, Pi, and any executable that speaks ACP over stdio. |

Try It

Install globally:

npm install -g @normahq/acp-dump@latest

Run once with npx:

npx @normahq/acp-dump@latest -- <acp-server-cmd> [args...]

Inspect an ACP server:

acp-dump -- opencode acp
acp-dump --json -- opencode acp
acp-dump -- npx -y @normahq/codex-acp-bridge@latest
acp-dump -- npx -y @zed-industries/claude-code-acp@latest
acp-dump --debug -- npx -y pi-acp

Provider Commands

| Provider | Command | | --- | --- | | OpenCode | acp-dump -- opencode acp | | Codex | acp-dump -- npx -y @normahq/codex-acp-bridge@latest | | Claude Code | acp-dump -- npx -y @zed-industries/claude-code-acp@latest | | Pi | acp-dump -- npx -y pi-acp | | Generic ACP | acp-dump -- <acp-server-cmd> [args...] |

The -- separator is required. Arguments before -- are treated as acp-dump flags; arguments after it are passed to the ACP server command.

Output

Human-readable output includes:

  • agent name and version
  • protocol version
  • ACP capabilities
  • auth methods
  • session id
  • available session modes and models when provided by the server

Use --json when you want stable output for scripts, test fixtures, issue reports, or CI logs.

Use Cases

  • Verify a provider's ACP surface before connecting it to an agent runtime.
  • Compare model, mode, auth, and capability metadata across ACP providers.
  • Capture a compact diagnostic artifact for bug reports.
  • Check whether a local command is actually speaking ACP over stdio.

Flags

| Flag | Purpose | | --- | --- | | --json | Print machine-readable JSON output. | | --debug | Enable debug logs for the inspector. | | -h, --help | Show command help. |

Repository

Contact

License

MIT. See the repository LICENSE.