create-vasvibe 1.0.1 → 1.0.2
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/package.json +2 -2
- package/template/.claude/agents/fixer.md +1 -0
- package/template/.github/prompts/fixer.prompt.md +1 -0
- package/template/.opencode/commands/fixer.md +1 -0
- package/template/AGENT_PERSONAS.md +1 -1
- package/template/README.md +5 -3
- package/template/agent/workflows/fixer.md +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vasvibe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Scaffold a new project with VasVibe agents, prompts, and workflows preconfigured (Claude, OpenCode, GitHub Copilot).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
"url": "https://github.com/anomalyco/vas_vibe.git",
|
|
43
43
|
"directory": "packages/create-vasvibe"
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
- Analisis input error/bug dari user.
|
|
30
30
|
- Temukan akar masalah (*Root Cause*).
|
|
31
31
|
- Lakukan perbaikan pada kode (Modify file source code).
|
|
32
|
+
- **PENTING:** Lakukan update dokumen spesifikasi di direktori `specifications/` terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user. Pastikan dokumen spesifikasi merefleksikan perubahan atau perbaikan tersebut.
|
|
32
33
|
|
|
33
34
|
4. **FIXING LOG (STRICT FORMAT):**
|
|
34
35
|
- **Target Folder:** `task/[TASK-ID]_[nama-task]/` (sub-folder task yang sama).
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
- Analisis input error/bug dari user.
|
|
52
52
|
- Temukan akar masalah (*Root Cause*).
|
|
53
53
|
- Lakukan perbaikan pada kode (Modify file source code).
|
|
54
|
+
- **PENTING:** Lakukan update dokumen spesifikasi di direktori `specifications/` terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user. Pastikan dokumen spesifikasi merefleksikan perubahan atau perbaikan tersebut.
|
|
54
55
|
|
|
55
56
|
4. **FIXING LOG (STRICT FORMAT):**
|
|
56
57
|
- **Target Folder:** `task/[TASK-ID]_[nama-task]/` (sub-folder task yang sama).
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
- Analisis input error/bug dari user.
|
|
30
30
|
- Temukan akar masalah (*Root Cause*).
|
|
31
31
|
- Lakukan perbaikan pada kode (Modify file source code).
|
|
32
|
+
- **PENTING:** Lakukan update dokumen spesifikasi di direktori `specifications/` terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user. Pastikan dokumen spesifikasi merefleksikan perubahan atau perbaikan tersebut.
|
|
32
33
|
|
|
33
34
|
4. **FIXING LOG (STRICT FORMAT):**
|
|
34
35
|
- **Target Folder:** `task/[TASK-ID]_[nama-task]/` (sub-folder task yang sama).
|
|
@@ -275,7 +275,7 @@ Not green? → Iterate fix
|
|
|
275
275
|
↓
|
|
276
276
|
[Fixer] Update status: failed → fixing (set "Assigned To: Fixer Agent")
|
|
277
277
|
↓
|
|
278
|
-
[Fixer] Fix bugs → Create fixing log
|
|
278
|
+
[Fixer] Fix bugs → Update spesifikasi terkait fitur yang difixing (jika ada penyesuaian scope) → Create fixing log
|
|
279
279
|
↓
|
|
280
280
|
[Fixer] Update status: fixing → ready_to_test (back to Tester)
|
|
281
281
|
```
|
package/template/README.md
CHANGED
|
@@ -410,9 +410,10 @@ Reproduce steps:
|
|
|
410
410
|
4. Read related code files
|
|
411
411
|
5. Identify root cause
|
|
412
412
|
6. Apply fix
|
|
413
|
-
7.
|
|
414
|
-
8.
|
|
415
|
-
9.
|
|
413
|
+
7. **PENTING:** Lakukan update dokumen spesifikasi di direktori `specifications/` terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user.
|
|
414
|
+
8. Run tests untuk verify fix
|
|
415
|
+
9. **Update status:** `fixing` → `ready_to_test` (back to Tester)
|
|
416
|
+
10. Create fixing log di `logs/fixing/fixing_003_booking_dp_bug.md`
|
|
416
417
|
|
|
417
418
|
**👤 Human verify:**
|
|
418
419
|
- [ ] Bug fix works? (test manually)
|
|
@@ -919,6 +920,7 @@ Logs: [paste error logs dari production]"
|
|
|
919
920
|
1. Analyze production logs
|
|
920
921
|
2. Reproduce locally
|
|
921
922
|
3. Fix bug dengan minimal changes (hotfix approach)
|
|
923
|
+
4. Update dokumen spesifikasi terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user
|
|
922
924
|
4. Run regression tests
|
|
923
925
|
5. Create fixing log dengan deployment notes
|
|
924
926
|
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
- Analisis input error/bug dari user.
|
|
30
30
|
- Temukan akar masalah (*Root Cause*).
|
|
31
31
|
- Lakukan perbaikan pada kode (Modify file source code).
|
|
32
|
+
- **PENTING:** Lakukan update dokumen spesifikasi di direktori `specifications/` terkait fitur yang difixing sesuai dengan scope fixing yang diberikan oleh user. Pastikan dokumen spesifikasi merefleksikan perubahan atau perbaikan tersebut.
|
|
32
33
|
|
|
33
34
|
4. **FIXING LOG (STRICT FORMAT):**
|
|
34
35
|
- **Target Folder:** `task/[TASK-ID]_[nama-task]/` (sub-folder task yang sama).
|