@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.
Files changed (2) hide show
  1. package/README.md +122 -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.
@@ -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
- compozy setup Install skills (once per project)
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 --all --yes
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 user-auth
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 | Purpose |
191
- | --- | --- |
192
- | `cy-create-prd` | Interactive brainstorming → Product Requirements Document with ADRs |
193
- | `cy-create-techspec` | PRD → Technical Specification with architecture exploration |
194
- | `cy-create-tasks` | PRD + TechSpec → Independently implementable task files |
195
- | `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 |
196
185
  | `cy-workflow-memory` | Maintains cross-task context so agents pick up where the last one left off |
197
- | `cy-review-round` | Comprehensive code review → structured issue files |
198
- | `cy-fix-reviews` | Triage, fix, verify, and resolve review issues |
199
- | `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 |
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 | Scope | What goes here |
208
- | --- | --- | --- |
209
- | `MEMORY.md` | Cross-task, shared | Architecture decisions, discovered patterns, open risks, handoffs between tasks |
210
- | `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 |
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 *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.
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`) — 6 agents that can run tasks:
217
+ **Execution** (`compozy start`, `compozy fix-reviews`) — ACP-capable runtimes that can run tasks:
229
218
 
230
- | Agent | `--ide` flag |
231
- | --- | --- |
232
- | Claude Code | `claude` |
233
- | Codex | `codex` |
234
- | Cursor | `cursor` |
235
- | Droid | `droid` |
236
- | OpenCode | `opencode` |
237
- | 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` |
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** *(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.
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 | Default | Description |
256
- | --- | --- | --- |
257
- | `--agent`, `-a` | | Target agent name (repeatable) |
258
- | `--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) |
259
249
  | `--global`, `-g` | `false` | Install to user directory instead of project |
260
- | `--copy` | `false` | Copy files instead of symlinking |
261
- | `--list`, `-l` | `false` | List bundled skills without installing |
262
- | `--yes`, `-y` | `false` | Skip confirmation prompts |
263
- | `--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 |
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 | Default | Description |
275
- | --- | --- | --- |
276
- | `--root-dir` | `.compozy/tasks` | Workflow root to scan recursively |
277
- | `--name` | | Restrict migration to one workflow name |
278
- | `--tasks-dir` | | Restrict migration to one task workflow directory |
279
- | `--reviews-dir` | | Restrict migration to one review round directory |
280
- | `--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 |
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 | Default | Description |
292
- | --- | --- | --- |
293
- | `--root-dir` | `.compozy/tasks` | Workflow root to scan |
294
- | `--name` | | Restrict sync to one workflow name |
295
- | `--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 |
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 | Default | Description |
309
- | --- | --- | --- |
310
- | `--name` | | Workflow name (`.compozy/tasks/<name>`) |
311
- | `--tasks-dir` | | Path to tasks directory |
312
- | `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
313
- | `--model` | *(per IDE)* | Model override |
314
- | `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
315
- | `--timeout` | `10m` | Activity timeout per job |
316
- | `--max-retries` | `0` | Retry failed jobs N times |
317
- | `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
318
- | `--tail-lines` | `30` | Log lines shown per job in UI |
319
- | `--add-dir` | | Additional directories to allow (repeatable) |
320
- | `--auto-commit` | `false` | Auto-commit after each task |
321
- | `--include-completed` | `false` | Re-run completed tasks |
322
- | `--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 |
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 | Default | Description |
336
- | --- | --- | --- |
337
- | `--provider` | | Review provider (`coderabbit`, etc.) |
338
- | `--pr` | | Pull request number |
339
- | `--name` | | Workflow name |
340
- | `--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) |
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 | Default | Description |
354
- | --- | --- | --- |
355
- | `--name` | | Workflow name |
356
- | `--round` | `0` | Round number (latest if omitted) |
357
- | `--reviews-dir` | | Override review directory path |
358
- | `--ide` | `codex` | Agent: `claude`, `codex`, `cursor`, `droid`, `opencode`, `pi` |
359
- | `--model` | *(per IDE)* | Model override |
360
- | `--batch-size` | `1` | Issues per batch |
361
- | `--concurrent` | `1` | Parallel batches |
362
- | `--grouped` | `false` | Generate grouped issue summaries |
363
- | `--include-resolved` | `false` | Re-process resolved issues |
364
- | `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
365
- | `--timeout` | `10m` | Activity timeout per job |
366
- | `--max-retries` | `0` | Retry failed jobs N times |
367
- | `--retry-backoff-multiplier` | `1.5` | Timeout multiplier per retry |
368
- | `--tail-lines` | `30` | Log lines shown per job in UI |
369
- | `--add-dir` | | Additional directories to allow (repeatable) |
370
- | `--auto-commit` | `false` | Auto-commit after each batch |
371
- | `--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 |
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.2",
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.2_darwin_arm64.tar.gz",
31
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.2/compozy_0.1.2_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": "d9f36c95f116c219c1b885cd59ee563d9c7353c0c6a3e25ea4a2b0b3779950e1"
38
+ "digest": "57c78066e4db73ffa0c5b53eedda98098cc34bcdd0d615869d83f3735485e839"
39
39
  },
