@smartmemory/compose 0.2.23-beta → 0.2.24-beta
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 +10 -1
- package/bin/compose.js +7 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ The package is published to npm as `@smartmemory/compose`. Pick one install styl
|
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
npm install -g @smartmemory/compose
|
|
43
|
-
compose setup #
|
|
43
|
+
compose setup # install bundled skills + register stratum-mcp (alias: compose sync)
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
**Option B — git clone (for development):**
|
|
@@ -82,6 +82,15 @@ Check what you're running:
|
|
|
82
82
|
compose --version
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
## Bundled skills
|
|
86
|
+
|
|
87
|
+
`compose setup` (alias `compose sync`) mirrors compose-owned skills into your agent skill dirs (`~/.claude/skills/`, shared with Codex). Re-run it after a `compose update` or after editing skills locally — it's idempotent.
|
|
88
|
+
|
|
89
|
+
- **`/compose`** — the build/fix lifecycle orchestrator (idea → design → blueprint → implement; or triage → fix → verify).
|
|
90
|
+
- **`/context-budget`** — read-only audit of the session-start loaded surface (agents, skills, rules, MCP tool schemas, CLAUDE.md chain). Estimates per-component token cost, classifies each into always / sometimes / rarely needed, and prints a ranked cut list with estimated reclaim. Never auto-applies cuts.
|
|
91
|
+
|
|
92
|
+
`compose update` fetches a newer compose (npm or git) and then runs setup for you; use `compose sync` when there's no new version to pull — you just changed skills locally.
|
|
93
|
+
|
|
85
94
|
## Tracker providers
|
|
86
95
|
|
|
87
96
|
Compose can persist feature data to different backends via the `tracker` block in `.compose/compose.json`.
|
package/bin/compose.js
CHANGED
|
@@ -125,7 +125,8 @@ if (!cmd || cmd === '--help' || cmd === '-h') {
|
|
|
125
125
|
console.log(' triage Analyze a feature and recommend build profile')
|
|
126
126
|
console.log(' qa-scope Show affected routes from a feature\'s changed files')
|
|
127
127
|
console.log(' init Initialize Compose in the current project')
|
|
128
|
-
console.log(' setup Install global
|
|
128
|
+
console.log(' setup Install/sync global skills + register stratum-mcp (alias: sync)')
|
|
129
|
+
console.log(' sync Re-sync global skills from this install (alias of setup)')
|
|
129
130
|
console.log(' update Pull latest compose, reinstall deps, refresh global skill')
|
|
130
131
|
console.log(' doctor Check external skill dependencies')
|
|
131
132
|
console.log(' --version Print compose version, git SHA, and install root')
|
|
@@ -682,7 +683,11 @@ if (cmd === 'init') {
|
|
|
682
683
|
process.exit(0)
|
|
683
684
|
}
|
|
684
685
|
|
|
685
|
-
if (cmd === 'setup') {
|
|
686
|
+
if (cmd === 'setup' || cmd === 'sync') {
|
|
687
|
+
// `sync` is an alias for `setup` — both mirror compose-owned skills into the
|
|
688
|
+
// agent skill dirs and register stratum-mcp. The name `sync` better signals
|
|
689
|
+
// the idempotent "reconcile local skills with this install" job (run it after
|
|
690
|
+
// editing skills locally, when there's no new version to `update` to).
|
|
686
691
|
runSetup()
|
|
687
692
|
process.exit(0)
|
|
688
693
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartmemory/compose",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.24-beta",
|
|
4
4
|
"description": "Structured AI dev pipeline — goal-to-product orchestration with gates, iteration loops, and feature lifecycle management.",
|
|
5
5
|
"author": "SmartMemory",
|
|
6
6
|
"license": "MIT",
|