create-vasvibe 1.0.0 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vasvibe",
3
- "version": "1.0.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
+ }
@@ -4,12 +4,12 @@
4
4
  **INSTRUCTION STEPS:**
5
5
  1. **Load Context:**
6
6
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dikerjakan.
7
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
7
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
8
8
  - Baca file spesifikasi target (misal: `specifications/001_...md`).
9
9
 
10
10
  2. **Update Task Status - START (CRITICAL):**
11
11
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `development` dengan `☑`.
12
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
12
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
13
13
  ```
14
14
  | [YYYY-MM-DD HH:MM] | dev agent | development started | - |
15
15
  ```
@@ -61,7 +61,7 @@
61
61
 
62
62
  6. **Update Task Status - COMPLETE (CRITICAL):**
63
63
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`.
64
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
64
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
65
65
  ```
66
66
  | [YYYY-MM-DD HH:MM] | dev agent | ready to test | [catatan penting jika ada] |
67
67
  ```
@@ -13,11 +13,11 @@
13
13
  - Mengapa? Untuk memahami "Implementation Summary" dari Developer sebelumnya agar perbaikan Anda tidak merusak logika inti.
14
14
  - Baca source code saat ini di folder `codes/`.
15
15
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan diperbaiki.
16
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
16
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
17
17
 
18
18
  2. **Update Task Status - START (CRITICAL):**
19
19
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `fixing` dengan `☑`.
20
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
20
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
21
21
  ```
22
22
  | [YYYY-MM-DD HH:MM] | fixer agent | fixing started | Issues: [ringkasan issue] |
23
23
  ```
@@ -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).
@@ -58,7 +59,7 @@
58
59
 
59
60
  5. **Update Task Status - COMPLETE (CRITICAL):**
60
61
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`, hapus tanda `fixing`.
61
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
62
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
62
63
  ```
63
64
  | [YYYY-MM-DD HH:MM] | fixer agent | fix complete, ready to test | [ringkasan perbaikan] |
64
65
  ```
@@ -67,7 +67,9 @@
67
67
  **Aturan checklist status:** Tandai kolom status saat ini dengan `☑` dan kolom lainnya dengan `☐`. Status yang sudah terlewati juga ditandai `☑`.
68
68
 
69
69
  5. **TASK DETAIL FILE:**
70
- Untuk setiap task, buat juga file detail di `task/[TASK-ID]_[nama-task]/task_detail.md` dengan format:
70
+ Untuk setiap task, lakukan hal berikut:
71
+ - **Cek Folder:** Pastikan folder `task/[TASK-ID]_[nama-task]/` tersedia. Jika belum, BUAT folder tersebut.
72
+ - Buat file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` dengan format:
71
73
 
72
74
  ```markdown
73
75
  # [TASK-ID] [Nama Task]
@@ -165,7 +167,7 @@
165
167
  11. **VALIDATION & QUALITY CHECK:**
166
168
  - Pastikan tidak ada task yang terlupakan dari spesifikasi yang sudah dibuat.
167
169
  - Pastikan prioritas task masuk akal dan sesuai dengan dependensi.
168
- - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/task_detail.md`.
170
+ - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`.
169
171
 
170
172
  **INPUT USER:**
171
173
  Contoh input yang mungkin diterima:
@@ -6,11 +6,11 @@
6
6
  - Baca file spesifikasi di `specifications/`.
7
7
  - Baca source code terkait di `codes/`.
8
8
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dites.
9
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
9
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
10
10
 
11
11
  2. **Update Task Status - START (CRITICAL):**
12
12
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `testing` dengan `☑`.
13
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
13
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
14
14
  ```
15
15
  | [YYYY-MM-DD HH:MM] | test agent | test created | - |
16
16
  ```
@@ -13,11 +13,11 @@ memory: project
13
13
  1. **Load Context:**
14
14
  - Baca file spesifikasi target (misal: `specifications/001_...md`).
15
15
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dikerjakan.
16
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
16
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
17
17
 
