@compozy/cli 0.1.3 → 0.1.4
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 +22 -13
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ One CLI to replace scattered prompts, manual task tracking, and copy-paste revie
|
|
|
29
29
|
## ✨ Highlights
|
|
30
30
|
|
|
31
31
|
- **One command, 40+ agents.** Install bundled skills into Claude Code, Codex, Cursor, Droid, OpenCode, Pi, Gemini, and 40+ other agents and editors with `compozy setup`.
|
|
32
|
-
- **Idea to code in
|
|
32
|
+
- **Idea to code in a structured pipeline.** Optional Issue → PRD → TechSpec → Tasks → Execution → Review. Each phase produces plain markdown artifacts that feed into the next. Start from an issue for full research and debate, or jump straight to PRD if you already have a clear scope.
|
|
33
33
|
- **Codebase-aware enrichment.** Tasks aren't generic prompts. Compozy spawns parallel agents to explore your codebase, discover patterns, and ground every task in real project context.
|
|
34
34
|
- **Multi-agent execution.** Run tasks through ACP-capable runtimes like Claude Code, Codex, Cursor, Droid, OpenCode, Pi, or Gemini — just change `--ide`. Concurrent batch processing with configurable timeouts, retries, and exponential backoff, all with a live terminal UI.
|
|
35
35
|
- **Workflow memory between runs.** Agents inherit context from every previous task — decisions, learnings, errors, and handoffs. Two-tier markdown memory with automatic compaction keeps context fresh without manual bookkeeping.
|
|
@@ -110,17 +110,25 @@ compozy setup
|
|
|
110
110
|
|
|
111
111
|
Auto-detects installed agents and copies (or symlinks) skills into their configuration directories.
|
|
112
112
|
|
|
113
|
-
### 2. Create
|
|
113
|
+
### 2. (Optional) Create an Issue
|
|
114
114
|
|
|
115
115
|
Inside your AI agent (Claude Code, Codex, Cursor, OpenCode, Pi, etc.):
|
|
116
116
|
|
|
117
117
|
```
|
|
118
|
-
/cy-
|
|
118
|
+
/cy-idea-factory user-auth
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
Transforms a raw idea into a structured issue spec — asks targeted questions, researches market and codebase in parallel, runs business analysis and council debate, suggests high-leverage alternatives, and produces a research-backed issue. Skip this step if you already have a clear feature scope.
|
|
122
122
|
|
|
123
|
-
### 3. Create a
|
|
123
|
+
### 3. Create a PRD
|
|
124
|
+
|
|
125
|
+
```
|
|
126
|
+
/cy-create-prd user-auth
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Interactive brainstorming session — reads the issue if one exists, asks clarifying questions, spawns parallel agents to research your codebase and the web, produces a business-focused PRD with ADRs.
|
|
130
|
+
|
|
131
|
+
### 4. Create a TechSpec
|
|
124
132
|
|
|
125
133
|
```
|
|
126
134
|
/cy-create-techspec user-auth
|
|
@@ -128,7 +136,7 @@ Interactive brainstorming session — asks clarifying questions, spawns parallel
|
|
|
128
136
|
|
|
129
137
|
Reads your PRD, explores the codebase architecture, asks technical clarification questions. Produces architecture specs, API designs, and data models.
|
|
130
138
|
|
|
131
|
-
###
|
|
139
|
+
### 5. Break down into tasks
|
|
132
140
|
|
|
133
141
|
```
|
|
134
142
|
/cy-create-tasks user-auth
|
|
@@ -136,7 +144,7 @@ Reads your PRD, explores the codebase architecture, asks technical clarification
|
|
|
136
144
|
|
|
137
145
|
Analyzes both documents, explores your codebase for relevant files and patterns, produces individually executable task files with status tracking, context, and acceptance criteria.
|
|
138
146
|
|
|
139
|
-
###
|
|
147
|
+
### 6. Execute tasks
|
|
140
148
|
|
|
141
149
|
```bash
|
|
142
150
|
compozy start --name user-auth --ide claude
|
|
@@ -144,7 +152,7 @@ compozy start --name user-auth --ide claude
|
|
|
144
152
|
|
|
145
153
|
Each pending task is processed sequentially — the agent reads the spec, implements the code, validates it, and updates the task status. Use `--dry-run` to preview prompts without executing.
|
|
146
154
|
|
|
147
|
-
###
|
|
155
|
+
### 7. Review
|
|
148
156
|
|
|
149
157
|
**Option A** — AI-powered review inside your agent:
|
|
150
158
|
|
|
@@ -160,7 +168,7 @@ compozy fetch-reviews --provider coderabbit --pr 42 --name user-auth
|
|
|
160
168
|
|
|
161
169
|
Both produce the same output: `.compozy/tasks/user-auth/reviews-001/issue_*.md`
|
|
162
170
|
|
|
163
|
-
###
|
|
171
|
+
### 8. Fix review issues
|
|
164
172
|
|
|
165
173
|
```bash
|
|
166
174
|
compozy fix-reviews --name user-auth --ide claude --concurrent 2 --batch-size 3
|
|
@@ -168,17 +176,18 @@ compozy fix-reviews --name user-auth --ide claude --concurrent 2 --batch-size 3
|
|
|
168
176
|
|
|
169
177
|
Agents triage each issue as valid or invalid, implement fixes for valid issues, and update statuses. Provider threads are resolved automatically.
|
|
170
178
|
|
|
171
|
-
###
|
|
179
|
+
### 9. Iterate and ship
|
|
172
180
|
|
|
173
|
-
Repeat steps
|
|
181
|
+
Repeat steps 7–8. Each cycle creates a new review round (`reviews-002/`, `reviews-003/`), preserving full history. When clean — merge and ship.
|
|
174
182
|
|
|
175
183
|
## 🧩 Skills
|
|
176
184
|
|
|
177
|
-
Compozy bundles
|
|
185
|
+
Compozy bundles 9 skills that its workflows depend on. They run inside your AI agent — no context switching to external tools.
|
|
178
186
|
|
|
179
187
|
| Skill | Purpose |
|
|
180
188
|
| -------------------- | -------------------------------------------------------------------------- |
|
|
181
|
-
| `cy-
|
|
189
|
+
| `cy-idea-factory` | Raw idea → structured issue spec with market research, business analysis, and council debate |
|
|
190
|
+
| `cy-create-prd` | Issue/idea → Product Requirements Document with ADRs |
|
|
182
191
|
| `cy-create-techspec` | PRD → Technical Specification with architecture exploration |
|
|
183
192
|
| `cy-create-tasks` | PRD + TechSpec → Independently implementable task files |
|
|
184
193
|
| `cy-execute-task` | Executes one task end-to-end: implement, validate, track, commit |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compozy/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"description": "Compozy CLI",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
@@ -27,69 +27,69 @@
|
|
|
27
27
|
},
|
|
28
28
|
"archives": {
|
|
29
29
|
"darwin-arm64": {
|
|
30
|
-
"name": "compozy_0.1.
|
|
31
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
30
|
+
"name": "compozy_0.1.4_darwin_arm64.tar.gz",
|
|
31
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.4/compozy_0.1.4_darwin_arm64.tar.gz",
|
|
32
32
|
"bins": [
|
|
33
33
|
"compozy"
|
|
34
34
|
],
|
|
35
35
|
"format": "tar.gz",
|
|
36
36
|
"checksum": {
|
|
37
37
|
"algorithm": "sha256",
|
|
38
|
-
"digest": "
|
|
38
|
+
"digest": "5e384a0463fbc65514a5990aa3b335ad6532e4691d38834d73cd7237f92d9b22"
|
|
39
39
|
},
|
|
40
|
-
"wrappedIn": "compozy_0.1.
|
|
40
|
+
"wrappedIn": "compozy_0.1.4_darwin_arm64"
|
|
41
41
|
},
|
|
42
42
|
"darwin-x64": {
|
|
43
|
-
"name": "compozy_0.1.
|
|
44
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
43
|
+
"name": "compozy_0.1.4_darwin_x86_64.tar.gz",
|
|
44
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.4/compozy_0.1.4_darwin_x86_64.tar.gz",
|
|
45
45
|
"bins": [
|
|
46
46
|
"compozy"
|
|
47
47
|
],
|
|
48
48
|
"format": "tar.gz",
|
|
49
49
|
"checksum": {
|
|
50
50
|
"algorithm": "sha256",
|
|
51
|
-
"digest": "
|
|
51
|
+
"digest": "7d372733a379d47fb21bed556bce8cb73f45163d0133f0ff25af4c8bef4a1f5e"
|
|
52
52
|
},
|
|
53
|
-
"wrappedIn": "compozy_0.1.
|
|
53
|
+
"wrappedIn": "compozy_0.1.4_darwin_x86_64"
|
|
54
54
|
},
|
|
55
55
|
"linux-arm64": {
|
|
56
|
-
"name": "compozy_0.1.
|
|
57
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
56
|
+
"name": "compozy_0.1.4_linux_arm64.tar.gz",
|
|
57
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.4/compozy_0.1.4_linux_arm64.tar.gz",
|
|
58
58
|
"bins": [
|
|
59
59
|
"compozy"
|
|
60
60
|
],
|
|
61
61
|
"format": "tar.gz",
|
|
62
62
|
"checksum": {
|
|
63
63
|
"algorithm": "sha256",
|
|
64
|
-
"digest": "
|
|
64
|
+
"digest": "9dded2212070d39ee62817589712e95da628f498bd4cb87aa9639af646ca6fbe"
|
|
65
65
|
},
|
|
66
|
-
"wrappedIn": "compozy_0.1.
|
|
66
|
+
"wrappedIn": "compozy_0.1.4_linux_arm64"
|
|
67
67
|
},
|
|
68
68
|
"linux-x64": {
|
|
69
|
-
"name": "compozy_0.1.
|
|
70
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
69
|
+
"name": "compozy_0.1.4_linux_x86_64.tar.gz",
|
|
70
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.4/compozy_0.1.4_linux_x86_64.tar.gz",
|
|
71
71
|
"bins": [
|
|
72
72
|
"compozy"
|
|
73
73
|
],
|
|
74
74
|
"format": "tar.gz",
|
|
75
75
|
"checksum": {
|
|
76
76
|
"algorithm": "sha256",
|
|
77
|
-
"digest": "
|
|
77
|
+
"digest": "c7043253f9ecd58e771ee0610f04190906115c092565a57ee2965e4365455937"
|
|
78
78
|
},
|
|
79
|
-
"wrappedIn": "compozy_0.1.
|
|
79
|
+
"wrappedIn": "compozy_0.1.4_linux_x86_64"
|
|
80
80
|
},
|
|
81
81
|
"win32-x64": {
|
|
82
|
-
"name": "compozy_0.1.
|
|
83
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
82
|
+
"name": "compozy_0.1.4_windows_x86_64.zip",
|
|
83
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.4/compozy_0.1.4_windows_x86_64.zip",
|
|
84
84
|
"bins": [
|
|
85
85
|
"compozy.exe"
|
|
86
86
|
],
|
|
87
87
|
"format": "zip",
|
|
88
88
|
"checksum": {
|
|
89
89
|
"algorithm": "sha256",
|
|
90
|
-
"digest": "
|
|
90
|
+
"digest": "1d8caf3070b63b4f3dfe36428bd5b53992e78fb5a5e83785b2c9fd54a38c5bea"
|
|
91
91
|
},
|
|
92
|
-
"wrappedIn": "compozy_0.1.
|
|
92
|
+
"wrappedIn": "compozy_0.1.4_windows_x86_64"
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
}
|