@compozy/cli 0.1.1 → 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.
Files changed (2) hide show
  1. package/README.md +133 -117
  2. 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` — no npm, pipx, or external tools required.
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 Pi — just change `--ide`. Concurrent batch processing with configurable timeouts, retries, and exponential backoff, all with a live terminal UI.
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.
@@ -43,12 +43,23 @@ One CLI to replace scattered prompts, manual task tracking, and copy-paste revie
43
43
 
44
44
  #### Homebrew
45
45
 
46
+ ```bash
47
+ brew tap compozy/compozy
48
+ brew install --cask compozy
49
+ ```
50
+
46
51
  #### NPM
47
52
 
48
53
  ```bash
49
54
  npm install -g @compozy/cli
50
55
  ```
51
56
 
57
+ #### Go
58
+
59
+ ```bash
60
+ go install github.com/compozy/compozy/cmd/compozy@latest
61
+ ```
62
+
52
63
  #### From Source
53
64
 
54
65
  ```bash
@@ -63,40 +74,29 @@ compozy setup # interactive — pick agents and skills
63
74
  compozy setup --all # install everything to every detected agent
64
75
  ```
65
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
+
66
91
  ## 🔄 How It Works
67
92
 
68
- ```
69
- compozy setup Install skills (once per project)
70
-
71
-
72
- /cy-create-prd user-auth .compozy/tasks/user-auth/_prd.md
73
- │ + Architecture Decision Records
74
-
75
- /cy-create-techspec user-auth .compozy/tasks/user-auth/_techspec.md
76
-
77
-
78
- /cy-create-tasks user-auth .compozy/tasks/user-auth/task_01.md … task_N.md
79
-
80
-
81
- compozy sync --name user-auth Refresh task workflow _meta.md
82
-
83
-
84
- compozy start --name user-auth AI agents execute each task
85
- │ ↕ .compozy/tasks/user-auth/memory/
86
-
87
-
88
- compozy fetch-reviews / /cy-review-round .compozy/tasks/user-auth/reviews-001/
89
-
90
-
91
- compozy fix-reviews --name user-auth Issues triaged, fixed, resolved
92
-
93
-
94
- Repeat until clean → Ship
95
- ```
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>
96
96
 
97
97
  Every artifact is a plain markdown file in `.compozy/tasks/<name>/`. You can read, edit, or version-control any of them between steps.
98
98
 
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`. 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`.
100
100
 
101
101
  ## 🚀 Quick Start
102
102
 
@@ -105,7 +105,7 @@ This walkthrough builds a feature called **user-auth** from idea to shipped code
105
105
  ### 1. Install skills
106
106
 
107
107
  ```bash
108
- compozy setup --all --yes
108
+ compozy setup
109
109
  ```
110
110
 
111
111
  Auto-detects installed agents and copies (or symlinks) skills into their configuration directories.
@@ -115,7 +115,7 @@ Auto-detects installed agents and copies (or symlinks) skills into their configu
115
115
  Inside your AI agent (Claude Code, Codex, Cursor, OpenCode, Pi, etc.):
116
116
 
117
117
  ```
118
- /cy-create-prd user-auth
118
+ /cy-create-prd <prompt>
119
119
  ```
120
120
 
121
121
  Interactive brainstorming session — asks clarifying questions, spawns parallel agents to research your codebase and the web, produces a business-focused PRD with ADRs.
@@ -176,16 +176,16 @@ Repeat steps 6–7. Each cycle creates a new review round (`reviews-002/`, `revi
176
176
 
177
177
  Compozy bundles 8 skills that its workflows depend on. They run inside your AI agent — no context switching to external tools.
178
178
 
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 |
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 |
185
185
  | `cy-workflow-memory` | Maintains cross-task context so agents pick up where the last one left off |
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 |
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 |
189
189
 
190
190
  ### 🧠 Workflow Memory
191
191
 
@@ -193,10 +193,10 @@ When agents execute tasks, context gets lost between runs — decisions made, er
193
193
 
194
194
  Every task execution automatically bootstraps two markdown files inside `.compozy/tasks/<name>/memory/`:
195
195
 
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 |
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 |
200
200
 
201
201
  **How it works:**
202
202
 
