@mutmutco/cli 2.35.0 → 2.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/main.cjs +2173 -790
- package/dist/saga.cjs +22 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,7 @@ mmi-cli doctor --json
|
|
|
30
30
|
- `mmi-cli rules sync` delivers the org-owned `AGENTS.md`, `CLAUDE.md`, and Claude settings files.
|
|
31
31
|
- `mmi-cli docs sync` refreshes repo-owned `README.md` and `architecture.md` without clobbering dirty files.
|
|
32
32
|
- `mmi-cli saga note`, `saga show`, `saga health`, `saga session`, `saga capture`, and `saga head-update` write and inspect session continuity through a cached Hub session token. Saga writes are local-first: a transient server miss queues the note in a local pending file and a detached flush worker delivers it — a queued note is normal, not a failure.
|
|
33
|
+
- `mmi-cli handoff open|list|accept|cancel|decline` records explicit same-login, same-repo session handoffs bound to North Star slugs; SessionStart offers open handoffs alongside saga HEAD.
|
|
33
34
|
- `mmi-cli kb get` and `kb list` read the MM KB source (`kb list [prefix]` lists document paths, optionally under a prefix).
|
|
34
35
|
- `mmi-cli northstar push|pull|list|status|sync|delete|graduate` manages North Star, the per-user plan/SSOT store.
|
|
35
36
|
`northstar push` accepts `--body-file <path|->` to write and push in one step (or push an existing
|
|
@@ -54,6 +55,7 @@ mmi-cli doctor --json
|
|
|
54
55
|
- `mmi-cli rcand`, `release`, and `hotfix` render guarded train plans; product trains trigger the Hub's central tenant deployer, while MMI-Hub releases directly from `development` to `main`.
|
|
55
56
|
- `mmi-cli bootstrap`, `bootstrap verify`, and `bootstrap apply` plan, audit, and seed repo onboarding.
|
|
56
57
|
- `mmi-cli access audit` checks collaborator roles and train-branch allowlists.
|
|
58
|
+
- `mmi-cli scrooge report` reads `.mmi/scrooge/trace.jsonl` and prints per-session char/token savings from the org Scrooge PostToolUse hook (Claude Code).
|
|
57
59
|
- `mmi-cli doctor` checks GitHub auth, repo config, CLI availability, plugin install/config/version state, and stale MMI plugin cache dirs, auto-repairing the safe gaps.
|
|
58
60
|
|
|
59
61
|
Hub API calls do not send the raw GitHub token on every request. The CLI exchanges it at `/auth/session`
|