18
18
  2. **Update Task Status - START (CRITICAL):**
19
19
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `development` dengan `☑`.
20
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
20
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
21
21
  ```
22
22
  | [YYYY-MM-DD HH:MM] | dev agent | development started | - |
23
23
  ```
@@ -90,7 +90,7 @@ memory: project
90
90
 
91
91
  6. **Update Task Status - COMPLETE (CRITICAL):**
92
92
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`.
93
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
93
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
94
94
  ```
95
95
  | [YYYY-MM-DD HH:MM] | dev agent | ready to test | [catatan penting jika ada] |
96
96
  ```
@@ -13,11 +13,11 @@
13
13
  - Mengapa? Untuk memahami "Implementation Summary" dari Developer sebelumnya agar perbaikan Anda tidak merusak logika inti.
14
14
  - Baca source code saat ini di folder `codes/`.
15
15
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan diperbaiki.
16
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
16
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
17
17
 
18
18
  2. **Update Task Status - START (CRITICAL):**
19
19
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `fixing` dengan `☑`.
20
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
20
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
21
21
  ```
22
22
  | [YYYY-MM-DD HH:MM] | fixer agent | fixing started | Issues: [ringkasan issue] |
23
23
  ```
@@ -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).
@@ -80,7 +81,7 @@
80
81
 
81
82
  5. **Update Task Status - COMPLETE (CRITICAL):**
82
83
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`, hapus tanda `fixing`.
83
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
84
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
84
85
  ```
85
86
  | [YYYY-MM-DD HH:MM] | fixer agent | fix complete, ready to test | [ringkasan perbaikan] |
86
87
  ```
@@ -67,7 +67,9 @@
67
67
  **Aturan checklist status:** Tandai kolom status saat ini dengan `☑` dan kolom lainnya dengan `☐`. Status yang sudah terlewati juga ditandai `☑`.
68
68
 
69
69
  5. **TASK DETAIL FILE:**
70
- Untuk setiap task, buat juga file detail di `task/[TASK-ID]_[nama-task]/task_detail.md` dengan format:
70
+ Untuk setiap task, lakukan hal berikut:
71
+ - **Cek Folder:** Pastikan folder `task/[TASK-ID]_[nama-task]/` tersedia. Jika belum, BUAT folder tersebut.
72
+ - Buat file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` dengan format:
71
73
 
72
74
  ```markdown
73
75
  # [TASK-ID] [Nama Task]
@@ -165,7 +167,7 @@
165
167
  11. **VALIDATION & QUALITY CHECK:**
166
168
  - Pastikan tidak ada task yang terlupakan dari spesifikasi yang sudah dibuat.
167
169
  - Pastikan prioritas task masuk akal dan sesuai dengan dependensi.
168
- - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/task_detail.md`.
170
+ - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`.
169
171
 
170
172
  **INPUT USER:**
171
173
  Contoh input yang mungkin diterima:
@@ -6,11 +6,11 @@
6
6
  - Baca file spesifikasi di `specifications/`.
7
7
  - Baca source code terkait di `codes/`.
8
8
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dites.
9
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
9
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
10
10
 
11
11
  2. **Update Task Status - START (CRITICAL):**
12
12
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `testing` dengan `☑`.
13
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
13
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
14
14
  ```
15
15
  | [YYYY-MM-DD HH:MM] | test agent | test created | - |
16
16
  ```
@@ -4,12 +4,12 @@
4
4
  **INSTRUCTION STEPS:**
5
5
  1. **Load Context:**
6
6
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dikerjakan.
7
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
7
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
8
8
  - Baca file spesifikasi target (misal: `specifications/001_...md`).
9
9
 
10
10
  2. **Update Task Status - START (CRITICAL):**
11
11
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `development` dengan `☑`.
12
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
12
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
13
13
  ```
14
14
  | [YYYY-MM-DD HH:MM] | dev agent | development started | - |
15
15
  ```
@@ -61,7 +61,7 @@
61
61
 
62
62
  6. **Update Task Status - COMPLETE (CRITICAL):**
