@damphuquy/agent-init 1.4.3 → 2.0.0
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 +16 -9
- package/README.vi.md +12 -5
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +2 -0
- package/dist/config.js.map +1 -1
- package/package.json +1 -1
- package/templates/en/process/README.md +4 -0
- package/templates/en/process/_seeds/_GUIDE.md +13 -0
- package/templates/en/process/_seeds/pause-template.md.seed +106 -0
- package/templates/en/process/_seeds/task-template.md.seed +9 -1
- package/templates/en/process/context/all-context.md +1 -1
- package/templates/en/process/context/planning/all-planning.md +72 -16
- package/templates/en/process/context/tests/all-tests.md +87 -30
- package/templates/en/process/development-protocols/implementation-standards.md +103 -14
- package/templates/en/process/development-protocols/orchestration.md +88 -11
- package/templates/vi/process/README.md +4 -0
- package/templates/vi/process/_seeds/_GUIDE.md +13 -0
- package/templates/vi/process/_seeds/pause-template.md.seed +106 -0
- package/templates/vi/process/_seeds/task-template.md.seed +9 -1
- package/templates/vi/process/context/all-context.md +1 -1
- package/templates/vi/process/context/planning/all-planning.md +72 -16
- package/templates/vi/process/context/tests/all-tests.md +87 -30
- package/templates/vi/process/development-protocols/implementation-standards.md +104 -15
- package/templates/vi/process/development-protocols/orchestration.md +89 -12
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# agent-instructions (@damphuquy/agent-init)
|
|
2
2
|
|
|
3
|
-
> **AI Coding Agent Scaffolding & Orchestration System (RIPER-5 Framework)**
|
|
3
|
+
> **AI Coding Agent Scaffolding & Orchestration System v2.0 (RIPER-5 Framework)**
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<b>English</b> • <a href="README.vi.md">Tiếng Việt</a>
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
A structured scaffolding framework for AI Coding Agents following the **RIPER-5 Framework** — cleanly separated into three layers: `AGENTS.md` (project configuration), `.agents/` (agent behavioral controls), and `process/` (task execution and verification workflow).
|
|
11
|
+
A structured scaffolding framework for AI Coding Agents following the **RIPER-5 Framework v2.0** — cleanly separated into three layers: `AGENTS.md` (project configuration), `.agents/` (agent behavioral controls), and `process/` (task execution and verification workflow).
|
|
12
|
+
|
|
13
|
+
Featuring four core **v2.0 Engineering Protocols**:
|
|
14
|
+
* **Subagent Orchestration v2.0:** Parallel vertical slicing with zero write collision and reactive wakeup.
|
|
15
|
+
* **Implementation Standards v2.0:** Strict typing (zero `any`), domain purity, fail-fast boundary validation, and deterministic teardown.
|
|
16
|
+
* **Planning & Slicing Standards v2.0:** INVEST-compliant vertical slices (2–5 per task) with mandatory automated verifiers.
|
|
17
|
+
* **Testing Standards & Harness v2.0:** Deterministic test pyramid with frozen clocks, fixture factories, and strict mocking boundaries.
|
|
12
18
|
|
|
13
19
|
```bash
|
|
14
20
|
# Bootstrap immediately into your project (takes 30 seconds)
|
|
@@ -17,17 +23,18 @@ npx @damphuquy/agent-init .
|
|
|
17
23
|
|
|
18
24
|
---
|
|
19
25
|
|
|
20
|
-
##
|
|
26
|
+
## Documentation
|
|
21
27
|
|
|
22
28
|
Designed for minimal overhead, practical focus, and zero fluff:
|
|
23
29
|
|
|
24
30
|
### 1. For Daily Development (Start Here)
|
|
25
|
-
*
|
|
26
|
-
*
|
|
31
|
+
* **[01 · Hands-on Walkthrough from A–Z](docs/en/01-getting-started.md)**: **The core guide to get started in 10–15 minutes**. Step-by-step instructions with **2 practical examples** (Task 1 Strict Track $\rightarrow$ Handoff $\rightarrow$ Task 2 Fast-Track with knowledge inheritance), prompt templates, and quality gate sign-offs.
|
|
32
|
+
* **[02 · Daily Cheat Sheet](docs/en/02-cheat-sheet.md)**: Copy-paste prompt templates for each phase, quality gates summary (Gates G0–G3), subagent delegation prompts, and v2.0 protocol matrix.
|
|
33
|
+
* **[03 · Advanced Workflows & Production Edge Cases](docs/en/03-advanced-workflows.md)**: Complex real-world scenarios: Epics in `process/features/`, multi-developer concurrency, git rebase conflicts, P0 emergency hotfixes, secret scanning, model switching, complex test harnesses, and task parking (`paused.md`).
|
|
27
34
|
|
|
28
35
|
### 2. In-Depth Reference (For Tech Leads & Maintainers)
|
|
29
|
-
*
|
|
30
|
-
*
|
|
36
|
+
* **[3-Layer Architecture & Context Router (v2.0)](docs/en/reference/architecture.md)**: Deep dive into the 3-layer decoupled architecture, the 11-seed catalog, and the v2.0 Engineering Protocols.
|
|
37
|
+
* **[DevOps & Release Automation](docs/en/reference/devops-release.md)**: CI/CD release lifecycle, automated Semantic Versioning, and NPM package publishing.
|
|
31
38
|
|
|
32
39
|
---
|
|
33
40
|
|
|
@@ -47,7 +54,7 @@ Designed for minimal overhead, practical focus, and zero fluff:
|
|
|
47
54
|
|
|
48
55
|
---
|
|
49
56
|
|
|
50
|
-
##
|
|
57
|
+
## NPX CLI Commands
|
|
51
58
|
|
|
52
59
|
```bash
|
|
53
60
|
# Bootstrap in current directory (interactive prompt: choose English or Tiếng Việt)
|
|
@@ -68,6 +75,6 @@ npx @damphuquy/agent-init . --force
|
|
|
68
75
|
|
|
69
76
|
---
|
|
70
77
|
|
|
71
|
-
##
|
|
78
|
+
## License
|
|
72
79
|
|
|
73
80
|
Licensed under the [MIT License](LICENSE).
|
package/README.vi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# agent-instructions (@damphuquy/agent-init)
|
|
2
2
|
|
|
3
|
-
> **Hệ thống điều phối và khởi tạo AI Coding Agent theo chuẩn RIPER-5**
|
|
3
|
+
> **Hệ thống điều phối và khởi tạo AI Coding Agent v2.0 theo chuẩn RIPER-5**
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<a href="README.md">English</a> • <b>Tiếng Việt</b>
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
Hệ thống mẫu (scaffold) điều phối AI Coding Agent theo chuẩn **RIPER-5 Framework** — phân tách thành ba layer rõ ràng: `AGENTS.md` (cấu hình dự án), `.agents/` (quy chuẩn hành vi của Agent), và `process/` (quy trình thực thi task và kiểm thử).
|
|
11
|
+
Hệ thống mẫu (scaffold) điều phối AI Coding Agent theo chuẩn **RIPER-5 Framework v2.0** — phân tách thành ba layer rõ ràng: `AGENTS.md` (cấu hình dự án), `.agents/` (quy chuẩn hành vi của Agent), và `process/` (quy trình thực thi task và kiểm thử).
|
|
12
|
+
|
|
13
|
+
Tích hợp 4 **Giao thức Kỹ thuật v2.0** cốt lõi:
|
|
14
|
+
* **Điều phối Subagent v2.0:** Chia lát cắt song song, không xung đột ghi (zero write collision) và đánh thức phản ứng.
|
|
15
|
+
* **Quy chuẩn Hiện thực Mã nguồn v2.0:** Kiểm soát kiểu nghiêm ngặt (không `any`), domain thuần khiết, fail-fast tại ranh giới và dọn dẹp tài nguyên xác định.
|
|
16
|
+
* **Quy chuẩn Lập kế hoạch & Cắt lát v2.0:** Lát cắt dọc theo chuẩn INVEST (2–5 slice/task) với lệnh kiểm chứng tự động bắt buộc.
|
|
17
|
+
* **Quy chuẩn Kiểm thử & Test Harness v2.0:** Kim tự tháp kiểm thử xác định với đóng băng thời gian (frozen clocks), fixture factories và mock có kiểm soát.
|
|
12
18
|
|
|
13
19
|
```bash
|
|
14
20
|
# Khởi tạo ngay vào project của bạn (chỉ mất 30 giây)
|
|
@@ -22,11 +28,12 @@ npx @damphuquy/agent-init .
|
|
|
22
28
|
Tài liệu được thiết kế tối giản, tập trung vào thực hành, không lý thuyết rườm rà:
|
|
23
29
|
|
|
24
30
|
### 1. Dành cho công việc hằng ngày (Bắt đầu tại đây)
|
|
25
|
-
* 📘 **[01 · Hướng dẫn Thực chiến từ A–Z
|
|
26
|
-
* ⚡ **[02 · Sổ tay Tra cứu Nhanh (Cheat Sheet)](docs/vi/02-cheat-sheet.md)**: Bảng copy-paste prompt mẫu cho từng giai đoạn, bảng 4 cổng kiểm soát (Gates G0–G3), và ma trận
|
|
31
|
+
* 📘 **[01 · Hướng dẫn Thực chiến từ A–Z](docs/vi/01-getting-started.md)**: **Tài liệu cốt lõi để bắt đầu trong 10–15 phút**. Hướng dẫn từng bước với **2 ví dụ thực tế liên hoàn** (Task 1 Strict Track $\rightarrow$ Bàn giao $\rightarrow$ Task 2 Fast-Track kế thừa tri thức), prompt mẫu và cách duyệt qua các cổng.
|
|
32
|
+
* ⚡ **[02 · Sổ tay Tra cứu Nhanh (Cheat Sheet)](docs/vi/02-cheat-sheet.md)**: Bảng copy-paste prompt mẫu cho từng giai đoạn, bảng 4 cổng kiểm soát (Gates G0–G3), prompt ủy quyền subagent và ma trận giao thức v2.0.
|
|
33
|
+
* 🚀 **[03 · Quy trình Nâng cao & Tình huống Thực chiến](docs/vi/03-advanced-workflows.md)**: Các kịch bản production phức tạp: Epic trong `process/features/`, đa lập trình viên đồng thời, xử lý xung đột rebase, hotfix P0 khẩn cấp, quét secret bảo mật, đổi model chat, và đóng băng task dài hạn (`paused.md`).
|
|
27
34
|
|
|
28
35
|
### 2. Tài liệu Chuyên sâu & Tham khảo (Dành cho Lead / Maintainer)
|
|
29
|
-
* 🏛️ **[Kiến trúc 3 Tầng & Cơ chế Context Router](docs/vi/reference/architecture.md)**: Giải thích sâu về thiết kế tách rời 3 layer
|
|
36
|
+
* 🏛️ **[Kiến trúc 3 Tầng & Cơ chế Context Router (v2.0)](docs/vi/reference/architecture.md)**: Giải thích sâu về thiết kế tách rời 3 layer, danh mục 11 seed template và 4 Giao thức Kỹ thuật v2.0.
|
|
30
37
|
* 🚢 **[Cẩm nang DevOps & Tự động hóa Phát hành](docs/vi/reference/devops-release.md)**: Quy trình CI/CD tự động tính Semantic Versioning và publish package lên NPM.
|
|
31
38
|
|
|
32
39
|
---
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEvE,eAAO,MAAM,cAAc,EAAE,SAAS,SAAS,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEvE,eAAO,MAAM,cAAc,EAAE,SAAS,SAAS,EA8D9C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,SAAS,SAAS,EA8D9C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,SAAS,SAAS,EAAmB,CAAC;AAEhE,wBAAgB,aAAa,CAAC,IAAI,GAAE,iBAAwB,GAAG,SAAS,SAAS,EAAE,CAElF;AAGD,wBAAgB,cAAc,IAAI,MAAM,CASvC;AAED,wBAAgB,cAAc,CAAC,cAAc,GAAE,MAAyB,GAAG,WAAW,CAgBrF"}
|
package/dist/config.js
CHANGED
|
@@ -32,6 +32,7 @@ export const FILE_GROUPS_EN = [
|
|
|
32
32
|
{ path: 'process/_seeds/review-template.md.seed', desc: 'Review phase artifact & Gate 3' },
|
|
33
33
|
{ path: 'process/_seeds/handoff-template.md.seed', desc: 'Final projection (intentionally short)' },
|
|
34
34
|
{ path: 'process/_seeds/cancellation-template.md.seed', desc: 'Knowledge-preserving task cancellation record' },
|
|
35
|
+
{ path: 'process/_seeds/pause-template.md.seed', desc: 'Task pause & parking record for temporary blockages' },
|
|
35
36
|
{ path: 'process/_seeds/results-template.tsv.seed', desc: 'Benchmark & quantitative metrics evaluation registry' },
|
|
36
37
|
{ path: 'process/_seeds/program-template.md.seed', desc: 'Multi-phase umbrella epic blueprint' },
|
|
37
38
|
],
|
|
@@ -94,6 +95,7 @@ export const FILE_GROUPS_VI = [
|
|
|
94
95
|
{ path: 'process/_seeds/review-template.md.seed', desc: 'Artifact giai đoạn Nghiệm thu (Review) & Gate 3' },
|
|
95
96
|
{ path: 'process/_seeds/handoff-template.md.seed', desc: 'Tóm tắt bàn giao cuối cùng (ngắn gọn)' },
|
|
96
97
|
{ path: 'process/_seeds/cancellation-template.md.seed', desc: 'Biên bản hủy task & lưu giữ tri thức' },
|
|
98
|
+
{ path: 'process/_seeds/pause-template.md.seed', desc: 'Biên bản tạm dừng task & đóng băng an toàn' },
|
|
97
99
|
{ path: 'process/_seeds/results-template.tsv.seed', desc: 'Bảng theo dõi số liệu benchmark & định lượng' },
|
|
98
100
|
{ path: 'process/_seeds/program-template.md.seed', desc: 'Bản thiết kế chương trình lớn nhiều giai đoạn' },
|
|
99
101
|
],
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -24,6 +24,7 @@ process/
|
|
|
24
24
|
│ ├── review-template.md.seed # Review phase artifact (Gate 3)
|
|
25
25
|
│ ├── handoff-template.md.seed # Final projection (short)
|
|
26
26
|
│ ├── cancellation-template.md.seed # Knowledge-preserving cancellation record
|
|
27
|
+
│ ├── pause-template.md.seed # Task pause & parking record (temporary blockages)
|
|
27
28
|
│ ├── results-template.tsv.seed # Benchmark & quantitative metrics tracker
|
|
28
29
|
│ └── program-template.md.seed # Multi-phase program blueprint
|
|
29
30
|
├── context/ # Durable knowledge base & context routers
|
|
@@ -45,6 +46,7 @@ process/
|
|
|
45
46
|
│ │ ├── review.md # Review phase output
|
|
46
47
|
│ │ ├── handoff.md # Final projection
|
|
47
48
|
│ │ ├── results.tsv # (Optional) Benchmark & metric iteration tracking
|
|
49
|
+
│ │ ├── paused.md # (If paused) Parking record & resumption criteria
|
|
48
50
|
│ │ └── cancelled.md # (If aborted) Cancellation findings & rollback status
|
|
49
51
|
│ ├── completed/ # Archived task workspaces
|
|
50
52
|
│ └── backlog/ # Backlog notes: {note_slug}_NOTE_{dd-mm-yy}.md
|
|
@@ -107,8 +109,10 @@ handoff.md ← (Complete) Short final projection
|
|
|
107
109
|
| Execute | source code + tests + `state.md` |
|
|
108
110
|
| Review | `review.md` |
|
|
109
111
|
| Handoff | `handoff.md` |
|
|
112
|
+
| Pause / Park | `paused.md` (clean freeze & resumption criteria upon temporary block) |
|
|
110
113
|
| Cancellation | `cancelled.md` (knowledge preservation upon abort) |
|
|
111
114
|
| Benchmark / Metrics | `results.tsv` (performance and eval metrics) |
|
|
115
|
+
| Program | `program.md` (multi-phase umbrella epic blueprint) |
|
|
112
116
|
| Gate 1 | `decision.md` approval |
|
|
113
117
|
| Gate 2 | `plan.md` approval |
|
|
114
118
|
| Gate 3 | `review.md` approval |
|
|
@@ -81,6 +81,11 @@
|
|
|
81
81
|
reusable prototypes/tests, and rollback verification when an in-flight task is cancelled.
|
|
82
82
|
</seed>
|
|
83
83
|
|
|
84
|
+
<seed type="pause" path="pause-template.md.seed">
|
|
85
|
+
Task pause and parking record. Preserves working tree state, slice snapshot,
|
|
86
|
+
resumption criteria, and stale-risk assessment when an in-flight task is temporarily frozen.
|
|
87
|
+
</seed>
|
|
88
|
+
|
|
84
89
|
<seed type="results" path="results-template.tsv.seed">
|
|
85
90
|
Benchmark and quantitative metrics evaluation registry.
|
|
86
91
|
Use for tracking latency, throughput, memory, or eval scores across iterations and vertical slices.
|
|
@@ -116,6 +121,10 @@ handoff.md ← Final projection (short)
|
|
|
116
121
|
| Execute | source code + tests + `state.md` |
|
|
117
122
|
| Review | `review.md` |
|
|
118
123
|
| Handoff | `handoff.md` |
|
|
124
|
+
| Pause / Park | `paused.md` (clean freeze & resumption checklist) |
|
|
125
|
+
| Cancellation | `cancelled.md` (knowledge preservation upon abort) |
|
|
126
|
+
| Benchmark / Metrics | `results.tsv` (performance and eval metrics) |
|
|
127
|
+
| Program | `program.md` (multi-phase umbrella epic blueprint) |
|
|
119
128
|
| Gate 1 | `decision.md` approval |
|
|
120
129
|
| Gate 2 | `plan.md` approval |
|
|
121
130
|
| Gate 3 | `review.md` approval |
|
|
@@ -135,6 +144,7 @@ process/features/active/CHG-017-your-feature/
|
|
|
135
144
|
├── review.md ← instantiated from review-template.md.seed (Gate 3 Audit)
|
|
136
145
|
├── handoff.md ← instantiated from handoff-template.md.seed (Final Projection)
|
|
137
146
|
├── results.tsv ← (Optional) instantiated from results-template.tsv.seed (Metrics/Benchmarks)
|
|
147
|
+
├── paused.md ← (If paused) instantiated from pause-template.md.seed
|
|
138
148
|
└── cancelled.md ← (If cancelled) instantiated from cancellation-template.md.seed
|
|
139
149
|
```
|
|
140
150
|
|
|
@@ -170,6 +180,9 @@ cp process/_seeds/handoff-template.md.seed process/features/active/CHG-XXX-your-
|
|
|
170
180
|
# (Optional) Tracking performance or evaluation metrics:
|
|
171
181
|
cp process/_seeds/results-template.tsv.seed process/features/active/CHG-XXX-your-feature/results.tsv
|
|
172
182
|
|
|
183
|
+
# (When pausing or parking an in-flight task):
|
|
184
|
+
cp process/_seeds/pause-template.md.seed process/features/active/CHG-XXX-your-feature/paused.md
|
|
185
|
+
|
|
173
186
|
# (When cancelling an in-flight task):
|
|
174
187
|
cp process/_seeds/cancellation-template.md.seed process/features/active/CHG-XXX-your-feature/cancelled.md
|
|
175
188
|
```
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# Pause Record: [TASK-ID] [Task Title]
|
|
2
|
+
|
|
3
|
+
<pause_record task_id="[TASK-ID]" version="1.0" framework="RIPER-5">
|
|
4
|
+
|
|
5
|
+
<!--
|
|
6
|
+
TASK PAUSE & PARKING GUIDELINES:
|
|
7
|
+
- Purpose: Freeze in-flight tasks cleanly when blocked by external dependencies, shifting priorities, or waiting on human feedback.
|
|
8
|
+
- Never abandon an active task without recording the exact working tree state and resumption conditions.
|
|
9
|
+
- Instantiate this file as `paused.md` inside the task workspace.
|
|
10
|
+
- If the pause is long-term (> 2 weeks), move the task directory from `active/` to `backlog/` (or `paused/`) to keep `active/` clean.
|
|
11
|
+
-->
|
|
12
|
+
|
|
13
|
+
<status>
|
|
14
|
+
<phase_at_pause>[RESEARCH | INNOVATE | PLAN | EXECUTE | REVIEW]</phase_at_pause>
|
|
15
|
+
<paused_date>[YYYY-MM-DD or DD-MM-YY]</paused_date>
|
|
16
|
+
<paused_by>[@engineer_or_tech_lead]</paused_by>
|
|
17
|
+
<git_branch>[feature/CHG-XXX-description]</git_branch>
|
|
18
|
+
<git_state>[COMMITTED_WIP | STASHED | CLEAN]</git_state>
|
|
19
|
+
<git_commit_or_stash_ref>[e.g. git commit hash: a1b2c3d or stash@{0}]</git_commit_or_stash_ref>
|
|
20
|
+
</status>
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 1. Reason for Pause & Blockers
|
|
25
|
+
|
|
26
|
+
<pause_context>
|
|
27
|
+
<primary_reason>
|
|
28
|
+
<!-- [e.g. Blocked on upstream API Task CHG-042 / Awaiting security review / Priority preemption by P0 hotfix / Waiting on customer feedback] -->
|
|
29
|
+
[Concise description of why this task was paused.]
|
|
30
|
+
</primary_reason>
|
|
31
|
+
|
|
32
|
+
<blocker_details>
|
|
33
|
+
[Detailed context on blocking conditions, external tickets, or dependencies.]
|
|
34
|
+
</blocker_details>
|
|
35
|
+
</pause_context>
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 2. In-Flight Progress & Slice Snapshot
|
|
40
|
+
|
|
41
|
+
<progress_snapshot>
|
|
42
|
+
<completed_slices>
|
|
43
|
+
<!-- Which slices from plan.md have already passed their verifiers? -->
|
|
44
|
+
- [Slice 1: Objective — VERIFIED & COMMITTED]
|
|
45
|
+
</completed_slices>
|
|
46
|
+
|
|
47
|
+
<active_slice_at_pause>
|
|
48
|
+
<!-- What was being worked on when paused? -->
|
|
49
|
+
<slice_id>[e.g. Slice 2]</slice_id>
|
|
50
|
+
<state_summary>[e.g. Service logic implemented, 2 unit tests written but failing due to mock issue]</state_summary>
|
|
51
|
+
</active_slice_at_pause>
|
|
52
|
+
|
|
53
|
+
<touched_files>
|
|
54
|
+
<!-- List of files modified or created during active work -->
|
|
55
|
+
- `src/...`
|
|
56
|
+
- `tests/...`
|
|
57
|
+
</touched_files>
|
|
58
|
+
</progress_snapshot>
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## 3. Resumption Criteria
|
|
63
|
+
|
|
64
|
+
<resumption_criteria>
|
|
65
|
+
<!-- What explicit event, ticket resolution, or condition unlocks this task? -->
|
|
66
|
+
<trigger_condition>
|
|
67
|
+
[e.g. CHG-042 merged to main and published to staging environment]
|
|
68
|
+
</trigger_condition>
|
|
69
|
+
|
|
70
|
+
<responsible_owner>[@engineer_to_notify]</responsible_owner>
|
|
71
|
+
</resumption_criteria>
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## 4. Stale-Risk Assessment (Bit-Rot Warnings)
|
|
76
|
+
|
|
77
|
+
<stale_risk_assessment>
|
|
78
|
+
<!-- What might decay or drift if this task remains parked for weeks/months? -->
|
|
79
|
+
<schema_drift_risk level="[LOW|MEDIUM|HIGH]">
|
|
80
|
+
[Potential DB migration or API contract changes occurring in parallel.]
|
|
81
|
+
</schema_drift_risk>
|
|
82
|
+
|
|
83
|
+
<dependency_drift_risk level="[LOW|MEDIUM|HIGH]">
|
|
84
|
+
[Libraries or internal shared modules that may be upgraded in the interim.]
|
|
85
|
+
</dependency_drift_risk>
|
|
86
|
+
|
|
87
|
+
<architecture_drift_risk level="[LOW|MEDIUM|HIGH]">
|
|
88
|
+
[Refactorings or new conventions that might invalidate assumptions in research.md.]
|
|
89
|
+
</architecture_drift_risk>
|
|
90
|
+
</stale_risk_assessment>
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## 5. Resumption Pre-Flight Checklist
|
|
95
|
+
|
|
96
|
+
<resumption_checklist>
|
|
97
|
+
<!-- MUST execute in order before restarting EXECUTE loop -->
|
|
98
|
+
- [ ] 1. Move task folder back to `active/` (if it was parked in `backlog/`).
|
|
99
|
+
- [ ] 2. Checkout feature branch and rebase/merge latest `main` (`git checkout <branch> && git pull --rebase origin main`).
|
|
100
|
+
- [ ] 3. Run validation commands on baseline (`npm run test && npm run lint`) to ensure codebase is green.
|
|
101
|
+
- [ ] 4. Perform Context Freshness Check: Re-read `task.md`, `state.md`, and verify if assumptions in `research.md` still hold.
|
|
102
|
+
- [ ] 5. If `<allowed_files>` were altered on `main`, update `plan.md` scope contract before executing code.
|
|
103
|
+
- [ ] 6. Delete or archive `paused.md` and resume the current slice in `state.md`.
|
|
104
|
+
</resumption_checklist>
|
|
105
|
+
|
|
106
|
+
</pause_record>
|
|
@@ -6,9 +6,11 @@
|
|
|
6
6
|
SECTION 0 — TASK CONTROL (master state record)
|
|
7
7
|
════════════════════════════════════════════ -->
|
|
8
8
|
<task_control>
|
|
9
|
-
<status>BACKLOG</status> <!-- BACKLOG | ACTIVE | BLOCKED | REVIEW | COMPLETED -->
|
|
9
|
+
<status>BACKLOG</status> <!-- BACKLOG | ACTIVE | BLOCKED | PAUSED | REVIEW | COMPLETED | CANCELLED -->
|
|
10
10
|
<spec_level>S1</spec_level> <!-- S0=sketch | S1=defined | S2=verified | S3=locked -->
|
|
11
|
+
<priority>P2</priority> <!-- P0=urgent | P1=high | P2=normal | P3=low -->
|
|
11
12
|
<risk>MEDIUM</risk> <!-- LOW | MEDIUM | HIGH -->
|
|
13
|
+
<estimated_story_points>2</estimated_story_points> <!-- 1 SP ≈ 2-4 focused engineering hours -->
|
|
12
14
|
<working_mode>PAIR</working_mode> <!-- MANUAL | PAIR | DELEGATED | DIAGNOSE-ONLY -->
|
|
13
15
|
<current_phase>RESEARCH</current_phase> <!-- RESEARCH | INNOVATE | PLAN | EXECUTE | REVIEW -->
|
|
14
16
|
<owner>@engineer</owner>
|
|
@@ -63,6 +65,11 @@
|
|
|
63
65
|
- `tests/[path/to/test_file]` — [Target assertions and test fixtures]
|
|
64
66
|
</target_files>
|
|
65
67
|
|
|
68
|
+
<context_groups>
|
|
69
|
+
<!-- References to registered context groups from process/context/all-context.md -->
|
|
70
|
+
- [planning | tests | protocols | domain-specific-group]
|
|
71
|
+
</context_groups>
|
|
72
|
+
|
|
66
73
|
<source_of_truth>
|
|
67
74
|
<requirement>[Link to requirement or spec]</requirement>
|
|
68
75
|
<architecture>[Link to architecture doc or ADR]</architecture>
|
|
@@ -154,6 +161,7 @@
|
|
|
154
161
|
- [ ] Run verifier after each slice.
|
|
155
162
|
- [ ] Inspect diff after each slice.
|
|
156
163
|
- [ ] Update `state.md` after each slice.
|
|
164
|
+
- [ ] (Optional) Record quantitative metric deltas in `results.tsv` if tracking benchmarks/performance.
|
|
157
165
|
</phase>
|
|
158
166
|
|
|
159
167
|
<phase name="Review" order="5">
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<group id="seeds">
|
|
27
27
|
<title>Seeds & Archetypes Guide</title>
|
|
28
28
|
<path>[`../_seeds/_GUIDE.md`](../_seeds/_GUIDE.md)</path>
|
|
29
|
-
<scope>Scaffolding seeds for tasks, research, decisions, plans, state, reviews, handoffs, and programs. Full artifact chain and instantiation commands.</scope>
|
|
29
|
+
<scope>Scaffolding seeds for tasks, research, decisions, plans, state, reviews, handoffs, pause, cancellation, benchmarks, and programs. Full artifact chain and instantiation commands.</scope>
|
|
30
30
|
</group>
|
|
31
31
|
|
|
32
32
|
<group id="tests">
|
|
@@ -1,31 +1,87 @@
|
|
|
1
1
|
# Planning Standards & Calibration Context
|
|
2
2
|
|
|
3
|
-
<planning_context version="
|
|
3
|
+
<planning_context version="2.0">
|
|
4
4
|
|
|
5
5
|
<overview>
|
|
6
|
-
|
|
6
|
+
Engineering guidelines for story point estimation, vertical slicing, rollback checkpointing, and capacity calibration.
|
|
7
7
|
</overview>
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Quality Standards (INVEST Criteria)
|
|
12
|
+
|
|
10
13
|
<quality_standards>
|
|
11
14
|
<standard name="INVEST">
|
|
12
|
-
- **Independent:** Deliverable without cross-story blockers.
|
|
13
|
-
- **Negotiable:** Implementation details
|
|
14
|
-
- **Valuable:** Delivers
|
|
15
|
-
- **Estimable:** Scoped
|
|
16
|
-
- **Small:**
|
|
17
|
-
- **Testable:**
|
|
18
|
-
</standard>
|
|
19
|
-
|
|
20
|
-
<standard name="Vertical Slicing">
|
|
21
|
-
Avoid horizontal silos. Deliver end-to-end vertical slices across API, logic, and persistence.
|
|
15
|
+
- **Independent:** Deliverable and verifiable without cross-story circular blockers.
|
|
16
|
+
- **Negotiable:** Implementation details and technical approaches can be flexibly evaluated during the Innovate phase.
|
|
17
|
+
- **Valuable:** Delivers demonstrable capability or verifiable engineering progress.
|
|
18
|
+
- **Estimable:** Scoped tightly enough that effort and file touchpoints can be calculated.
|
|
19
|
+
- **Small:** Sized to fit comfortably within 1–3 engineering days (or 1–3 Story Points).
|
|
20
|
+
- **Testable:** Accompanied by unambiguous, verifiable Acceptance Criteria (`- [ ]`).
|
|
22
21
|
</standard>
|
|
23
22
|
</quality_standards>
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 2. Vertical Slicing Discipline
|
|
27
|
+
|
|
28
|
+
<vertical_slicing>
|
|
29
|
+
### Vertical Slice vs Horizontal Silo
|
|
30
|
+
- **The Vertical Slice Rule:** Each slice must cut through all required technical layers (e.g. Domain Model $\rightarrow$ Service/Logic $\rightarrow$ Port Adapter/API $\rightarrow$ Automated Test) to deliver one complete, verifiable increment of behavior.
|
|
31
|
+
- **The Horizontal Silo Anti-Pattern:** Never slice horizontally (e.g., Slice 1: create all database tables, Slice 2: create all services, Slice 3: create all endpoints). Horizontal layers cannot be verified independently, leaving the system in a broken or unprovable state until the final slice.
|
|
32
|
+
|
|
33
|
+
### Vertical Slicing Workflow
|
|
34
|
+
```text
|
|
35
|
+
[Slice 1: Thin End-to-End Core] ──► Domain Entity + In-Memory Repo + Minimal Endpoint + Passing Test
|
|
36
|
+
[Slice 2: Persistence & Boundary] ──► Real Database Adapter + Migration + Integration Verifier
|
|
37
|
+
[Slice 3: Edge Cases & Validation] ──► Strict Input Sanitization + Error Handlers + Boundary Tests
|
|
38
|
+
```
|
|
39
|
+
</vertical_slicing>
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 3. Slice Sizing, Atomic Verifiability & Checkpoints
|
|
44
|
+
|
|
45
|
+
<slice_sizing>
|
|
46
|
+
<rule id="slice_cardinality">
|
|
47
|
+
A standard task should contain between **2 and 5 vertical slices**. If a task requires more than 5 slices, it has high blast radius and must be decomposed into a Multi-Phase Program (`program-template.md.seed`).
|
|
48
|
+
</rule>
|
|
49
|
+
|
|
50
|
+
<rule id="autonomous_verifier">
|
|
51
|
+
Every single slice in `plan.md` must have an explicit, executable `<verifier>` command (e.g. `npm run test -- test/path/test.js` or `pytest tests/unit/test_slice.py`). A slice is NOT complete until its verifier exits with code 0.
|
|
52
|
+
</rule>
|
|
53
|
+
|
|
54
|
+
<rule id="atomic_checkpoint">
|
|
55
|
+
Commit or checkpoint each slice atomically upon verification passing. This guarantees clean git history and enables instant rollback if subsequent slices encounter irrecoverable regressions.
|
|
56
|
+
</rule>
|
|
57
|
+
</slice_sizing>
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## 4. Rollback Strategy per Slice
|
|
62
|
+
|
|
63
|
+
<rollback_strategy>
|
|
64
|
+
Every slice in `plan.md` MUST specify a concrete `<rollback_point>`:
|
|
65
|
+
- **Git Checkpoint:** `git checkout -- <allowed_files>` or revert commit hash.
|
|
66
|
+
- **Stash Checkpoint:** `git stash pop` or dedicated WIP branch.
|
|
67
|
+
- **Data/Schema Rollback:** Down-migration script or drop ephemeral test container.
|
|
68
|
+
|
|
69
|
+
If the agent exhausts its 3-attempt retry budget on a slice, it must execute the rollback point before halting and escalating to human guidance.
|
|
70
|
+
</rollback_strategy>
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 5. Story Point Capacity Calibration
|
|
75
|
+
|
|
26
76
|
<capacity_calibration>
|
|
27
|
-
<unit>1 Story Point ≈ 2
|
|
28
|
-
<
|
|
77
|
+
<unit>1 Story Point (SP) ≈ 2–4 focused engineering hours</unit>
|
|
78
|
+
<scale>
|
|
79
|
+
- **1 SP:** Straightforward change with clear scope (1-3 files touched, 1-2 slices).
|
|
80
|
+
- **2 SP:** Standard feature or refactoring (3-5 files touched, 2-3 slices).
|
|
81
|
+
- **3 SP:** Moderately complex task touching domain contracts and persistence (4-7 files, 3-4 slices).
|
|
82
|
+
- **5 SP:** Maximum size for a single active task in `process/features/active/`.
|
|
83
|
+
- **> 5 SP:** Oversized. Must be split into multiple standalone tasks or organized under `program-template.md.seed`.
|
|
84
|
+
</scale>
|
|
29
85
|
</capacity_calibration>
|
|
30
86
|
|
|
31
87
|
</planning_context>
|
|
@@ -1,56 +1,113 @@
|
|
|
1
1
|
# Testing Standards & Harness Strategy Context
|
|
2
2
|
|
|
3
|
-
<testing_context version="
|
|
3
|
+
<testing_context version="2.0">
|
|
4
4
|
|
|
5
5
|
<overview>
|
|
6
|
-
Guidelines for test pyramid calibration, isolation policies, mock conventions, and automated verification harness across the system.
|
|
6
|
+
Guidelines for test pyramid calibration, isolation policies, mock conventions, fixture hygiene, and automated verification harness across the system.
|
|
7
7
|
</overview>
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Test Pyramid & Layer Calibration
|
|
12
|
+
|
|
10
13
|
<test_pyramid>
|
|
11
14
|
<layer name="Unit Tests" path="tests/unit/">
|
|
12
|
-
- Scope
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
+
- **Scope:** Pure domain models, business logic calculations, utility functions, edge-case branching.
|
|
16
|
+
- **Speed & Constraints:** Ultra-fast (< 50ms per test). Zero network calls, zero disk I/O, zero real database connections.
|
|
17
|
+
- **Mocking Policy:** Mock all port interfaces, external clients, and I/O boundaries.
|
|
15
18
|
</layer>
|
|
16
19
|
|
|
17
20
|
<layer name="Integration Tests" path="tests/integration/">
|
|
18
|
-
- Scope
|
|
19
|
-
- Isolation
|
|
20
|
-
- Teardown
|
|
21
|
+
- **Scope:** Repository persistence adapters, database queries, migration scripts, HTTP client wrappers, framework wiring.
|
|
22
|
+
- **Isolation:** Ephemeral test containers (e.g. Testcontainers), in-memory databases, or isolated schema instances per test worker.
|
|
23
|
+
- **Teardown:** Must guarantee 100% state cleanup with zero leakage across test runs.
|
|
21
24
|
</layer>
|
|
22
25
|
|
|
23
26
|
<layer name="End-to-End Tests" path="tests/e2e/">
|
|
24
|
-
- Scope
|
|
25
|
-
- Verification
|
|
27
|
+
- **Scope:** Critical user journeys, public API lifecycle, full authentication flows, regression smoke tests.
|
|
28
|
+
- **Verification:** Validates end-to-end contract integrity across the entire system.
|
|
26
29
|
</layer>
|
|
27
30
|
</test_pyramid>
|
|
28
31
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 2. Mocking Boundaries & Anti-Patterns
|
|
35
|
+
|
|
36
|
+
<mocking_boundaries>
|
|
37
|
+
<rule id="mock_at_architectural_boundary">
|
|
38
|
+
**Mock at the boundaries, never at the core.** Only mock external infrastructure: third-party HTTP APIs, message brokers, email services, or system clock.
|
|
39
|
+
</rule>
|
|
40
|
+
|
|
41
|
+
<rule id="do_not_mock_domain_or_sut">
|
|
42
|
+
Never mock the System Under Test (SUT) or pure domain entities/value objects. If a domain entity is hard to instantiate without mocks, its design is coupled and requires refactoring.
|
|
43
|
+
</rule>
|
|
44
|
+
|
|
45
|
+
<rule id="verify_mock_interactions_sparingly">
|
|
46
|
+
Prefer asserting on return values and observable state changes rather than verifying exact method call counts (`toHaveBeenCalledTimes`), which couples tests to private implementation details.
|
|
47
|
+
</rule>
|
|
48
|
+
</mocking_boundaries>
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 3. Test Fixture & Data Factory Hygiene
|
|
53
|
+
|
|
54
|
+
<fixture_hygiene>
|
|
55
|
+
<rule id="data_factories_over_preseeded_db">
|
|
56
|
+
Use explicit test factories (or builder functions) with sensible defaults rather than relying on brittle, shared SQL seed dumps.
|
|
57
|
+
</rule>
|
|
58
|
+
|
|
59
|
+
<rule id="no_shared_mutable_fixtures">
|
|
60
|
+
Every test must instantiate its own data fixtures. Never share mutable state or global test variables between tests.
|
|
61
|
+
</rule>
|
|
62
|
+
|
|
63
|
+
<rule id="deterministic_teardown">
|
|
64
|
+
Always clean up database records, temp files, or mock registries in `afterEach` / `teardown` hooks to prevent cascading cross-test failures.
|
|
65
|
+
</rule>
|
|
66
|
+
</fixture_hygiene>
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## 4. Determinism & Flaky Test Zero-Tolerance
|
|
71
|
+
|
|
72
|
+
<determinism>
|
|
73
|
+
<rule id="frozen_clock">
|
|
74
|
+
Never use real wall-clock time (`Date.now()`, `datetime.now()`) in time-sensitive assertions. Use frozen clocks or fake timers to ensure absolute reproducibility.
|
|
75
|
+
</rule>
|
|
76
|
+
|
|
77
|
+
<rule id="order_independence">
|
|
78
|
+
Tests must pass when run individually or in random order (`--randomize`). Never rely on one test running before another.
|
|
79
|
+
</rule>
|
|
80
|
+
|
|
81
|
+
<rule id="no_arbitrary_sleeps">
|
|
82
|
+
Never use arbitrary `sleep(1000)` in async tests. Use explicit polling helpers with timeouts (`waitFor`, `eventually`) that resolve as soon as the expected condition is met.
|
|
83
|
+
</rule>
|
|
84
|
+
</determinism>
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 5. Assertion Precision & Failure Clarity
|
|
89
|
+
|
|
90
|
+
<assertion_precision>
|
|
91
|
+
<rule id="exact_assertions">
|
|
92
|
+
Avoid vague assertions (e.g. `expect(res).toBeTruthy()`). Always assert exact expected values, HTTP status codes, and error codes.
|
|
93
|
+
</rule>
|
|
34
94
|
|
|
35
|
-
<
|
|
36
|
-
|
|
37
|
-
</
|
|
95
|
+
<rule id="actionable_failure_messages">
|
|
96
|
+
When custom assertions are used, provide clear error messages indicating what input was given and what specific invariant was violated.
|
|
97
|
+
</rule>
|
|
98
|
+
</assertion_precision>
|
|
38
99
|
|
|
39
|
-
|
|
40
|
-
Avoid vague assertions (e.g. `expect(res).toBeTruthy()`). Always assert exact expected structures, status codes, and error types.
|
|
41
|
-
</policy>
|
|
100
|
+
---
|
|
42
101
|
|
|
43
|
-
|
|
44
|
-
Unit tests must execute in under 30 seconds for the entire suite. Slow integration suites must be cleanly partitioned.
|
|
45
|
-
</policy>
|
|
46
|
-
</test_policies>
|
|
102
|
+
## 6. Verification Commands Mapping
|
|
47
103
|
|
|
48
|
-
## 3. Verification Commands Mapping
|
|
49
104
|
<verification_commands>
|
|
50
105
|
<!-- Keep aligned with AGENTS.md <validation_commands> -->
|
|
51
|
-
<command type="unit">Run fast unit test suite</command>
|
|
52
|
-
<command type="integration">Run integration/e2e tests</command>
|
|
53
|
-
<command type="
|
|
106
|
+
<command type="unit">Run fast unit test suite (< 30 seconds total)</command>
|
|
107
|
+
<command type="integration">Run isolated integration/e2e tests</command>
|
|
108
|
+
<command type="typecheck">Run static type checker (zero errors, strict mode)</command>
|
|
109
|
+
<command type="lint">Run linter and format checker (zero warnings)</command>
|
|
110
|
+
<command type="coverage">Run test coverage report and threshold check</command>
|
|
54
111
|
</verification_commands>
|
|
55
112
|
|
|
56
113
|
</testing_context>
|