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

@agentc7/cli

v0.0.5

Published

IndividualContributor CLI for ac7 — wrap agents with ac7 claude-code, push objectives, manage the team.

Readme

@agentc7/cli

IndividualContributor CLI for ac7, an MCP-based agent team control plane.

This package provides the ac7 binary, which hosts the individual contributor entry points (ac7 claude-code, ac7 serve, etc.) plus the internal ac7 mcp-bridge verb that .mcp.json entries point at.

Install

npm install -g @agentc7/cli

Or run without installing:

npx @agentc7/cli claude-code --doctor

Commands

ac7 setup       [--config-path <path>]                                 first-run wizard (team + first admin + TOTP)
ac7 user        list | create | update | delete [--config-path <path>]   offline user management
ac7 enroll      --user <name> [--config-path <path>]                   (re-)enroll a user for web UI login
ac7 rotate      --user <name> [--config-path <path>]                   rotate a user's bearer token
ac7 claude-code [--no-trace] [--doctor] [-- <claude args>...]          spawn claude wrapped in a ac7 runner
ac7 push        --body <text> (--agent <id> | --broadcast) [--title <t>] [--level <lvl>] [--data key=value]...
ac7 roster                                                             list teammates, userType, and connection state
ac7 objectives  list | view | create | update | complete | cancel | reassign   team objectives
ac7 serve       [--config-path <path>] [--port <n>] [--host <h>] [--db <path>]

ac7 claude-code (the headliner)

Spawns claude as a child of a long-lived runner process. The runner:

  • Fetches /briefing from the broker to learn this slot's name, role, authority, teammates, and open objectives
  • Binds a Unix domain socket and starts an IPC server
  • Starts the trace host: a loopback HTTP CONNECT proxy that terminates TLS with a per-session CA, reassembles HTTP/1.1 exchanges, and streams activity events to the broker in real time
  • Backs up .mcp.json and writes one pointing at ac7 mcp-bridge
  • Spawns claude with HTTPS_PROXY, HTTP_PROXY, and NODE_EXTRA_CA_CERTS pointing at the per-session CA
  • Forwards SSE channel events from the broker into the agent as MCP notifications/claude/channel
  • Restores .mcp.json on any exit path (normal, signal, crash)

Flags:

  • --no-trace — disable the trace subsystem entirely. Runner still handles SSE, objectives, and bridge IPC.
  • --doctor — preflight check: claude binary, $TMPDIR writable, loopback bind, per-session CA generation. Exits 0 on pass, 1 on any FAIL (WARN doesn't fail the exit code).
  • Everything after -- is forwarded verbatim to the claude binary.

Example:

export AC7_TOKEN=ac7_your_slot_token
ac7 claude-code --doctor
ac7 claude-code
ac7 claude-code --no-trace -- --model claude-opus-4-6

ac7 mcp-bridge (hidden internal verb)

The stdio MCP server that claude spawns via the .mcp.json entry the runner wrote. Connects to the runner's UDS path from $AC7_RUNNER_SOCKET and forwards every MCP request/response + every runner-initiated notification. Not shown in --help; individual contributors never invoke it directly.

Environment

| Variable | Purpose | |---|---| | AC7_URL | Broker base URL (default http://127.0.0.1:8717) | | AC7_TOKEN | Slot bearer token — required for claude-code, push, roster, objectives | | CLAUDE_PATH | Override the claude binary path (otherwise which claude) | | AC7_RUNNER_SOCKET | Set by the runner on the bridge's env; individual contributors never set this |

Quick start

# 1. Start a broker (first run triggers the team setup wizard)
ac7 serve

# 2. In another terminal, set your user's bearer token
export AC7_TOKEN=ac7_your_bearer_token

# 3. Preflight check the environment
ac7 claude-code --doctor

# 4. Wrap claude
ac7 claude-code

To push a one-shot chat message without spawning claude:

ac7 roster
ac7 push --agent engineer-1 --body "ci failed on main" --level warning

To manage objectives from the terminal:

ac7 objectives list --assignee engineer-1 --status active
ac7 objectives create --assignee engineer-1 --title "…" --outcome "…"
ac7 objectives complete --id obj-xxx --result "shipped as PR #1245"

License

Apache 2.0. See the ac7 monorepo for the full source.