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

@tacuchi/agent-workflow-cli

v5.11.5

Published

Agnostic runtime CLI for session-lifecycle workflows. Auto-detects namespace from any `.<ns>/sessions/` dir in CWD; falls back to 'agent-workflow'. Plugins can reclaim a fixed namespace via SessionStart hook (writes to `~/.config/agent-workflow/namespace`

Readme

@tacuchi/agent-workflow-cli

Agnostic runtime CLI for session-lifecycle workflows. Pairs with namespace-aware plugins to provide commands like sessions, session-create, session-close, checkpoint-write, plugin-doctor, auto-plan-decide, and more.

Install

npm install -g @tacuchi/agent-workflow-cli

The CLI exposes two binaries: agent-workflow (canonical) and aw (short alias).

Bundled skill manager (v2.0.0+)

The published tarball bundles the agent-workflow-manager skill under skills/agent-workflow-manager/. Install it into your Claude Code skills directory with:

agent-workflow self install-skill

This copies the bundled skill to ~/.claude/skills/agent-workflow-manager/. No network required.

Override the source

Power users who want a specific revision (e.g., bleeding-edge from the upstream repo) can pass --from:

# Clone from a git URL
agent-workflow self install-skill --from https://github.com/Tacuchi/agent-workflow-manager.git

# Copy from a local checkout
agent-workflow self install-skill --from /path/to/agent-workflow-manager

Flags:

  • --force — overwrite an existing destination.
  • --dry-run — preview without writing.

Namespace resolution

Resolution order (first match wins):

  1. --namespace <name> flag.
  2. AW_NAMESPACE env var.
  3. Workspace auto-detect (v1.2.0+): scan cwd for hidden folders matching ^\.[a-z][a-z0-9-]{1,30}$ containing a sessions/ subdirectory. If exactly one match, use it.
  4. ~/.config/agent-workflow/namespace user config.
  5. Default: agent-workflow.

For plugin workspaces with a single .<namespace>/sessions/ directory, the CLI auto-detects the namespace without configuration.

Commands (selected)

  • sessions / session-create / session-close / session-resume / session-artifacts — session lifecycle.
  • checkpoint-read / checkpoint-write — CHECKPOINT.md handling.
  • plugin-doctor — plugin health check.
  • auto-plan-decide — heuristic for skip/lite/full planning.
  • topic-change-check — detect when an OBJETIVO drifts.
  • release-data / graduate — release/handoff helpers.
  • self install-skill / self namespace / self doctor / self update — CLI maintenance.

Run agent-workflow --help (or aw --help) for the full list, or agent-workflow <command> --help for per-command flags.

Versioning

Semantic Versioning. Major bumps are reserved for breaking changes to commands, flags, or output schemas. See CHANGELOG.md.

License

MIT — see LICENSE.