@@ -208,28 +208,29 @@ Every task execution automatically bootstraps two markdown files inside `.compoz
208
208
 
209
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.
210
210
 
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.
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.
212
212
 
213
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.
214
214
 
215
215
  ### 🤖 Supported Agents
216
216
 
217
- **Execution** (`compozy start`, `compozy fix-reviews`) — 6 agents that can run tasks:
217
+ **Execution** (`compozy start`, `compozy fix-reviews`) — ACP-capable runtimes that can run tasks:
218
218
 
219
- | Agent | `--ide` flag |
220
- | --- | --- |
221
- | Claude Code | `claude` |
222
- | Codex | `codex` |
223
- | Cursor | `cursor` |
224
- | Droid | `droid` |
225
- | OpenCode | `opencode` |
226
- | Pi | `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` |
227
228
 
228
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.
229
230
 
230
231
  When installing to multiple agents, Compozy offers two modes:
231
232
 
232
- - **Symlink** *(default)* — One canonical copy with symlinks from each agent directory. All agents stay in sync.
233
+ - **Symlink** _(default)_ — One canonical copy with symlinks from each agent directory. All agents stay in sync.
233
234
  - **Copy** — Independent copies per agent. Use `--copy` when symlinks are not supported.
234
235
 
235
236
  ## 📖 CLI Reference
@@ -241,15 +242,15 @@ When installing to multiple agents, Compozy offers two modes:
241
242
  compozy setup [flags]
242
243
  ```
243
244
 
244
- | Flag | Default | Description |
245
- | --- | --- | --- |
246
- | `--agent`, `-a` | | Target agent name (repeatable) |
247
- | `--skill`, `-s` | | Skill name to install (repeatable) |
245
+ | Flag | Default | Description |
246
+ | ---------------- | ------- | -------------------------------------------- |
247
+ | `--agent`, `-a` | | Target agent name (repeatable) |
248
+ | `--skill`, `-s` | | Skill name to install (repeatable) |
248
249
  | `--global`, `-g` | `false` | Install to user directory instead of project |
249
- | `--copy` | `false` | Copy files instead of symlinking |
250
- | `--list`, `-l` | `false` | List bundled skills without installing |
251
- | `--yes`, `-y` | `false` | Skip confirmation prompts |
252
- | `--all` | `false` | Install all skills to all agents |
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 |
253
254
 
254
255
  </details>
255
256
 
@@ -260,13 +261,13 @@ compozy setup [flags]
260
261
  compozy migrate [flags]
261
262
  ```
262
263
 
263
- | Flag | Default | Description |
264
- | --- | --- | --- |
265
- | `--root-dir` | `.compozy/tasks` | Workflow root to scan recursively |
266
- | `--name` | | Restrict migration to one workflow name |
267
- | `--tasks-dir` | | Restrict migration to one task workflow directory |
268
- | `--reviews-dir` | | Restrict migration to one review round directory |
269
- | `--dry-run` | `false` | Preview migrations without writing files |
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 |
270
271
 
271
272
  </details>
272
273
 
@@ -277,11 +278,26 @@ compozy migrate [flags]
277
278
  compozy sync [flags]
278
279
  ```
279
280
 
280
- | Flag | Default | Description |
281
- | --- | --- | --- |
282
- | `--root-dir` | `.compozy/tasks` | Workflow root to scan |
283
- | `--name` | | Restrict sync to one workflow name |
284
- | `--tasks-dir` | | Restrict sync to one task workflow directory |
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 |
285
301
 
286
302
  </details>
287
303
 
@@ -294,21 +310,21 @@ compozy start [flags]
294
310
 
295
311
  Running `compozy start` with no flags opens the interactive form automatically.
296
312
 