63
63
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`.
64
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
64
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
65
65
  ```
66
66
  | [YYYY-MM-DD HH:MM] | dev agent | ready to test | [catatan penting jika ada] |
67
67
  ```
@@ -13,11 +13,11 @@
13
13
  - Mengapa? Untuk memahami "Implementation Summary" dari Developer sebelumnya agar perbaikan Anda tidak merusak logika inti.
14
14
  - Baca source code saat ini di folder `codes/`.
15
15
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan diperbaiki.
16
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
16
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
17
17
 
18
18
  2. **Update Task Status - START (CRITICAL):**
19
19
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `fixing` dengan `☑`.
20
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
20
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
21
21
  ```
22
22
  | [YYYY-MM-DD HH:MM] | fixer agent | fixing started | Issues: [ringkasan issue] |
23
23
  ```
@@ -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).
@@ -58,7 +59,7 @@
58
59
 
59
60
  5. **Update Task Status - COMPLETE (CRITICAL):**
60
61
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`, hapus tanda `fixing`.
61
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
62
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
62
63
  ```
63
64
  | [YYYY-MM-DD HH:MM] | fixer agent | fix complete, ready to test | [ringkasan perbaikan] |
64
65
  ```
@@ -67,7 +67,9 @@
67
67
  **Aturan checklist status:** Tandai kolom status saat ini dengan `☑` dan kolom lainnya dengan `☐`. Status yang sudah terlewati juga ditandai `☑`.
68
68
 
69
69
  5. **TASK DETAIL FILE:**
70
- Untuk setiap task, buat juga file detail di `task/[TASK-ID]_[nama-task]/task_detail.md` dengan format:
70
+ Untuk setiap task, lakukan hal berikut:
71
+ - **Cek Folder:** Pastikan folder `task/[TASK-ID]_[nama-task]/` tersedia. Jika belum, BUAT folder tersebut.
72
+ - Buat file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` dengan format:
71
73
 
72
74
  ```markdown
73
75
  # [TASK-ID] [Nama Task]
@@ -165,7 +167,7 @@
165
167
  11. **VALIDATION & QUALITY CHECK:**
166
168
  - Pastikan tidak ada task yang terlupakan dari spesifikasi yang sudah dibuat.
167
169
  - Pastikan prioritas task masuk akal dan sesuai dengan dependensi.
168
- - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/task_detail.md`.
170
+ - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`.
169
171
 
170
172
  **INPUT USER:**
171
173
  Contoh input yang mungkin diterima:
@@ -6,11 +6,11 @@
6
6
  - Baca file spesifikasi di `specifications/`.
7
7
  - Baca source code terkait di `codes/`.
8
8
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dites.
9
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
9
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
10
10
 
11
11
  2. **Update Task Status - START (CRITICAL):**
12
12
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `testing` dengan `☑`.
13
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
13
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
14
14
  ```
15
15
  | [YYYY-MM-DD HH:MM] | test agent | test created | - |
16
16
  ```
@@ -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
  ```
@@ -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. Run tests untuk verify fix
414
- 8. **Update status:** `fixing` `ready_to_test` (back to Tester)
415
- 9. Create fixing log di `logs/fixing/fixing_003_booking_dp_bug.md`
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
 
@@ -8,13 +8,6 @@
8
8
  codes/*
9
9
  !codes/.gitkeep
10
10
 
11
- # Ignore all files in specifications folder (project specs)
12
- specifications/*
13
- !specifications/.gitkeep
14
-
15
- # Ignore all files in tests folder (test files)
16
- tests/*
17
- !tests/.gitkeep
18
11
 
19
12
  project_overview.md
20
13
  development_log.md
@@ -4,12 +4,12 @@
4
4
  **INSTRUCTION STEPS:**
5
5
  1. **Load Context:**
6
6
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dikerjakan.
7
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
7
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
8
8
  - Baca file spesifikasi target (misal: `specifications/001_...md`).
9
9
 
10
10
  2. **Update Task Status - START (CRITICAL):**
11
11
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `development` dengan `☑`.
12
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
12
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
13
13
  ```
