monomind 2.9.2 → 2.9.3
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 +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -369,7 +369,7 @@ Everything runs from inside Claude Code via slash commands. Here's the highlight
|
|
|
369
369
|
| `monomind org run <name>` | Start an org as a real SDK-backed daemon |
|
|
370
370
|
| `monomind org status` / `list` | Runtime state for one or all orgs |
|
|
371
371
|
| `monomind org stop <name>` | Request a graceful stop |
|
|
372
|
-
| `/mastermind:
|
|
372
|
+
| `/mastermind:approvev1` | Action pending approval requests |
|
|
373
373
|
|
|
374
374
|
### Business Domains
|
|
375
375
|
| Command | What it does |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.3",
|
|
4
4
|
"description": "Open-source CLI extension for Claude Code and Antigravity (agy). Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. Apache 2.0 licensed, runs locally, no data leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"LICENSE"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@monoes/monomindcli": "2.9.
|
|
24
|
+
"@monoes/monomindcli": "2.9.3"
|
|
25
25
|
},
|
|
26
26
|
"overrides": {
|
|
27
27
|
"hono": ">=4.12.34",
|
|
@@ -99,6 +99,8 @@
|
|
|
99
99
|
"build": "tsc",
|
|
100
100
|
"build:ts": "cd packages/@monomind/cli && npm run build || true",
|
|
101
101
|
"check:versions": "node scripts/check-publish-versions.mjs",
|
|
102
|
+
"docs:counts": "node scripts/generate-doc-counts.mjs",
|
|
103
|
+
"docs:counts:check": "node scripts/generate-doc-counts.mjs --check",
|
|
102
104
|
"test": "vitest",
|
|
103
105
|
"test:ui": "vitest --ui",
|
|
104
106
|
"test:security": "vitest run tests/security/",
|