create-vasvibe 2.2.0 → 2.3.1
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 +102 -19
- package/package.json +2 -2
- package/template/.agents/workflows/explorer.md +78 -0
- package/template/.agents/workflows/logger.md +117 -0
- package/template/.claude/settings.local.json +3 -1
- package/template/.opencode/agents/explorer.md +138 -0
- package/template/.opencode/agents/logger.md +143 -0
- package/template/.opencode/agents/orchestrator.md +7 -3
- package/template/QUICK-START.md +17 -9
- package/template/README.md +609 -161
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Pipeline Coordinator — runs phase-gated multi-agent pipelines: /plan-project (planning), /build-feature (implementation), /test-feature (testing), /harden-release (hardening), plus /deliver-feature, /release, /start-fix, /security-audit, /daily-standup. Invoke to run a full development workflow and enforce phase gates rather than calling individual agents.
|
|
3
|
-
---
|
|
4
1
|
# Orchestrator Agent
|
|
5
2
|
|
|
6
3
|
## Role
|
|
@@ -10,6 +7,13 @@ Pipeline Coordinator — menerima high-level command, menjalankan agent pipeline
|
|
|
10
7
|
|
|
11
8
|
## Pipelines
|
|
12
9
|
|
|
10
|
+
### 🔍 Onboarding — `/explore-codebase [subfolder]`
|
|
11
|
+
> Pelajari project existing di `codes/` sebelum mulai pengerjaan.
|
|
12
|
+
1. Invoke **Explorer** → baca codebase, hasilkan `project_overview.md` + `state/knowledge_base/codebase/inventory.md` + update `state/context.json`
|
|
13
|
+
2. **CHECKPOINT:** Tampilkan ringkasan temuan (tech stack, fitur implemented, gap) ke human
|
|
14
|
+
3. Human konfirmasi atau koreksi overview
|
|
15
|
+
4. Arahkan ke pipeline berikutnya sesuai kebutuhan: `/build-feature`, `/start-fix`, atau `/plan-project`
|
|
16
|
+
|
|
13
17
|
### 🟦 Fase 1 — `/plan-project "[Project Idea]"`
|
|
14
18
|
> Hasilkan semua blueprint (acuan) sebelum coding apapun.
|
|
15
19
|
0. **Discovery (INTERAKTIF, di thread utama)** → wawancara human, hasilkan `state/knowledge_base/requirements/requirements.md`. **JANGAN delegasikan ke subagent** — dialog tanya-jawab harus di thread utama.
|
package/template/QUICK-START.md
CHANGED
|
@@ -100,17 +100,25 @@ Menjalankan hardening (security audit + reliability/load test), update CHANGELOG
|
|
|
100
100
|
## 5. Di Mana Semuanya?
|
|
101
101
|
|
|
102
102
|
```
|
|
103
|
-
project_overview.md
|
|
104
|
-
specifications/
|
|
105
|
-
state/
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
103
|
+
project_overview.md → Setting proyek + WORK_DEPTH
|
|
104
|
+
specifications/ → Requirements, API Contract, user stories
|
|
105
|
+
state/ → Workspace state & knowledge base
|
|
106
|
+
├── workspace-manifest.json → Skill + MCP yang diinginkan (Toolsmith)
|
|
107
|
+
├── context.json → Session continuity (status project saat ini)
|
|
108
|
+
├── agent_handoff.json → Handoff terakhir antar-agen
|
|
109
|
+
└── knowledge_base/ → Acuan: architecture, data-model, design-system, security, ADR
|
|
110
|
+
codes/ → Source code (Backend/Frontend/Fullstack)
|
|
111
|
+
tests/ → E2E test (Tester)
|
|
112
|
+
task/ → Task list + log per task
|
|
113
|
+
agent/workflows/ → Definisi agen (source of truth)
|
|
114
|
+
agent/workflows/_shared/ → Phases, work-depth, change-management, git-workflow, state-management
|
|
112
115
|
```
|
|
113
116
|
|
|
117
|
+
**📌 Penting:** `state/workspace-manifest.json` harus approved di Fase 1 setelah tech stack diketahui.
|
|
118
|
+
Jangan ganti tool atau sesuaikan skill/MCP tanpa update manifest terlebih dahulu (run `/setup-workspace sync`).
|
|
119
|
+
|
|
120
|
+
👉 **Dokumentasi lengkap folder `state/`:** Lihat README.md section **📊 Folder `state/`** untuk detail tentang workflow, aturan, dan contoh interaksi antar-agen.
|
|
121
|
+
|
|
114
122
|
---
|
|
115
123
|
|
|
116
124
|
## 6. Tips
|