14
14
  | [YYYY-MM-DD HH:MM] | dev agent | development started | - |
15
15
  ```
@@ -61,7 +61,7 @@
61
61
 
62
62
  6. **Update Task Status - COMPLETE (CRITICAL):**
63
63
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`.
64
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
64
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
65
65
  ```
66
66
  | [YYYY-MM-DD HH:MM] | dev agent | ready to test | [catatan penting jika ada] |
67
67
  ```
@@ -13,11 +13,11 @@
13
13
  - Mengapa? Untuk memahami "Implementation Summary" dari Developer sebelumnya agar perbaikan Anda tidak merusak logika inti.
14
14
  - Baca source code saat ini di folder `codes/`.
15
15
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan diperbaiki.
16
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
16
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
17
17
 
18
18
  2. **Update Task Status - START (CRITICAL):**
19
19
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `fixing` dengan `☑`.
20
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
20
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
21
21
  ```
22
22
  | [YYYY-MM-DD HH:MM] | fixer agent | fixing started | Issues: [ringkasan issue] |
23
23
  ```
@@ -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).
@@ -58,7 +59,7 @@
58
59
 
59
60
  5. **Update Task Status - COMPLETE (CRITICAL):**
60
61
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `ready_to_test` dengan `☑`, hapus tanda `fixing`.
61
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
62
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
62
63
  ```
63
64
  | [YYYY-MM-DD HH:MM] | fixer agent | fix complete, ready to test | [ringkasan perbaikan] |
64
65
  ```
@@ -67,7 +67,9 @@
67
67
  **Aturan checklist status:** Tandai kolom status saat ini dengan `☑` dan kolom lainnya dengan `☐`. Status yang sudah terlewati juga ditandai `☑`.
68
68
 
69
69
  5. **TASK DETAIL FILE:**
70
- Untuk setiap task, buat juga file detail di `task/[TASK-ID]_[nama-task]/task_detail.md` dengan format:
70
+ Untuk setiap task, lakukan hal berikut:
71
+ - **Cek Folder:** Pastikan folder `task/[TASK-ID]_[nama-task]/` tersedia. Jika belum, BUAT folder tersebut.
72
+ - Buat file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` dengan format:
71
73
 
72
74
  ```markdown
73
75
  # [TASK-ID] [Nama Task]
@@ -165,7 +167,7 @@
165
167
  11. **VALIDATION & QUALITY CHECK:**
166
168
  - Pastikan tidak ada task yang terlupakan dari spesifikasi yang sudah dibuat.
167
169
  - Pastikan prioritas task masuk akal dan sesuai dengan dependensi.
168
- - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/task_detail.md`.
170
+ - Pastikan setiap task memiliki file detail di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`.
169
171
 
170
172
  **INPUT USER:**
171
173
  Contoh input yang mungkin diterima:
@@ -6,11 +6,11 @@
6
6
  - Baca file spesifikasi di `specifications/`.
7
7
  - Baca source code terkait di `codes/`.
8
8
  - **BACA file `task/task_list.md`** untuk menemukan task yang akan dites.
9
- - Temukan file detail task di `task/[TASK-ID]_[nama-task]/task_detail.md` yang sesuai.
9
+ - Temukan file detail task di `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md` yang sesuai.
10
10
 
11
11
  2. **Update Task Status - START (CRITICAL):**
12
12
  - Di `task/task_list.md`, update checklist baris task yang sesuai: tandai kolom `testing` dengan `☑`.
13
- - Di file detail task `task/[TASK-ID]_[nama-task]/task_detail.md`, **APPEND** entry baru ke Status Log:
13
+ - Di file detail task `task/[TASK-ID]_[nama-task]/[TASK-ID]_[nama-task].md`, **APPEND** entry baru ke Status Log:
14
14
  ```
15
15
  | [YYYY-MM-DD HH:MM] | test agent | test created | - |
16
16
  ```