@agile-vibe-coding/avc 0.3.2 → 0.3.4
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 +38 -6
- package/cli/seed-processor.js +0 -1
- package/kanban/client/dist/assets/index-BfLDUxPS.js +353 -0
- package/kanban/client/dist/assets/index-C7W_e4ik.css +1 -0
- package/kanban/client/dist/index.html +2 -2
- package/kanban/client/src/App.jsx +24 -3
- package/kanban/client/src/components/ceremony/SeedModal.jsx +174 -0
- package/kanban/client/src/components/kanban/CardDetailModal.jsx +1 -1
- package/kanban/client/src/components/kanban/SeedButton.jsx +32 -165
- package/kanban/client/src/components/process/ProcessMonitorBar.jsx +4 -0
- package/kanban/client/src/store/seedStore.js +100 -0
- package/package.json +1 -1
- package/kanban/client/dist/assets/index-D_KC5EQT.css +0 -1
- package/kanban/client/dist/assets/index-DjY5zqW7.js +0 -351
package/README.md
CHANGED
|
@@ -4,6 +4,39 @@
|
|
|
4
4
|
|
|
5
5
|
AVC is a toolkit — combining a command-line interface with an interactive web-based kanban board — that implements the principles of the [Agile Vibe Coding Manifesto](https://agilevibecoding.org). It provides ceremonies, assets, and validation workflows that guide AI coding agents toward coherent, long-term software delivery — shaping context, constraints, and verification so that LLM limitations don't silently degrade your project.
|
|
6
6
|
|
|
7
|
+
> **PROJECT STATUS — EARLY BETA**
|
|
8
|
+
>
|
|
9
|
+
> AVC structures AI-assisted development through **ceremonies** — guided workflows that decompose project scope into traceable, validated work items before any code is written. The goal is structured, auditable AI coding aligned with the [Agile Vibe Coding Principles](https://agilevibecoding.org). Ceremony status:
|
|
10
|
+
>
|
|
11
|
+
> | Ceremony | Status | Notes |
|
|
12
|
+
> |----------|--------|-------|
|
|
13
|
+
> | **Sponsor Call** | Pre-production | Functional, tested across multiple projects and LLM providers |
|
|
14
|
+
> | **Sprint Planning** | Pre-production | Functional, includes decomposition, validation, context generation, and scaffolding |
|
|
15
|
+
> | **Seed** | Under development | Task/subtask decomposition works, validation loop in progress |
|
|
16
|
+
> | **Run** | Under development | Worktree lifecycle and code generation designed, not yet production-tested |
|
|
17
|
+
>
|
|
18
|
+
> ### What We Need From Beta Testers
|
|
19
|
+
>
|
|
20
|
+
> If you try **Sponsor Call** or **Sprint Planning**, we'd appreciate feedback on:
|
|
21
|
+
>
|
|
22
|
+
> - **Quality of generated documentation** — Does the `doc.md` accurately capture your project? Are there hallucinations or missing sections?
|
|
23
|
+
> - **Decomposition accuracy** — Do the Epics and Stories make sense for your project? Are there scope overlaps, missing features, or over-decomposition?
|
|
24
|
+
> - **Dependency correctness** — Are the dependency chains between epics/stories logical? Can they be implemented in the computed order?
|
|
25
|
+
> - **Validation usefulness** — Do the micro-check scores and auto-fixes improve quality, or do they feel like noise?
|
|
26
|
+
> - **Model/provider experience** — Which provider worked best for your project size and complexity?
|
|
27
|
+
>
|
|
28
|
+
> Report bugs, feature requests, and ideas at [github.com/NachoColl/agilevibecoding/issues](https://github.com/NachoColl/agilevibecoding/issues) — all feedback from early testers helps shape the tool.
|
|
29
|
+
>
|
|
30
|
+
> ### Model Setup
|
|
31
|
+
>
|
|
32
|
+
> AVC requires at least one LLM provider API key. After running `/init`, go to **Settings > API Keys** in the kanban board to add your key.
|
|
33
|
+
>
|
|
34
|
+
> - **Claude** (Anthropic), **Gemini** (Google), **OpenAI** — production-grade cloud providers. Best quality and speed.
|
|
35
|
+
> - **Xiaomi MiMo** — proving to be very cost-efficient. MiMo V2 Pro ($1/$3 per 1M tokens) handles decomposition and documentation well. MiMo V2 Flash ($0.09/$0.29) works for validation. A full Sprint Planning ceremony costs ~$0.05-0.15. Get a key at [platform.xiaomimimo.com](https://platform.xiaomimimo.com).
|
|
36
|
+
> - **Local LLMs** (LM Studio / Ollama) — supported but **very slow on regular laptops** (a Sprint Planning ceremony can take 30+ minutes vs 3-5 minutes with cloud providers). Useful for experimentation without API costs.
|
|
37
|
+
>
|
|
38
|
+
> AVC auto-detects which provider has a key and configures all ceremony stages accordingly — you only need one key to get started.
|
|
39
|
+
|
|
7
40
|
## How to Install
|
|
8
41
|
|
|
9
42
|
```bash
|
|
@@ -18,12 +51,11 @@ avc
|
|
|
18
51
|
|
|
19
52
|
This launches the AVC interactive CLI. From there:
|
|
20
53
|
|
|
21
|
-
1. Run `/init` to initialize AVC in your project
|
|
22
|
-
2.
|
|
23
|
-
3.
|
|
24
|
-
4.
|
|
25
|
-
5.
|
|
26
|
-
6. Use **Seed** to break Stories into Tasks, then **Run** to implement code
|
|
54
|
+
1. Run `/init` to initialize AVC in your project — this creates the `.avc/` config directory, `.env` for API keys, and automatically launches the kanban board at `http://localhost:4174`
|
|
55
|
+
2. From the kanban board, configure your LLM provider in **Settings** (API keys, ceremony models)
|
|
56
|
+
3. Start the **Sponsor Call** ceremony to define your project scope
|
|
57
|
+
4. Run **Sprint Planning** to decompose into Epics and Stories
|
|
58
|
+
5. Use **Seed** to break Stories into Tasks, then **Run** to implement code
|
|
27
59
|
|
|
28
60
|
AVC auto-detects available API keys and switches ceremony models accordingly — if only one provider key is set, all ceremonies use that provider automatically.
|
|
29
61
|
|