@compozy/cli 0.1.2 → 0.1.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 +122 -117
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -28,10 +28,10 @@ One CLI to replace scattered prompts, manual task tracking, and copy-paste revie
|
|
|
28
28
|
|
|
29
29
|
## ✨ Highlights
|
|
30
30
|
|
|
31
|
-
- **One command, 40+ agents.** Install bundled skills into Claude Code, Codex, Cursor, Droid, OpenCode, Pi, and 40+ other agents and editors with `compozy setup
|
|
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
32
|
- **Idea to code in 5 steps.** Structured pipeline: PRD → TechSpec → Tasks → Execution → Review. Each phase produces plain markdown artifacts that feed into the next.
|
|
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
|
-
- **Multi-agent execution.** Run tasks through Claude Code, Codex, Cursor, Droid, OpenCode, or
|
|
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.
|
|
36
36
|
- **Provider-agnostic reviews.** Fetch review comments from CodeRabbit, GitHub, or run AI-powered reviews internally. All normalize to the same format. Provider threads resolve automatically after fixes.
|
|
37
37
|
- **Markdown everywhere.** PRDs, specs, tasks, reviews, and ADRs are human-readable markdown files. Version-controlled, diffable, editable between steps. No vendor lock-in.
|
|
@@ -74,40 +74,29 @@ compozy setup # interactive — pick agents and skills
|
|
|
74
74
|
compozy setup --all # install everything to every detected agent
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
+
Execution runtimes are separate from skill installation. To run `compozy start` or `compozy fix-reviews`, install an ACP-capable runtime or adapter on `PATH` for the `--ide` you choose:
|
|
78
|
+
|
|
79
|
+
| Runtime | `--ide` flag | Expected ACP command |
|
|
80
|
+
| ------------ | -------------- | -------------------------------- |
|
|
81
|
+
| Claude Agent | `claude` | `claude-agent-acp` |
|
|
82
|
+
| Codex CLI | `codex` | `codex-acp` |
|
|
83
|
+
| Cursor | `cursor-agent` | `cursor-agent acp` |
|
|
84
|
+
| Droid | `droid` | `droid exec --output-format acp` |
|
|
85
|
+
| OpenCode | `opencode` | `opencode acp` |
|
|
86
|
+
| pi ACP | `pi` | `pi-acp` |
|
|
87
|
+
| Gemini CLI | `gemini` | `gemini --acp` |
|
|
88
|
+
|
|
89
|
+
When the direct ACP command is not installed, Compozy can also fall back to supported launchers such as `npx @zed-industries/codex-acp` when the launcher is available locally.
|
|
90
|
+
|
|
77
91
|
## 🔄 How It Works
|
|
78
92
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
▼
|
|
83
|
-
/cy-create-prd user-auth .compozy/tasks/user-auth/_prd.md
|
|
84
|
-
│ + Architecture Decision Records
|
|
85
|
-
▼
|
|
86
|
-
/cy-create-techspec user-auth .compozy/tasks/user-auth/_techspec.md
|
|
87
|
-
│
|
|
88
|
-
▼
|
|
89
|
-
/cy-create-tasks user-auth .compozy/tasks/user-auth/task_01.md … task_N.md
|
|
90
|
-
│
|
|
91
|
-
▼
|
|
92
|
-
compozy sync --name user-auth Refresh task workflow _meta.md
|
|
93
|
-
│
|
|
94
|
-
▼
|
|
95
|
-
compozy start --name user-auth AI agents execute each task
|
|
96
|
-
│ ↕ .compozy/tasks/user-auth/memory/
|
|
97
|
-
│
|
|
98
|
-
▼
|
|
99
|
-
compozy fetch-reviews / /cy-review-round .compozy/tasks/user-auth/reviews-001/
|
|
100
|
-
│
|
|
101
|
-
▼
|
|
102
|
-
compozy fix-reviews --name user-auth Issues triaged, fixed, resolved
|
|
103
|
-
│
|
|
104
|
-
▼
|
|
105
|
-
Repeat until clean → Ship
|
|
106
|
-
```
|
|
93
|
+
<div align="center">
|
|
94
|
+
<img src="imgs/how-it-works-flow.png" alt="Compozy workflow from setup to ship with markdown artifacts at each step" width="100%">
|
|
95
|
+
</div>
|
|
107
96
|
|
|
108
97
|
Every artifact is a plain markdown file in `.compozy/tasks/<name>/`. You can read, edit, or version-control any of them between steps.
|
|
109
98
|
|
|
110
|
-
Task and review issue files use YAML frontmatter for parseable metadata such as `status`, `domain`, `severity`, and `provider_ref`. Task workflow `_meta.md` files can be refreshed explicitly with `compozy sync`. If you have an older project with XML-tagged artifacts, run `compozy migrate` once before using `start` or `fix-reviews`.
|
|
99
|
+
Task and review issue files use YAML frontmatter for parseable metadata such as `status`, `domain`, `severity`, and `provider_ref`. Task workflow `_meta.md` files can be refreshed explicitly with `compozy sync`. Fully completed workflows can be moved out of the active task root with `compozy archive`. If you have an older project with XML-tagged artifacts, run `compozy migrate` once before using `start` or `fix-reviews`.
|
|
111
100
|
|
|
112
101
|
## 🚀 Quick Start
|
|
113
102
|
|
|
@@ -116,7 +105,7 @@ This walkthrough builds a feature called **user-auth** from idea to shipped code
|
|
|
116
105
|
### 1. Install skills
|
|
117
106
|
|
|
118
107
|
```bash
|
|
119
|
-
compozy setup
|
|
108
|
+
compozy setup
|
|
120
109
|
```
|
|
121
110
|
|
|
122
111
|
Auto-detects installed agents and copies (or symlinks) skills into their configuration directories.
|
|
@@ -126,7 +115,7 @@ Auto-detects installed agents and copies (or symlinks) skills into their configu
|
|
|
126
115
|
Inside your AI agent (Claude Code, Codex, Cursor, OpenCode, Pi, etc.):
|
|
127
116
|
|
|
128
117
|
```
|
|
129
|
-
/cy-create-prd
|
|
118
|
+
/cy-create-prd <prompt>
|
|
130
119
|
```
|
|
131
120
|
|
|
132
121
|
Interactive brainstorming session — asks clarifying questions, spawns parallel agents to research your codebase and the web, produces a business-focused PRD with ADRs.
|
|
@@ -187,16 +176,16 @@ Repeat steps 6–7. Each cycle creates a new review round (`reviews-002/`, `revi
|
|
|
187
176
|
|
|
188
177
|
Compozy bundles 8 skills that its workflows depend on. They run inside your AI agent — no context switching to external tools.
|
|
189
178
|
|
|
190
|
-
| Skill
|
|
191
|
-
|
|
|
192
|
-
| `cy-create-prd`
|
|
193
|
-
| `cy-create-techspec` | PRD → Technical Specification with architecture exploration
|
|
194
|
-
| `cy-create-tasks`
|
|
195
|
-
| `cy-execute-task`
|
|
179
|
+
| Skill | Purpose |
|
|
180
|
+
| -------------------- | -------------------------------------------------------------------------- |
|
|
181
|
+
| `cy-create-prd` | Interactive brainstorming → Product Requirements Document with ADRs |
|
|
182
|
+
| `cy-create-techspec` | PRD → Technical Specification with architecture exploration |
|
|
183
|
+
| `cy-create-tasks` | PRD + TechSpec → Independently implementable task files |
|
|
184
|
+
| `cy-execute-task` | Executes one task end-to-end: implement, validate, track, commit |
|
|
196
185
|
| `cy-workflow-memory` | Maintains cross-task context so agents pick up where the last one left off |
|
|
197
|
-
| `cy-review-round`
|
|
198
|
-
| `cy-fix-reviews`
|
|
199
|
-
| `cy-final-verify`
|
|
186
|
+
| `cy-review-round` | Comprehensive code review → structured issue files |
|
|
187
|
+
| `cy-fix-reviews` | Triage, fix, verify, and resolve review issues |
|
|
188
|
+
| `cy-final-verify` | Enforces verification evidence before any completion claim |
|
|
200
189
|
|
|
201
190
|
### 🧠 Workflow Memory
|
|
202
191
|
|
|
@@ -204,10 +193,10 @@ When agents execute tasks, context gets lost between runs — decisions made, er
|
|
|
204
193
|
|
|
205
194
|
Every task execution automatically bootstraps two markdown files inside `.compozy/tasks/<name>/memory/`:
|
|
206
195
|
|
|
207
|
-
| File
|
|
208
|
-
|
|
|
209
|
-
| `MEMORY.md`
|
|
210
|
-
| `task_01.md` | Single task
|
|
196
|
+
| File | Scope | What goes here |
|
|
197
|
+
| ------------ | ------------------ | ------------------------------------------------------------------------------- |
|
|
198
|
+
| `MEMORY.md` | Cross-task, shared | Architecture decisions, discovered patterns, open risks, handoffs between tasks |
|
|
199
|
+
| `task_01.md` | Single task | Objective snapshot, files touched, errors hit, what's ready for the next run |
|
|
211
200
|
|
|
212
201
|
**How it works:**
|
|
213
202
|
|
|
@@ -219,28 +208,29 @@ Every task execution automatically bootstraps two markdown files inside `.compoz
|
|
|
219
208
|
|
|
220
209
|
**Automatic compaction.** Memory files have soft limits (150 lines / 12 KB for shared, 200 lines / 16 KB per task). When a file exceeds its threshold, Compozy flags it for compaction — the agent trims noise and repetition while preserving active risks, decisions, and handoffs.
|
|
221
210
|
|
|
222
|
-
**No duplication.** Memory files don't copy what's already in the repo, git history, PRD, or task specs. They capture only what would otherwise be lost between runs: the
|
|
211
|
+
**No duplication.** Memory files don't copy what's already in the repo, git history, PRD, or task specs. They capture only what would otherwise be lost between runs: the _why_ behind decisions, surprising findings, and context that makes the next agent immediately productive.
|
|
223
212
|
|
|
224
213
|
The `cy-workflow-memory` skill handles all of this automatically when referenced in task prompts. No manual setup required — just run `compozy start` and agents inherit context from every previous run.
|
|
225
214
|
|
|
226
215
|
### 🤖 Supported Agents
|
|
227
216
|
|
|
228
|
-
**Execution** (`compozy start`, `compozy fix-reviews`) —
|
|
217
|
+
**Execution** (`compozy start`, `compozy fix-reviews`) — ACP-capable runtimes that can run tasks:
|
|
229
218
|
|
|
230
|
-
| Agent
|
|
231
|
-
|
|
|
232
|
-
| Claude Code | `claude`
|
|
233
|
-
| Codex
|
|
234
|
-
| Cursor
|
|
235
|
-
| Droid
|
|
236
|
-
| OpenCode
|
|
237
|
-
| Pi
|
|
219
|
+
| Agent | `--ide` flag |
|
|
220
|
+
| ----------- | -------------- |
|
|
221
|
+
| Claude Code | `claude` |
|
|
222
|
+
| Codex | `codex` |
|
|
223
|
+
| Cursor | `cursor-agent` |
|
|
224
|
+
| Droid | `droid` |
|
|
225
|
+
| OpenCode | `opencode` |
|
|
226
|
+
| Pi | `pi` |
|
|
227
|
+
| Gemini | `gemini` |
|
|
238
228
|
|
|
239
229
|
**Skill installation** (`compozy setup`) — 40+ agents and editors, including Claude Code, Codex, Cursor, Droid, OpenCode, Pi, Gemini CLI, GitHub Copilot, Windsurf, Amp, Continue, Goose, Roo Code, Augment, Kiro CLI, Cline, and many more. Run `compozy setup` to see all detected agents on your system.
|
|
240
230
|
|
|
241
231
|
When installing to multiple agents, Compozy offers two modes:
|
|
242
232
|
|
|
243
|
-
- **Symlink**
|
|
233
|
+
- **Symlink** _(default)_ — One canonical copy with symlinks from each agent directory. All agents stay in sync.
|
|
244
234
|
- **Copy** — Independent copies per agent. Use `--copy` when symlinks are not supported.
|
|
245
235
|
|
|
246
236
|
## 📖 CLI Reference
|
|
@@ -252,15 +242,15 @@ When installing to multiple agents, Compozy offers two modes:
|
|
|
252
242
|
compozy setup [flags]
|
|
253
243
|
```
|
|
254
244
|
|
|
255
|
-
| Flag
|
|
256
|
-
|
|
|
257
|
-
| `--agent`, `-a`
|
|
258
|
-
| `--skill`, `-s`
|
|
245
|
+
| Flag | Default | Description |
|
|
246
|
+
| ---------------- | ------- | -------------------------------------------- |
|
|
247
|
+
| `--agent`, `-a` | | Target agent name (repeatable) |
|
|
248
|
+
| `--skill`, `-s` | | Skill name to install (repeatable) |
|
|
259
249
|
| `--global`, `-g` | `false` | Install to user directory instead of project |
|
|
260
|
-
| `--copy`
|
|
261
|
-
| `--list`, `-l`
|
|
262
|
-
| `--yes`, `-y`
|
|
263
|
-
| `--all`
|
|
250
|
+
| `--copy` | `false` | Copy files instead of symlinking |
|
|
251
|
+
| `--list`, `-l` | `false` | List bundled skills without installing |
|
|
252
|
+
| `--yes`, `-y` | `false` | Skip confirmation prompts |
|
|
253
|
+
| `--all` | `false` | Install all skills to all agents |
|
|
264
254
|
|
|
265
255
|
</details>
|
|
266
256
|
|
|
@@ -271,13 +261,13 @@ compozy setup [flags]
|
|
|
271
261
|
compozy migrate [flags]
|
|
272
262
|
```
|
|
273
263
|
|
|
274
|
-
| Flag
|
|
275
|
-
|
|
|
276
|
-
| `--root-dir`
|
|
277
|
-
| `--name`
|
|
278
|
-
| `--tasks-dir`
|
|
279
|
-
| `--reviews-dir` |
|
|
280
|
-
| `--dry-run`
|
|
264
|
+
| Flag | Default | Description |
|
|
265
|
+
| --------------- | ---------------- | ------------------------------------------------- |
|
|
266
|
+
| `--root-dir` | `.compozy/tasks` | Workflow root to scan recursively |
|
|
267
|
+
| `--name` | | Restrict migration to one workflow name |
|
|
268
|
+
| `--tasks-dir` | | Restrict migration to one task workflow directory |
|
|
269
|
+
| `--reviews-dir` | | Restrict migration to one review round directory |
|
|
270
|
+
| `--dry-run` | `false` | Preview migrations without writing files |
|
|
281
271
|
|
|
282
272
|
</details>
|
|
283
273
|
|
|
@@ -288,11 +278,26 @@ compozy migrate [flags]
|
|
|
288
278
|
compozy sync [flags]
|
|
289
279
|
```
|
|
290
280
|
|
|
291
|
-
| Flag
|
|
292
|
-
|
|
|
293
|
-
| `--root-dir`
|
|
294
|
-
| `--name`
|
|
295
|
-
| `--tasks-dir` |
|
|
281
|
+
| Flag | Default | Description |
|
|
282
|
+
| ------------- | ---------------- | -------------------------------------------- |
|
|
283
|
+
| `--root-dir` | `.compozy/tasks` | Workflow root to scan |
|
|
284
|
+
| `--name` | | Restrict sync to one workflow name |
|
|
285
|
+
| `--tasks-dir` | | Restrict sync to one task workflow directory |
|
|
286
|
+
|
|
287
|
+
</details>
|
|
288
|
+
|
|
289
|
+
<details>
|
|
290
|
+
<summary><code>compozy archive</code> — Move fully completed workflows into the archive root</summary>
|
|
291
|
+
|
|
292
|
+
```bash
|
|
293
|
+
compozy archive [flags]
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
| Flag | Default | Description |
|
|
297
|
+
| ------------- | ---------------- | ------------------------------------------------- |
|
|
298
|
+
| `--root-dir` | `.compozy/tasks` | Workflow root to scan |
|
|
299
|
+
| `--name` | | Restrict archiving to one workflow name |
|
|
300
|
+
| `--tasks-dir` | | Restrict archiving to one task workflow directory |
|
|
296
301
|
|
|
297
302
|
</details>
|
|
298
303
|
|
|
@@ -305,21 +310,21 @@ compozy start [flags]
|
|
|
305
310
|
|
|
306
311
|
Running `compozy start` with no flags opens the interactive form automatically.
|
|
307
312
|
|
|
308
|
-
| Flag
|
|
309
|
-
|
|
|
310
|
-
| `--name`
|
|
311
|
-
| `--tasks-dir`
|
|
312
|
-
| `--ide`
|
|
313
|
-
| `--model`
|
|
314
|
-
| `--reasoning-effort`
|
|
315
|
-
| `--timeout`
|
|
316
|
-
| `--max-retries`
|
|
317
|
-
| `--retry-backoff-multiplier` | `1.5`
|
|
318
|
-
| `--tail-lines`
|
|
319
|
-
| `--add-dir`
|
|
320
|
-
| `--auto-commit`
|
|
321
|
-
| `--include-completed`
|
|
322
|
-
| `--dry-run`
|
|
313
|
+
| Flag | Default | Description |
|
|
314
|
+
| ---------------------------- | ----------- | ------------------------------------------------------------- |
|
|
315
|
+
| `--name` | | Workflow name (`.compozy/tasks/<name>`) |
|
|
316
|
+
| `--tasks-dir` | | Path to tasks directory |
|
|
317
|
+
| `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
|
|
318
|
+
| `--model` | _(per IDE)_ | Model override |
|
|
319
|
+
| `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
|
|
320
|
+
| `--timeout` | `10m` | Activity timeout per job |
|
|
321
|
+
| `--max-retries` | `0` | Retry failed jobs N times |
|
|
322
|
+
| `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
|
|
323
|
+
| `--tail-lines` | `30` | Log lines shown per job in UI |
|
|
324
|
+
| `--add-dir` | | Additional directories to allow (repeatable) |
|
|
325
|
+
| `--auto-commit` | `false` | Auto-commit after each task |
|
|
326
|
+
| `--include-completed` | `false` | Re-run completed tasks |
|
|
327
|
+
| `--dry-run` | `false` | Preview prompts without executing |
|
|
323
328
|
|
|
324
329
|
</details>
|
|
325
330
|
|
|
@@ -332,12 +337,12 @@ compozy fetch-reviews [flags]
|
|
|
332
337
|
|
|
333
338
|
Running `compozy fetch-reviews` with no flags opens the interactive form automatically.
|
|
334
339
|
|
|
335
|
-
| Flag
|
|
336
|
-
|
|
|
337
|
-
| `--provider` |
|
|
338
|
-
| `--pr`
|
|
339
|
-
| `--name`
|
|
340
|
-
| `--round`
|
|
340
|
+
| Flag | Default | Description |
|
|
341
|
+
| ------------ | ------- | ----------------------------------------- |
|
|
342
|
+
| `--provider` | | Review provider (`coderabbit`, etc.) |
|
|
343
|
+
| `--pr` | | Pull request number |
|
|
344
|
+
| `--name` | | Workflow name |
|
|
345
|
+
| `--round` | `0` | Round number (auto-increments if omitted) |
|
|
341
346
|
|
|
342
347
|
</details>
|
|
343
348
|
|
|
@@ -350,25 +355,25 @@ compozy fix-reviews [flags]
|
|
|
350
355
|
|
|
351
356
|
Running `compozy fix-reviews` with no flags opens the interactive form automatically.
|
|
352
357
|
|
|
353
|
-
| Flag
|
|
354
|
-
|
|
|
355
|
-
| `--name`
|
|
356
|
-
| `--round`
|
|
357
|
-
| `--reviews-dir`
|
|
358
|
-
| `--ide`
|
|
359
|
-
| `--model`
|
|
360
|
-
| `--batch-size`
|
|
361
|
-
| `--concurrent`
|
|
362
|
-
| `--grouped`
|
|
363
|
-
| `--include-resolved`
|
|
364
|
-
| `--reasoning-effort`
|
|
365
|
-
| `--timeout`
|
|
366
|
-
| `--max-retries`
|
|
367
|
-
| `--retry-backoff-multiplier` | `1.5`
|
|
368
|
-
| `--tail-lines`
|
|
369
|
-
| `--add-dir`
|
|
370
|
-
| `--auto-commit`
|
|
371
|
-
| `--dry-run`
|
|
358
|
+
| Flag | Default | Description |
|
|
359
|
+
| ---------------------------- | ----------- | ------------------------------------------------------------- |
|
|
360
|
+
| `--name` | | Workflow name |
|
|
361
|
+
| `--round` | `0` | Round number (latest if omitted) |
|
|
362
|
+
| `--reviews-dir` | | Override review directory path |
|
|
363
|
+
| `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
|
|
364
|
+
| `--model` | _(per IDE)_ | Model override |
|
|
365
|
+
| `--batch-size` | `1` | Issues per batch |
|
|
366
|
+
| `--concurrent` | `1` | Parallel batches |
|
|
367
|
+
| `--grouped` | `false` | Generate grouped issue summaries |
|
|
368
|
+
| `--include-resolved` | `false` | Re-process resolved issues |
|
|
369
|
+
| `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
|
|
370
|
+
| `--timeout` | `10m` | Activity timeout per job |
|
|
371
|
+
| `--max-retries` | `0` | Retry failed jobs N times |
|
|
372
|
+
| `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
|
|
373
|
+
| `--tail-lines` | `30` | Log lines shown per job in UI |
|
|
374
|
+
| `--add-dir` | | Additional directories to allow (repeatable) |
|
|
375
|
+
| `--auto-commit` | `false` | Auto-commit after each batch |
|
|
376
|
+
| `--dry-run` | `false` | Preview prompts without executing |
|
|
372
377
|
|
|
373
378
|
</details>
|
|
374
379
|
|
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.3",
|
|
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.3_darwin_arm64.tar.gz",
|
|
31
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.3/compozy_0.1.3_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": "57c78066e4db73ffa0c5b53eedda98098cc34bcdd0d615869d83f3735485e839"
|
|
39
39
|
},
|
|
40
|
-
"wrappedIn": "compozy_0.1.
|
|
40
|
+
"wrappedIn": "compozy_0.1.3_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.3_darwin_x86_64.tar.gz",
|
|
44
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.3/compozy_0.1.3_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": "cae8eb365d082c665c071f6538b94b71fef63596f40c399245ccc6027a0569fc"
|
|
52
52
|
},
|
|
53
|
-
"wrappedIn": "compozy_0.1.
|
|
53
|
+
"wrappedIn": "compozy_0.1.3_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.3_linux_arm64.tar.gz",
|
|
57
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.3/compozy_0.1.3_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": "c8c50c37bb5e7c4f9656340274a0d9a27ff9345fe71eee33869a32071e4f9bf0"
|
|
65
65
|
},
|
|
66
|
-
"wrappedIn": "compozy_0.1.
|
|
66
|
+
"wrappedIn": "compozy_0.1.3_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.3_linux_x86_64.tar.gz",
|
|
70
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.3/compozy_0.1.3_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": "3cdf82b58e3826ca5516f86f0cf3330a494888f59f9ac7ca7a6b182860893741"
|
|
78
78
|
},
|
|
79
|
-
"wrappedIn": "compozy_0.1.
|
|
79
|
+
"wrappedIn": "compozy_0.1.3_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.3_windows_x86_64.zip",
|
|
83
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.3/compozy_0.1.3_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": "18e411599601609604c361f3fe6977b9a74a7cc2176ad9fd67093d873b6a92fe"
|
|
91
91
|
},
|
|
92
|
-
"wrappedIn": "compozy_0.1.
|
|
92
|
+
"wrappedIn": "compozy_0.1.3_windows_x86_64"
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
}
|