@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`
Maintainers
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-cliThe 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-skillThis 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-managerFlags:
--force— overwrite an existing destination.--dry-run— preview without writing.
Namespace resolution
Resolution order (first match wins):
--namespace <name>flag.AW_NAMESPACEenv var.- Workspace auto-detect (v1.2.0+): scan cwd for hidden folders matching
^\.[a-z][a-z0-9-]{1,30}$containing asessions/subdirectory. If exactly one match, use it. ~/.config/agent-workflow/namespaceuser config.- 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.