40
- "wrappedIn": "compozy_0.1.2_darwin_arm64"
40
+ "wrappedIn": "compozy_0.1.3_darwin_arm64"
41
41
  },
42
42
  "darwin-x64": {
43
- "name": "compozy_0.1.2_darwin_x86_64.tar.gz",
44
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.2/compozy_0.1.2_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": "e94546deb70c6ef0de0dd49e6db1cd96329028a8548683e2b9acd4273f88bf88"
51
+ "digest": "cae8eb365d082c665c071f6538b94b71fef63596f40c399245ccc6027a0569fc"
52
52
  },
53
- "wrappedIn": "compozy_0.1.2_darwin_x86_64"
53
+ "wrappedIn": "compozy_0.1.3_darwin_x86_64"
54
54
  },
55
55
  "linux-arm64": {
56
- "name": "compozy_0.1.2_linux_arm64.tar.gz",
57
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.2/compozy_0.1.2_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": "1b8268f612ddee6763b868a9b548bdbc5ac2cb36cdde0e39b3af70785be19936"
64
+ "digest": "c8c50c37bb5e7c4f9656340274a0d9a27ff9345fe71eee33869a32071e4f9bf0"
65
65
  },
66
- "wrappedIn": "compozy_0.1.2_linux_arm64"
66
+ "wrappedIn": "compozy_0.1.3_linux_arm64"
67
67
  },
68
68
  "linux-x64": {
69
- "name": "compozy_0.1.2_linux_x86_64.tar.gz",
70
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.2/compozy_0.1.2_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": "c5c1755a4f68f47631776a71707f417bcfed15345a3340d27a40d6d90c0353cb"
77
+ "digest": "3cdf82b58e3826ca5516f86f0cf3330a494888f59f9ac7ca7a6b182860893741"
78
78
  },
79
- "wrappedIn": "compozy_0.1.2_linux_x86_64"
79
+ "wrappedIn": "compozy_0.1.3_linux_x86_64"
80
80
  },
81
81
  "win32-x64": {
82
- "name": "compozy_0.1.2_windows_x86_64.zip",
83
- "url": "https://github.com/compozy/compozy/releases/download/v0.1.2/compozy_0.1.2_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": "20f481a3020f561c378db2fa0595050c0e6a3b14e87d75547f71a5281bbb9525"
90
+ "digest": "18e411599601609604c361f3fe6977b9a74a7cc2176ad9fd67093d873b6a92fe"
91
91
  },
92
- "wrappedIn": "compozy_0.1.2_windows_x86_64"
92
+ "wrappedIn": "compozy_0.1.3_windows_x86_64"
93
93
  }
94
94
  }
95
95
  }