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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Setiap Agent memiliki **system instruction** dan dapat dipanggil via slash command.
4
4
 
5
- **Total: 18 Specialized Agents**
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
 
@@ -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 setting proyek + WORK_DEPTH
103
- specifications/ user story + API Contract (Analyst)
104
- state/knowledge_base/ acuan: architecture, data-model, design-system, security, decisions (ADR)
105
- codes/ source code (Backend/Frontend/Fullstack)
106
- tests/ E2E test (Tester)
107
- task/ task list + log per task
108
- agent/workflows/ definisi agen (source of truth)
109
- agent/workflows/_shared/ phases.md, work-depth.md, change-management.md
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