@anhth2/spec-driven-dev-plugin 0.8.0 → 0.9.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/ARCHITECTURE.md +6 -2
- package/commands/debug.md +152 -0
- package/commands/debug.tmpl +16 -0
- package/commands/define-product.md +57 -0
- package/commands/fix-bug.md +153 -0
- package/commands/fix-bug.tmpl +17 -0
- package/commands/generate-bdd.md +277 -13
- package/commands/generate-bdd.tmpl +220 -13
- package/commands/generate-code.md +154 -2
- package/commands/generate-code.tmpl +97 -2
- package/commands/generate-design-spec.md +57 -0
- package/commands/generate-prd.md +75 -0
- package/commands/generate-prd.tmpl +18 -0
- package/commands/generate-spec-manifest.md +57 -0
- package/commands/generate-tech-docs.md +79 -1
- package/commands/generate-tech-docs.tmpl +22 -1
- package/commands/generate-tests.md +57 -0
- package/commands/learn.md +554 -0
- package/commands/learn.tmpl +63 -0
- package/commands/propose-scenario.md +521 -0
- package/commands/propose-scenario.tmpl +109 -0
- package/commands/refine-prd.md +57 -0
- package/commands/report-bug.md +543 -0
- package/commands/report-bug.tmpl +131 -0
- package/commands/review-code.md +153 -0
- package/commands/review-code.tmpl +17 -0
- package/commands/review-context.md +57 -0
- package/commands/review-tech-docs.md +139 -4
- package/commands/review-tech-docs.tmpl +82 -4
- package/commands/run-tests.md +82 -0
- package/commands/run-tests.tmpl +25 -0
- package/commands/setup-ai-first.md +15 -5
- package/commands/setup-ai-first.tmpl +10 -5
- package/commands/smoke-test.md +57 -0
- package/commands/sync.md +405 -0
- package/commands/sync.tmpl +345 -0
- package/commands/update-framework.md +211 -0
- package/commands/update-framework.tmpl +151 -0
- package/commands/validate-traces.md +115 -2
- package/commands/validate-traces.tmpl +58 -2
- package/core/FRAMEWORK_VERSION +1 -1
- package/core/commands/debug.md +152 -0
- package/core/commands/define-product.md +57 -0
- package/core/commands/fix-bug.md +153 -0
- package/core/commands/generate-bdd.md +277 -13
- package/core/commands/generate-code.md +154 -2
- package/core/commands/generate-design-spec.md +57 -0
- package/core/commands/generate-prd.md +75 -0
- package/core/commands/generate-spec-manifest.md +57 -0
- package/core/commands/generate-tech-docs.md +79 -1
- package/core/commands/generate-tests.md +57 -0
- package/core/commands/learn.md +554 -0
- package/core/commands/propose-scenario.md +521 -0
- package/core/commands/refine-prd.md +57 -0
- package/core/commands/report-bug.md +543 -0
- package/core/commands/review-code.md +153 -0
- package/core/commands/review-context.md +57 -0
- package/core/commands/review-tech-docs.md +139 -4
- package/core/commands/run-tests.md +82 -0
- package/core/commands/setup-ai-first.md +15 -5
- package/core/commands/smoke-test.md +57 -0
- package/core/commands/sync.md +405 -0
- package/core/commands/update-framework.md +211 -0
- package/core/commands/validate-traces.md +115 -2
- package/core/skills/code/SKILL.md +62 -0
- package/core/skills/debug/SKILL.md +67 -0
- package/core/skills/design-spec/SKILL.md +57 -0
- package/core/skills/discovery/SKILL.md +57 -0
- package/core/skills/prd/SKILL.md +10 -0
- package/core/skills/setup-ai-first/SKILL.md +5 -0
- package/core/skills/spec/SKILL.md +10 -0
- package/core/skills/test/SKILL.md +119 -0
- package/core/steps/capture-lesson.md +79 -0
- package/core/steps/context-loader.md +52 -0
- package/core/steps/report-footer.md +5 -0
- package/core/templates/project-context.yaml +11 -0
- package/package.json +1 -1
- package/skills/code/SKILL.md +62 -0
- package/skills/debug/SKILL.md +67 -0
- package/skills/design-spec/SKILL.md +57 -0
- package/skills/discovery/SKILL.md +57 -0
- package/skills/prd/SKILL.md +10 -0
- package/skills/setup-ai-first/SKILL.md +5 -0
- package/skills/spec/SKILL.md +10 -0
- package/skills/test/SKILL.md +119 -0
- package/steps/capture-lesson.md +79 -0
- package/steps/context-loader.md +52 -0
- package/steps/report-footer.md +5 -0
- package/templates/project-context.yaml +11 -0
|
@@ -199,6 +199,37 @@ If `services` section is present:
|
|
|
199
199
|
- Override `paths.domain_knowledge_dir` → `{spec_source}/specs/domain-knowledge`
|
|
200
200
|
- Override `paths.business_dictionary` → `{spec_source}/specs/domain-knowledge/business-dictionary.md`
|
|
201
201
|
- Override `paths.core_entities` → `{spec_source}/specs/domain-knowledge/core-entities.md`
|
|
202
|
+
- Override `paths.bug_reports_dir` → `{spec_source}/feedback/bug-reports`
|
|
203
|
+
- Override `paths.bdd_proposals_dir` → `{spec_source}/feedback/bdd-proposals`
|
|
204
|
+
|
|
205
|
+
> **Why under `spec_source`:** tester feedback (`/report-bug`, `/propose-scenario`) must land in the **shared spec repo** so PO/Dev see it when they `/sync`. In single-service mode (no `spec_source`), these default to `feedback/bug-reports` and `feedback/bdd-proposals` at repo root — still shared, same repo.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## Step 1.6 — [SERVICE CONVENTIONS] Load service-specific conventions (umbrella mode)
|
|
210
|
+
|
|
211
|
+
*Skip this step entirely if `active_service` is `"unresolved"` or context is single-service mode.*
|
|
212
|
+
|
|
213
|
+
When `active_service` has been resolved to a real path in Step 1.5 (e.g., `user-service/`):
|
|
214
|
+
|
|
215
|
+
**1. Locate service config** — try in priority order:
|
|
216
|
+
- `{active_service}/.agent/project-context.yaml`
|
|
217
|
+
- `{active_service}/project-context.yaml`
|
|
218
|
+
|
|
219
|
+
**2. If found, override with service-specific values:**
|
|
220
|
+
|
|
221
|
+
| Variable | Source |
|
|
222
|
+
|----------|--------|
|
|
223
|
+
| `conventions.test_command` | service's `conventions.test_command` |
|
|
224
|
+
| `conventions.build_command` | service's `conventions.build_command` |
|
|
225
|
+
| `paths.trace_dir` | `{active_service}/{service paths.trace_dir}` — default: `{active_service}/.trace` |
|
|
226
|
+
| `paths.specs_dir` | `{active_service}/{service paths.specs_dir}` (if set in service config, else keep Step 1.5 override) |
|
|
227
|
+
|
|
228
|
+
**3. Store** `service_root = {active_service}` as the working directory anchor for all downstream commands:
|
|
229
|
+
- Shell commands (`/run-tests`, `/generate-tests`) run **from within** `service_root`
|
|
230
|
+
- File write operations (test files, trace TSVs) use paths **relative to** `service_root`
|
|
231
|
+
|
|
232
|
+
**4. If service config not found** — keep umbrella defaults, still set `service_root = {active_service}` (path anchor is always needed even without a config override).
|
|
202
233
|
|
|
203
234
|
---
|
|
204
235
|
|
|
@@ -292,6 +323,25 @@ These two variables (`active_module`, `platform_type`) are the canonical source
|
|
|
292
323
|
|
|
293
324
|
---
|
|
294
325
|
|
|
326
|
+
## Step 6.7 — [GUARDRAILS] Load Project Lessons (conditional)
|
|
327
|
+
|
|
328
|
+
*Accumulated mistakes the AI must not repeat in this project. These are added over time via `/learn`
|
|
329
|
+
or accepted during `/review-code`, `/fix-bug`, `/debug`.*
|
|
330
|
+
|
|
331
|
+
Resolve the lessons file path:
|
|
332
|
+
- Use `paths.lessons_file` if set (may be service-overridden in umbrella mode, Step 1.6)
|
|
333
|
+
- Else default `specs/domain-knowledge/lessons-learned.md`
|
|
334
|
+
- In umbrella/service mode (when `service_root` is set), if `paths.lessons_file` is unset, default to `{service_root}/.agent/project-lessons.md`
|
|
335
|
+
|
|
336
|
+
If the file exists, read it and store ALL lessons as **ACTIVE GUARDRAILS** for the session:
|
|
337
|
+
- Treat each lesson's **Rule** as a hard constraint — same priority as CLAUDE.md coding standards (Step 3).
|
|
338
|
+
- Before generating or modifying any artifact (PRD, BDD, tech-doc, code, test), check the output against every lesson whose `category` matches the current command AND whose `scope` matches the target (domain / file).
|
|
339
|
+
- If a generated output would violate a lesson → correct it **before** presenting, and note which lesson (`L-NNN`) was applied.
|
|
340
|
+
|
|
341
|
+
If the file does not exist → skip silently (no lessons captured yet).
|
|
342
|
+
|
|
343
|
+
---
|
|
344
|
+
|
|
295
345
|
## Step 7 — [RECAP] Working Memory Recap (anti-lost-in-middle)
|
|
296
346
|
|
|
297
347
|
After loading all context, synthesize and output a compact summary block.
|
|
@@ -307,7 +357,9 @@ Layers : {layer order from CLAUDE.md §2, e.g., Controller → Facade → Ser
|
|
|
307
357
|
Ticket : {ticket_prefix}-
|
|
308
358
|
Dict : {loaded — N canonical terms, M banned terms | missing}
|
|
309
359
|
Entities : {loaded — EntityA, EntityB, EntityC | missing}
|
|
360
|
+
Lessons : {loaded — N guardrails | none yet}
|
|
310
361
|
Service : {active_service} ({active_service_module}) | single-service
|
|
362
|
+
Svc Root : {service_root} — conventions + trace_dir loaded from service config | —
|
|
311
363
|
Status : {FULL | PARTIAL — missing: CLAUDE.md / business-dict / core-entities | MINIMAL}
|
|
312
364
|
```
|
|
313
365
|
|
|
@@ -329,6 +381,22 @@ After completing all steps, you have loaded:
|
|
|
329
381
|
Proceed to the next step of the calling command.
|
|
330
382
|
|
|
331
383
|
|
|
384
|
+
---
|
|
385
|
+
|
|
386
|
+
## Brownfield Check
|
|
387
|
+
|
|
388
|
+
Read the source `.feature` file header for `@trace.api_source`.
|
|
389
|
+
Also check the source PRD Metadata table for `| **API Source** | existing |`.
|
|
390
|
+
|
|
391
|
+
| Value | Mode |
|
|
392
|
+
|-------|------|
|
|
393
|
+
| `existing` | **Reverse-document** — API đã tồn tại; mô tả lại as-is, note gaps, không cần design mới |
|
|
394
|
+
| absent / other | **Greenfield** — thiết kế API từ đầu |
|
|
395
|
+
|
|
396
|
+
Store `active_mode = {reverse-document | greenfield}`.
|
|
397
|
+
|
|
398
|
+
If `active_mode = reverse-document` → load bảng "Existing API Contract" từ PRD làm input cho §2.
|
|
399
|
+
|
|
332
400
|
---
|
|
333
401
|
|
|
334
402
|
## CHECKPOINT — Tech Design Plan
|
|
@@ -341,13 +409,14 @@ Tech Design Plan — {UC-ID}
|
|
|
341
409
|
UC : {UC-ID} — {feature title}
|
|
342
410
|
Service : {trace.service}
|
|
343
411
|
Module : {trace.module}
|
|
412
|
+
Mode : {Reverse-document (API đã tồn tại) | Greenfield (thiết kế mới)}
|
|
344
413
|
Scenarios: {N} scenarios
|
|
345
414
|
BDD ver : {trace.bdd_version}
|
|
346
415
|
Output : {paths.tech_docs_dir}/{domain}/{UC-ID}-tech-design.md
|
|
347
416
|
|
|
348
417
|
Sections to generate:
|
|
349
418
|
§1 Overview
|
|
350
|
-
§2 API Endpoints ({
|
|
419
|
+
§2 API Endpoints ({Reverse-document: mô tả lại từ PRD contract | Greenfield: infer từ scenarios})
|
|
351
420
|
§3 Data Model ({entities from core-entities.md relevant to this UC})
|
|
352
421
|
§4 Service Flow
|
|
353
422
|
§5 Business Rules ({N} BRs from feature header)
|
|
@@ -379,11 +448,15 @@ Write `{paths.tech_docs_dir}/{domain}/{UC-ID}-tech-design.md`:
|
|
|
379
448
|
@trace.bdd_version: {read @trace.bdd_version from the .feature file header}
|
|
380
449
|
@trace.revision: 1
|
|
381
450
|
@trace.status: draft
|
|
451
|
+
@trace.api_source: {existing | —}
|
|
382
452
|
@trace.generated_at: {YYYY-MM-DD}
|
|
383
453
|
---
|
|
384
454
|
|
|
385
455
|
## §1. Overview
|
|
386
456
|
## §2. API Endpoints
|
|
457
|
+
*Greenfield:* endpoints được infer từ BDD scenarios — thiết kế mới.
|
|
458
|
+
*Reverse-document:* mô tả lại API đã tồn tại từ bảng "Existing API Contract" trong PRD.
|
|
459
|
+
Ghi chú gaps nếu contract thực tế khác với BDD expectations.
|
|
387
460
|
| Method | Path | Auth/Role | Request | Response |
|
|
388
461
|
## §3. Data Model
|
|
389
462
|
Key entities and relationships.
|
|
@@ -456,6 +529,11 @@ Suggest the logical next command based on workflow phase:
|
|
|
456
529
|
| /validate-traces | DRIFT/UNTRACKED → `/generate-code {UC-ID}`; GAP → `/generate-tests {UC-ID}`; all OK → create PR |
|
|
457
530
|
| /fix-bug | Create PR and link to ticket |
|
|
458
531
|
| /debug | `/fix-bug {ticket-id}` if fix needed |
|
|
532
|
+
| /report-bug | Send to dev (`/fix-bug {BUG-ID}`); if coverage gap → `/propose-scenario {UC-ID}` |
|
|
533
|
+
| /propose-scenario | Notify PO/Dev to review the proposal in `feedback/bdd-proposals/` |
|
|
534
|
+
| /learn | Continue working — lesson applies on next command |
|
|
535
|
+
| /sync | `/validate-traces` for full coverage; act on any `📥 tester feedback` surfaced |
|
|
536
|
+
| /update-framework | Review `git diff .agent/`, commit; `/sync` for project content |
|
|
459
537
|
|
|
460
538
|
Format the footer as:
|
|
461
539
|
```
|
|
@@ -31,6 +31,22 @@
|
|
|
31
31
|
|
|
32
32
|
---
|
|
33
33
|
|
|
34
|
+
## Brownfield Check
|
|
35
|
+
|
|
36
|
+
Read the source `.feature` file header for `@trace.api_source`.
|
|
37
|
+
Also check the source PRD Metadata table for `| **API Source** | existing |`.
|
|
38
|
+
|
|
39
|
+
| Value | Mode |
|
|
40
|
+
|-------|------|
|
|
41
|
+
| `existing` | **Reverse-document** — API đã tồn tại; mô tả lại as-is, note gaps, không cần design mới |
|
|
42
|
+
| absent / other | **Greenfield** — thiết kế API từ đầu |
|
|
43
|
+
|
|
44
|
+
Store `active_mode = {reverse-document | greenfield}`.
|
|
45
|
+
|
|
46
|
+
If `active_mode = reverse-document` → load bảng "Existing API Contract" từ PRD làm input cho §2.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
34
50
|
## CHECKPOINT — Tech Design Plan
|
|
35
51
|
|
|
36
52
|
Before generating, scan the feature file for scenario count, referenced BRs, and entities. Display and wait for Y:
|
|
@@ -41,13 +57,14 @@ Tech Design Plan — {UC-ID}
|
|
|
41
57
|
UC : {UC-ID} — {feature title}
|
|
42
58
|
Service : {trace.service}
|
|
43
59
|
Module : {trace.module}
|
|
60
|
+
Mode : {Reverse-document (API đã tồn tại) | Greenfield (thiết kế mới)}
|
|
44
61
|
Scenarios: {N} scenarios
|
|
45
62
|
BDD ver : {trace.bdd_version}
|
|
46
63
|
Output : {paths.tech_docs_dir}/{domain}/{UC-ID}-tech-design.md
|
|
47
64
|
|
|
48
65
|
Sections to generate:
|
|
49
66
|
§1 Overview
|
|
50
|
-
§2 API Endpoints ({
|
|
67
|
+
§2 API Endpoints ({Reverse-document: mô tả lại từ PRD contract | Greenfield: infer từ scenarios})
|
|
51
68
|
§3 Data Model ({entities from core-entities.md relevant to this UC})
|
|
52
69
|
§4 Service Flow
|
|
53
70
|
§5 Business Rules ({N} BRs from feature header)
|
|
@@ -79,11 +96,15 @@ Write `{paths.tech_docs_dir}/{domain}/{UC-ID}-tech-design.md`:
|
|
|
79
96
|
@trace.bdd_version: {read @trace.bdd_version from the .feature file header}
|
|
80
97
|
@trace.revision: 1
|
|
81
98
|
@trace.status: draft
|
|
99
|
+
@trace.api_source: {existing | —}
|
|
82
100
|
@trace.generated_at: {YYYY-MM-DD}
|
|
83
101
|
---
|
|
84
102
|
|
|
85
103
|
## §1. Overview
|
|
86
104
|
## §2. API Endpoints
|
|
105
|
+
*Greenfield:* endpoints được infer từ BDD scenarios — thiết kế mới.
|
|
106
|
+
*Reverse-document:* mô tả lại API đã tồn tại từ bảng "Existing API Contract" trong PRD.
|
|
107
|
+
Ghi chú gaps nếu contract thực tế khác với BDD expectations.
|
|
87
108
|
| Method | Path | Auth/Role | Request | Response |
|
|
88
109
|
## §3. Data Model
|
|
89
110
|
Key entities and relationships.
|
|
@@ -178,6 +178,37 @@ If `services` section is present:
|
|
|
178
178
|
- Override `paths.domain_knowledge_dir` → `{spec_source}/specs/domain-knowledge`
|
|
179
179
|
- Override `paths.business_dictionary` → `{spec_source}/specs/domain-knowledge/business-dictionary.md`
|
|
180
180
|
- Override `paths.core_entities` → `{spec_source}/specs/domain-knowledge/core-entities.md`
|
|
181
|
+
- Override `paths.bug_reports_dir` → `{spec_source}/feedback/bug-reports`
|
|
182
|
+
- Override `paths.bdd_proposals_dir` → `{spec_source}/feedback/bdd-proposals`
|
|
183
|
+
|
|
184
|
+
> **Why under `spec_source`:** tester feedback (`/report-bug`, `/propose-scenario`) must land in the **shared spec repo** so PO/Dev see it when they `/sync`. In single-service mode (no `spec_source`), these default to `feedback/bug-reports` and `feedback/bdd-proposals` at repo root — still shared, same repo.
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Step 1.6 — [SERVICE CONVENTIONS] Load service-specific conventions (umbrella mode)
|
|
189
|
+
|
|
190
|
+
*Skip this step entirely if `active_service` is `"unresolved"` or context is single-service mode.*
|
|
191
|
+
|
|
192
|
+
When `active_service` has been resolved to a real path in Step 1.5 (e.g., `user-service/`):
|
|
193
|
+
|
|
194
|
+
**1. Locate service config** — try in priority order:
|
|
195
|
+
- `{active_service}/.agent/project-context.yaml`
|
|
196
|
+
- `{active_service}/project-context.yaml`
|
|
197
|
+
|
|
198
|
+
**2. If found, override with service-specific values:**
|
|
199
|
+
|
|
200
|
+
| Variable | Source |
|
|
201
|
+
|----------|--------|
|
|
202
|
+
| `conventions.test_command` | service's `conventions.test_command` |
|
|
203
|
+
| `conventions.build_command` | service's `conventions.build_command` |
|
|
204
|
+
| `paths.trace_dir` | `{active_service}/{service paths.trace_dir}` — default: `{active_service}/.trace` |
|
|
205
|
+
| `paths.specs_dir` | `{active_service}/{service paths.specs_dir}` (if set in service config, else keep Step 1.5 override) |
|
|
206
|
+
|
|
207
|
+
**3. Store** `service_root = {active_service}` as the working directory anchor for all downstream commands:
|
|
208
|
+
- Shell commands (`/run-tests`, `/generate-tests`) run **from within** `service_root`
|
|
209
|
+
- File write operations (test files, trace TSVs) use paths **relative to** `service_root`
|
|
210
|
+
|
|
211
|
+
**4. If service config not found** — keep umbrella defaults, still set `service_root = {active_service}` (path anchor is always needed even without a config override).
|
|
181
212
|
|
|
182
213
|
---
|
|
183
214
|
|
|
@@ -271,6 +302,25 @@ These two variables (`active_module`, `platform_type`) are the canonical source
|
|
|
271
302
|
|
|
272
303
|
---
|
|
273
304
|
|
|
305
|
+
## Step 6.7 — [GUARDRAILS] Load Project Lessons (conditional)
|
|
306
|
+
|
|
307
|
+
*Accumulated mistakes the AI must not repeat in this project. These are added over time via `/learn`
|
|
308
|
+
or accepted during `/review-code`, `/fix-bug`, `/debug`.*
|
|
309
|
+
|
|
310
|
+
Resolve the lessons file path:
|
|
311
|
+
- Use `paths.lessons_file` if set (may be service-overridden in umbrella mode, Step 1.6)
|
|
312
|
+
- Else default `specs/domain-knowledge/lessons-learned.md`
|
|
313
|
+
- In umbrella/service mode (when `service_root` is set), if `paths.lessons_file` is unset, default to `{service_root}/.agent/project-lessons.md`
|
|
314
|
+
|
|
315
|
+
If the file exists, read it and store ALL lessons as **ACTIVE GUARDRAILS** for the session:
|
|
316
|
+
- Treat each lesson's **Rule** as a hard constraint — same priority as CLAUDE.md coding standards (Step 3).
|
|
317
|
+
- Before generating or modifying any artifact (PRD, BDD, tech-doc, code, test), check the output against every lesson whose `category` matches the current command AND whose `scope` matches the target (domain / file).
|
|
318
|
+
- If a generated output would violate a lesson → correct it **before** presenting, and note which lesson (`L-NNN`) was applied.
|
|
319
|
+
|
|
320
|
+
If the file does not exist → skip silently (no lessons captured yet).
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
274
324
|
## Step 7 — [RECAP] Working Memory Recap (anti-lost-in-middle)
|
|
275
325
|
|
|
276
326
|
After loading all context, synthesize and output a compact summary block.
|
|
@@ -286,7 +336,9 @@ Layers : {layer order from CLAUDE.md §2, e.g., Controller → Facade → Ser
|
|
|
286
336
|
Ticket : {ticket_prefix}-
|
|
287
337
|
Dict : {loaded — N canonical terms, M banned terms | missing}
|
|
288
338
|
Entities : {loaded — EntityA, EntityB, EntityC | missing}
|
|
339
|
+
Lessons : {loaded — N guardrails | none yet}
|
|
289
340
|
Service : {active_service} ({active_service_module}) | single-service
|
|
341
|
+
Svc Root : {service_root} — conventions + trace_dir loaded from service config | —
|
|
290
342
|
Status : {FULL | PARTIAL — missing: CLAUDE.md / business-dict / core-entities | MINIMAL}
|
|
291
343
|
```
|
|
292
344
|
|
|
@@ -812,6 +864,11 @@ Suggest the logical next command based on workflow phase:
|
|
|
812
864
|
| /validate-traces | DRIFT/UNTRACKED → `/generate-code {UC-ID}`; GAP → `/generate-tests {UC-ID}`; all OK → create PR |
|
|
813
865
|
| /fix-bug | Create PR and link to ticket |
|
|
814
866
|
| /debug | `/fix-bug {ticket-id}` if fix needed |
|
|
867
|
+
| /report-bug | Send to dev (`/fix-bug {BUG-ID}`); if coverage gap → `/propose-scenario {UC-ID}` |
|
|
868
|
+
| /propose-scenario | Notify PO/Dev to review the proposal in `feedback/bdd-proposals/` |
|
|
869
|
+
| /learn | Continue working — lesson applies on next command |
|
|
870
|
+
| /sync | `/validate-traces` for full coverage; act on any `📥 tester feedback` surfaced |
|
|
871
|
+
| /update-framework | Review `git diff .agent/`, commit; `/sync` for project content |
|
|
815
872
|
|
|
816
873
|
Format the footer as:
|
|
817
874
|
```
|