create-vasvibe 2.1.0 → 2.2.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/agents/toolsmith/agent.json +44 -0
- package/template/.agents/workflows/setup-workspace.md +21 -0
- package/template/.claude/agents/orchestrator.md +5 -0
- package/template/.claude/agents/toolsmith.md +81 -0
- package/template/.claude/commands/setup-workspace.md +22 -0
- package/template/.claude/settings.local.json +6 -1
- package/template/.github/prompts/toolsmith.prompt.md +46 -0
- package/template/.opencode/agents/orchestrator.md +5 -0
- package/template/.opencode/agents/toolsmith.md +81 -0
- package/template/.opencode/commands/setup-workspace.md +21 -0
- package/template/AGENT_PERSONAS.md +33 -3
- package/template/QUICK-START.md +18 -8
- package/template/README.md +609 -161
- package/template/agent/workflows/_shared/phases.md +2 -0
- package/template/agent/workflows/orchestrator.md +5 -0
- package/template/agent/workflows/toolsmith.md +77 -0
- package/template/schemas/workspace-manifest.template.json +24 -0
- package/template/schemas/workspace-registry.json +94 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Setiap Agent memiliki **system instruction** dan dapat dipanggil via slash command.
|
|
4
4
|
|
|
5
|
-
**Total:
|
|
5
|
+
**Total: 19 Specialized Agents**
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,12 +12,12 @@ Pengerjaan proyek dibagi ke **4 fase** dengan gerbang human di tiap transisi. De
|
|
|
12
12
|
|
|
13
13
|
| Fase | Agen | Output (acuan) | Gate |
|
|
14
14
|
|------|------|----------------|------|
|
|
15
|
-
| **1 · Perencanaan** | **Discovery** (wawancara human), Initiator, SysArch, Data Architect, UX Designer, Security (Mode S), Analyst | requirements, overview, architecture, data-model, design-system, security-standards, **API Contract** | requirements sign-off → Blueprint disetujui |
|
|
15
|
+
| **1 · Perencanaan** | **Discovery** (wawancara human), Initiator, **Toolsmith**, SysArch, Data Architect, UX Designer, Security (Mode S), Analyst | requirements, overview, **workspace-manifest**, architecture, data-model, design-system, security-standards, **API Contract** | requirements sign-off → Blueprint disetujui |
|
|
16
16
|
| **2 · Pengerjaan** | Analyst (spec-lock), Backend Engineer ∥ Frontend Engineer (atau Developer @ `fast`), QA | kode + unit test + review | Code review lulus |
|
|
17
17
|
| **3 · Testing** | Tester, Fixer | E2E hijau | Fungsional hijau |
|
|
18
18
|
| **4 · Hardening** (per-release) | Security (A/B/C/D), Reliability, Fixer | security & reliability report | Siap produksi |
|
|
19
19
|
|
|
20
|
-
**Lintas fase:** PM (koordinasi), Orchestrator (gerbang fase), DevOps (CI/CD), Document (dokumentasi).
|
|
20
|
+
**Lintas fase:** PM (koordinasi), Orchestrator (gerbang fase), **Toolsmith (provisioning workspace agentik)**, DevOps (CI/CD), Document (dokumentasi).
|
|
21
21
|
|
|
22
22
|
**Komunikasi rigid — "No Silent Changes":** setiap perubahan dari user WAJIB ditulis ke dokumen acuan + dicatat (ADR jika perlu) + agen hilir di-notify. Detail: `agent/workflows/_shared/change-management.md`.
|
|
23
23
|
|
|
@@ -61,6 +61,36 @@ untuk admin."
|
|
|
61
61
|
|
|
62
62
|
---
|
|
63
63
|
|
|
64
|
+
### 1b. **Toolsmith Agent** (`/setup-workspace`) ⭐ NEW — Lintas Fase
|
|
65
|
+
**Role:** Agentic Workspace Provisioner
|
|
66
|
+
|
|
67
|
+
**Capabilities:**
|
|
68
|
+
- ✅ Menyiapkan **perkakas si AI agent** (skills + MCP) — bukan infra produk (itu DevOps)
|
|
69
|
+
- ✅ Memutuskan skill/MCP dari tech stack (hybrid: registry kurasi `schemas/workspace-registry.json` + augmentasi `find-skills`)
|
|
70
|
+
- ✅ Menulis **MCP config declarative** per tool: `.mcp.json` (Claude), `opencode.json` (OpenCode), `.vscode/mcp.json` (Copilot), `.agents/mcp.json` (Antigravity)
|
|
71
|
+
- ✅ Install skills ke `skillsDir` tiap platform via `npx skills add`
|
|
72
|
+
- ✅ **Re-callable saat pindah tool** — manifest persist, tinggal re-apply ke format tool baru (mode `switch`)
|
|
73
|
+
|
|
74
|
+
**Mode:** `init` (provisioning awal) · `switch` (pindah tool) · `sync` (perbaiki drift)
|
|
75
|
+
|
|
76
|
+
**Input Example:**
|
|
77
|
+
```
|
|
78
|
+
/setup-workspace init
|
|
79
|
+
/setup-workspace switch tool=opencode # saat pindah dari Claude Code ke OpenCode
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Output:**
|
|
83
|
+
- `state/workspace-manifest.json` (desired-state: daftar skill + MCP, platform-agnostic)
|
|
84
|
+
- Config MCP per tool + skills terpasang
|
|
85
|
+
|
|
86
|
+
**👤 Human Task:**
|
|
87
|
+
- Review ringkasan skill/MCP sebelum apply
|
|
88
|
+
- Isi env var sensitif (mis. `POSTGRES_URL`) yang ditulis sebagai placeholder `${VAR}`
|
|
89
|
+
|
|
90
|
+
⚠️ Otomatis dipanggil Orchestrator di Fase 1 (setelah tech stack) & Fase 2 (sebelum coding), tapi bisa dipanggil manual kapan saja.
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
64
94
|
### 2. **PM Agent** (`/pm`) ⭐ NEW
|
|
65
95
|
**Role:** Project Manager & Task Coordinator
|
|
66
96
|
|
package/template/QUICK-START.md
CHANGED
|
@@ -73,6 +73,7 @@ Menjalankan hardening (security audit + reliability/load test), update CHANGELOG
|
|
|
73
73
|
| Command | Fase | Fungsi |
|
|
74
74
|
|---------|------|--------|
|
|
75
75
|
| `/plan-project "[ide]"` | 🟦 Perencanaan | Buat semua blueprint/acuan |
|
|
76
|
+
| `/setup-workspace [init\|switch\|sync]` | lintas fase | Install skill + MCP untuk tool AI (re-callable saat pindah tool) |
|
|
76
77
|
| `/build-feature "[fitur]" [depth=]` | 🟩 Pengerjaan | Implementasi satu fitur |
|
|
77
78
|
| `/test-feature "[fitur]"` | 🟨 Testing | E2E test fungsional |
|
|
78
79
|
| `/harden-release "[versi]"` | 🟧 Hardening | Security + reliability audit |
|
|
@@ -99,16 +100,25 @@ Menjalankan hardening (security audit + reliability/load test), update CHANGELOG
|
|
|
99
100
|
## 5. Di Mana Semuanya?
|
|
100
101
|
|
|
101
102
|
```
|
|
102
|
-
project_overview.md
|
|
103
|
-
specifications/
|
|
104
|
-
state/
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
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
|
|
110
115
|
```
|
|
111
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
|
+
|
|
112
122
|
---
|
|
113
123
|
|
|
114
124
|
## 6. Tips
|