@mutmutco/cli 0.8.2
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 +40 -0
- package/dist/index.cjs +4432 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @mutmutco/cli
|
|
2
|
+
|
|
3
|
+
The command-line engine for MMI Future org tooling. It delivers the org spine, reads and claims GitHub Project work, records saga continuity notes, and exposes the model-agnostic commands used by the MMI plugin and non-Claude agents.
|
|
4
|
+
|
|
5
|
+
This package is published from [mutmutco/MMI-Hub](https://github.com/mutmutco/MMI-Hub) and its version matches the MMI Hub plugin version.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```powershell
|
|
10
|
+
npm install -g @mutmutco/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then verify the installed command:
|
|
14
|
+
|
|
15
|
+
```powershell
|
|
16
|
+
mmi-cli --version
|
|
17
|
+
mmi-cli doctor --json
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Main Commands
|
|
21
|
+
|
|
22
|
+
- `mmi-cli doctor` checks GitHub auth, repo config, CLI availability, and stale plugin/cache state.
|
|
23
|
+
- `mmi-cli board read` lists assigned and claimable GitHub Project work.
|
|
24
|
+
- `mmi-cli board claim <owner/repo#number>` claims one issue by moving its Project status to `In Progress`.
|
|
25
|
+
- `mmi-cli issue create` creates typed, prioritized GitHub issues and queues related-issue discovery.
|
|
26
|
+
- `mmi-cli saga note`, `mmi-cli saga show`, and `mmi-cli saga health` write and inspect session continuity.
|
|
27
|
+
- `mmi-cli rules sync` delivers the org-owned `AGENTS.md`, `CLAUDE.md`, and Claude settings files.
|
|
28
|
+
|
|
29
|
+
Run `mmi-cli --help` or `mmi-cli <command> --help` for the full command reference.
|
|
30
|
+
|
|
31
|
+
## Repo-Local Fallback
|
|
32
|
+
|
|
33
|
+
When working inside an `MMI-Hub` checkout before npm is available, use the committed bundle directly:
|
|
34
|
+
|
|
35
|
+
```powershell
|
|
36
|
+
node cli/dist/index.cjs --version
|
|
37
|
+
node cli/dist/index.cjs doctor --json
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The Claude plugin also ships its own `bin/mmi-cli` launcher, so plugin-enabled Bash sessions can use the bundled command even without a global npm install.
|