claudio-cli-linux-x64 0.1.31 → 0.1.32
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 +49 -8
- package/claudio-cli +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# claudio-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**You love Claude — so does Claudio.**
|
|
4
|
+
|
|
5
|
+
Claudio is a plug-and-play AI dev platform that runs on top of your existing [Claude Code](https://www.npmjs.com/package/@anthropic-ai/claude-code) subscription. No Anthropic API key to manage. No per-token API bill eating your budget while agents think. You bring your own Claude Code plan; Claudio wraps it in a terminal experience that orchestrates whole pipelines instead of one-off prompts — for a small flat subscription that costs a fraction of what API-billed dev tools charge for the same work.
|
|
6
|
+
|
|
7
|
+
Install it, log in once, and you've got a local orchestrator that can plan, build, review, QA, and ship real GitHub PRs — plus a handful of focused tools for the parts of your day that aren't "build a feature."
|
|
4
8
|
|
|
5
9
|
## Install
|
|
6
10
|
|
|
@@ -8,20 +12,55 @@ CLI for the [Claudio Pipe](https://claudiopipe.com) platform.
|
|
|
8
12
|
pnpm add -g claudio-cli@latest # or: npm install -g claudio-cli@latest | yarn global add claudio-cli@latest
|
|
9
13
|
```
|
|
10
14
|
|
|
11
|
-
|
|
15
|
+
Then:
|
|
12
16
|
|
|
13
17
|
```bash
|
|
14
18
|
claudio-cli
|
|
15
19
|
```
|
|
16
20
|
|
|
17
|
-
The CLI
|
|
21
|
+
The CLI walks you through `gh` + Claude Code auth on first run. You never paste an API key.
|
|
22
|
+
|
|
23
|
+
## What it does
|
|
24
|
+
|
|
25
|
+
### 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.
|
|
27
|
+
|
|
28
|
+
Two ways to run them:
|
|
29
|
+
- **Work mode** — pick a batch of tasks, Claudio runs them in parallel (1–5 concurrent), re-plans as slots free up.
|
|
30
|
+
- **One Shot** — single task, single focused archer firing a constellation of commits. Fastest path from "I want this" to "PR is up."
|
|
31
|
+
|
|
32
|
+
### Bug Hunt
|
|
33
|
+
Hand Claudio a bug report. It instruments the suspect code, reproduces the scenario, iterates up to 5 times adding more logs each round if the signal isn't enough, pins down the root cause, and lands a fix. Then it **strips all the instrumentation it added** so the PR is just the fix — no debug noise.
|
|
34
|
+
|
|
35
|
+
### PR Review
|
|
36
|
+
Point it at any PR URL. Claudio drafts inline comments in a natural reviewer voice (no robotic "This function should…" fingerprints), cross-references comments other reviewers already left so it doesn't duplicate feedback, and hands the list back to you in a per-comment flow:
|
|
37
|
+
|
|
38
|
+
- **Post** — drop the comment inline on GitHub.
|
|
39
|
+
- **View file** — open the commented line directly on GitHub.
|
|
40
|
+
- **Edit** — tweak the draft before posting.
|
|
41
|
+
- **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
|
+
- **Skip** — not every draft is worth sending.
|
|
43
|
+
|
|
44
|
+
### Memory Bank
|
|
45
|
+
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
|
+
|
|
47
|
+
### Imagination
|
|
48
|
+
Compares your product vision (`ROAD.md`) against the reality of your repo and generates net-new tasks that would close the gap. Two modes — "just dream up tasks" or "dream then execute." Great for mornings where you know there's *something* to do but can't name it.
|
|
49
|
+
|
|
50
|
+
## Why plug-and-play matters
|
|
51
|
+
|
|
52
|
+
Most AI dev tools bill per token. Every prompt, every retry, every "let me just check one more file" shows up on an invoice at retail API rates — plus the tool's markup on top. A full day of pipeline work can quietly run into double-digit dollars. A week of steady use, into real money.
|
|
53
|
+
|
|
54
|
+
Claudio is a flat, small subscription. No per-token meter, no surprise monthly bill, no quota anxiety mid-task. Your existing Claude Code plan keeps doing what it already does; Claudio just adds the pipelines and tools around it.
|
|
55
|
+
|
|
56
|
+
The number you pay us is **a fraction of what API-billed tools charge for equivalent work** — by design. If you already pay for Claude Code and you want pipelines instead of prompts, the math is embarrassingly in your favor.
|
|
18
57
|
|
|
19
58
|
## Requirements
|
|
20
59
|
|
|
21
|
-
- Node.js 18+ (used
|
|
22
|
-
- [Claude Code](https://www.npmjs.com/package/@anthropic-ai/claude-code) installed
|
|
60
|
+
- Node.js 18+ (only used by the install-time shim that resolves the native binary)
|
|
61
|
+
- [Claude Code](https://www.npmjs.com/package/@anthropic-ai/claude-code) installed globally — `npm i -g @anthropic-ai/claude-code`
|
|
23
62
|
- A Claude subscription (Pro, Max, or Team)
|
|
24
|
-
- [GitHub CLI (`gh`)](https://cli.github.com/) installed and authenticated
|
|
63
|
+
- [GitHub CLI (`gh`)](https://cli.github.com/) installed and authenticated — `gh auth login`
|
|
25
64
|
|
|
26
65
|
## Supported platforms
|
|
27
66
|
|
|
@@ -30,10 +69,12 @@ The CLI guides you through `gh` + Claude Code authentication on first run.
|
|
|
30
69
|
- Linux x64
|
|
31
70
|
- Windows x64
|
|
32
71
|
|
|
72
|
+
Each platform ships as a Bun-compiled native binary — no Node source on disk, no `sudo`, no codesigning dance. `npm install` picks the right one automatically.
|
|
73
|
+
|
|
33
74
|
## Links
|
|
34
75
|
|
|
35
|
-
- Website
|
|
36
|
-
- Issues / support
|
|
76
|
+
- Website — https://claudiopipe.com
|
|
77
|
+
- Issues / support — claudiopipe.com@gmail.com
|
|
37
78
|
|
|
38
79
|
## License
|
|
39
80
|
|
package/claudio-cli
CHANGED
|
Binary file
|