@engramm/dev-workflow 0.1.4 → 0.1.5
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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/cli/index.js +11 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/init.d.ts.map +1 -1
- package/dist/cli/init.js +7 -1
- package/dist/cli/init.js.map +1 -1
- package/dist/cli/run.d.ts.map +1 -1
- package/dist/cli/run.js +2 -0
- package/dist/cli/run.js.map +1 -1
- package/package.json +1 -1
- package/templates/claude/commands/git/merge.md +6 -4
- package/templates/claude/commands/session/handover.md +8 -1
- package/templates/claude/commands/session/review.md +1 -0
- package/templates/claude/commands/vault/analyze.md +2 -2
- package/templates/claude/commands/workflow/dev.md +86 -907
- package/templates/claude/commands/workflow/steps/coder.md +105 -0
- package/templates/claude/commands/workflow/steps/commit.md +52 -0
- package/templates/claude/commands/workflow/steps/plan-review.md +67 -0
- package/templates/claude/commands/workflow/steps/plan.md +106 -0
- package/templates/claude/commands/workflow/steps/preflight.md +45 -0
- package/templates/claude/commands/workflow/steps/principles.md +35 -0
- package/templates/claude/commands/workflow/steps/read.md +39 -0
- package/templates/claude/commands/workflow/steps/review.md +168 -0
- package/templates/claude/commands/workflow/steps/test.md +38 -0
- package/templates/claude/commands/workflow/steps/vault-updates.md +48 -0
- package/templates/claude/commands/workflow/steps/verify.md +49 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Step 8: VERIFY (task compliance check)
|
|
2
|
+
|
|
3
|
+
Launch **Explore** subagent:
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
You are a verification agent. Check if the implementation matches the ORIGINAL TASK.
|
|
7
|
+
Do NOT check code quality or security — that was already done.
|
|
8
|
+
Check ONLY: does the code do what was asked?
|
|
9
|
+
|
|
10
|
+
## Original task
|
|
11
|
+
[task from user — the ORIGINAL request, not the plan]
|
|
12
|
+
|
|
13
|
+
## Plan
|
|
14
|
+
[PLAN block]
|
|
15
|
+
|
|
16
|
+
## What was implemented
|
|
17
|
+
[final CODE_DONE or CODE_FIX block]
|
|
18
|
+
|
|
19
|
+
## Check
|
|
20
|
+
- Every requirement from the original task addressed?
|
|
21
|
+
- Any requirement missed or partially implemented?
|
|
22
|
+
- Any drift from the task? (implemented something not asked for)
|
|
23
|
+
- Acceptance criteria met? (if task specifies them)
|
|
24
|
+
|
|
25
|
+
## Output Format
|
|
26
|
+
VERIFY:
|
|
27
|
+
Verdict: [COMPLETE / INCOMPLETE]
|
|
28
|
+
Addressed:
|
|
29
|
+
- [requirement] — implemented
|
|
30
|
+
Missing:
|
|
31
|
+
- [requirement not implemented — how to fix]
|
|
32
|
+
Drift:
|
|
33
|
+
- [implementation not in original task — flag for user]
|
|
34
|
+
END_VERIFY
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**COMPLETE** → Step 9.
|
|
38
|
+
|
|
39
|
+
**INCOMPLETE** → pass missing items to CODER. **Max 2 iterations.** After limit:
|
|
40
|
+
- **Interactive:** show gaps, ask user whether to commit partial or stop
|
|
41
|
+
- **Autonomous:** stop without commit. Incomplete implementation = no commit.
|
|
42
|
+
|
|
43
|
+
Display:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
── VERIFY ──
|
|
47
|
+
Verdict: COMPLETE / INCOMPLETE
|
|
48
|
+
[If incomplete:] Missing: [N] requirements
|
|
49
|
+
```
|