297
- | Flag | Default | Description |
298
- | --- | --- | --- |
299
- | `--name` | | Workflow name (`.compozy/tasks/<name>`) |
300
- | `--tasks-dir` | | Path to tasks directory |
301
- | `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
302
- | `--model` | *(per IDE)* | Model override |
303
- | `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
304
- | `--timeout` | `10m` | Activity timeout per job |
305
- | `--max-retries` | `0` | Retry failed jobs N times |
306
- | `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
307
- | `--tail-lines` | `30` | Log lines shown per job in UI |
308
- | `--add-dir` | | Additional directories to allow (repeatable) |
309
- | `--auto-commit` | `false` | Auto-commit after each task |
310
- | `--include-completed` | `false` | Re-run completed tasks |
311
- | `--dry-run` | `false` | Preview prompts without executing |
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 |
312
328
 
313
329
  </details>
314
330
 
@@ -321,12 +337,12 @@ compozy fetch-reviews [flags]
321
337
 
322
338
  Running `compozy fetch-reviews` with no flags opens the interactive form automatically.
323
339
 
324
- | Flag | Default | Description |
325
- | --- | --- | --- |
326
- | `--provider` | | Review provider (`coderabbit`, etc.) |
327
- | `--pr` | | Pull request number |
328
- | `--name` | | Workflow name |
329
- | `--round` | `0` | Round number (auto-increments if omitted) |
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) |
330
346
 
331
347
  </details>
332
348
 
@@ -339,25 +355,25 @@ compozy fix-reviews [flags]
339
355
 
340
356
  Running `compozy fix-reviews` with no flags opens the interactive form automatically.
341
357
 
342
- | Flag | Default | Description |
343
- | --- | --- | --- |
344
- | `--name` | | Workflow name |
345
- | `--round` | `0` | Round number (latest if omitted) |
346
- | `--reviews-dir` | | Override review directory path |
347
- | `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
348
- | `--model` | *(per IDE)* | Model override |
349
- | `--batch-size` | `1` | Issues per batch |
350
- | `--concurrent` | `1` | Parallel batches |
351
- | `--grouped` | `false` | Generate grouped issue summaries |
352
- | `--include-resolved` | `false` | Re-process resolved issues |
353
- | `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
354
- | `--timeout` | `10m` | Activity timeout per job |
355
- | `--max-retries` | `0` | Retry failed jobs N times |
356
- | `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
357
- | `--tail-lines` | `30` | Log lines shown per job in UI |
358
- | `--add-dir` | | Additional directories to allow (repeatable) |
359
- | `--auto-commit` | `false` | Auto-commit after each batch |
360
- | `--dry-run` | `false` | Preview prompts without executing |
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 |
361
377
 
362
378
  </details>
363
379
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@compozy/cli",
3
3
  "type": "module",
4
- "version": "0.1.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.1_darwin_arm64.tar.gz",
31
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.1/compozy_0.1.1_darwin_arm64.tar.gz",
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": "409f6227202f1bcb68043db8bc83596cbb19c6cfc23372a8b1572556f3d355a6"
38
+ "digest": "57c78066e4db73ffa0c5b53eedda98098cc34bcdd0d615869d83f3735485e839"
39
39
  },
40
- "wrappedIn": "compozy_0.1.1_darwin_arm64"
40
+ "wrappedIn": "compozy_0.1.3_darwin_arm64"
41
41
  },
42
42
  "darwin-x64": {
43
- "name": "compozy_0.1.1_darwin_x86_64.tar.gz",
44
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.1/compozy_0.1.1_darwin_x86_64.tar.gz",
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": "adebad59585fc44280b3ba856fa4017af5b26d29b300aac1169af7d0403a4593"
51
+ "digest": "cae8eb365d082c665c071f6538b94b71fef63596f40c399245ccc6027a0569fc"
52
52
  },
53
- "wrappedIn": "compozy_0.1.1_darwin_x86_64"
53
+ "wrappedIn": "compozy_0.1.3_darwin_x86_64"
54
54
  },
55
55
  "linux-arm64": {
56
- "name": "compozy_0.1.1_linux_arm64.tar.gz",
57
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.1/compozy_0.1.1_linux_arm64.tar.gz",
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": "1862ae5939045bb5ff94ddda895eaecdc5d252b97a7f554931bc51676db33efa"
64
+ "digest": "c8c50c37bb5e7c4f9656340274a0d9a27ff9345fe71eee33869a32071e4f9bf0"
65
65
  },
66
- "wrappedIn": "compozy_0.1.1_linux_arm64"
66
+ "wrappedIn": "compozy_0.1.3_linux_arm64"
67
67
  },
68
68
  "linux-x64": {
69
- "name": "compozy_0.1.1_linux_x86_64.tar.gz",
70
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.1/compozy_0.1.1_linux_x86_64.tar.gz",
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": "c04f42fa77e98f4761388d29eb2606a1108e1ab990c506f60c5fd6a2cdd7cbe0"
77
+ "digest": "3cdf82b58e3826ca5516f86f0cf3330a494888f59f9ac7ca7a6b182860893741"
78
78
  },
79
- "wrappedIn": "compozy_0.1.1_linux_x86_64"
79
+ "wrappedIn": "compozy_0.1.3_linux_x86_64"
80
80
  },
81
81
  "win32-x64": {
82
- "name": "compozy_0.1.1_windows_x86_64.zip",
83
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.1/compozy_0.1.1_windows_x86_64.zip",
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": "c288decdc04ab60c40e74efd12dc53587395f8c222b9253f9e653e2e1943ed6a"
90
+ "digest": "18e411599601609604c361f3fe6977b9a74a7cc2176ad9fd67093d873b6a92fe"
91
91
  },
92
- "wrappedIn": "compozy_0.1.1_windows_x86_64"
92
+ "wrappedIn": "compozy_0.1.3_windows_x86_64"
93
93
  }
94
94
  }
95
95
  }