claudio-cli-darwin-x64 0.1.32 → 0.1.34
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 +17 -2
- package/claudio-cli +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,19 @@ Install it, log in once, and you've got a local orchestrator that can plan, buil
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
pnpm add -g claudio-cli@latest
|
|
12
|
+
pnpm add -g claudio-cli@latest
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g claudio-cli@latest
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
or
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
yarn global add claudio-cli@latest
|
|
13
25
|
```
|
|
14
26
|
|
|
15
27
|
Then:
|
|
@@ -23,7 +35,7 @@ The CLI walks you through `gh` + Claude Code auth on first run. You never paste
|
|
|
23
35
|
## What it does
|
|
24
36
|
|
|
25
37
|
### Feature pipelines
|
|
26
|
-
Describe a task. Claudio runs **PM → Dev → Review → QA → Merge** as a real, observable pipeline against a real GitHub repo. Every stage is a specialized agent; every stage emits structured progress that streams into a live TUI. The output is a merged PR, not a chat transcript.
|
|
38
|
+
Describe a task. Claudio runs **PM → Designer → Dev → Review → QA → Merge** as a real, observable pipeline against a real GitHub repo. Every stage is a specialized agent; every stage emits structured progress that streams into a live TUI. The output is a merged PR, not a chat transcript.
|
|
27
39
|
|
|
28
40
|
Two ways to run them:
|
|
29
41
|
- **Work mode** — pick a batch of tasks, Claudio runs them in parallel (1–5 concurrent), re-plans as slots free up.
|
|
@@ -41,6 +53,9 @@ Point it at any PR URL. Claudio drafts inline comments in a natural reviewer voi
|
|
|
41
53
|
- **Quick Fix** — deploy a focused fix agent that commits AND pushes the change directly to the PR's head branch. Works from any directory, even if you've never cloned the PR's repo.
|
|
42
54
|
- **Skip** — not every draft is worth sending.
|
|
43
55
|
|
|
56
|
+
### Designer
|
|
57
|
+
Describe a screen, a flow, or a whole section of your product and Claudio produces a real design for it — using your project's own colors, typography, spacing, and brand voice, not generic sample-app aesthetics. Works as single-shot or autopilot mode that keeps designing the next item on your list until it's done.
|
|
58
|
+
|
|
44
59
|
### Memory Bank
|
|
45
60
|
Build a distilled project brief that any future agent can read as context. Captures the design system, the service layout, the code conventions, the "why" behind decisions — in a format the orchestrator injects into later prompts so your agents stop re-discovering the codebase on every run.
|
|
46
61
|
|
package/claudio-cli
CHANGED
|
Binary file
|