@ai-content-space/loopx 0.2.0 → 0.2.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.
Files changed (53) hide show
  1. package/AGENTS.md +7 -8
  2. package/README.md +22 -10
  3. package/README.zh-CN.md +22 -10
  4. package/docs/loopx/design/loopx-skill-suite-v1-design.md +14 -7
  5. package/docs/loopx/plans/loopx-skill-suite-v1-implementation.md +7 -3
  6. package/package.json +3 -2
  7. package/plugins/loopx/.codex-plugin/plugin.json +1 -1
  8. package/plugins/loopx/skills/clarify/SKILL.md +4 -4
  9. package/plugins/loopx/skills/debug/SKILL.md +1 -1
  10. package/plugins/loopx/skills/exec/SKILL.md +1 -1
  11. package/plugins/loopx/skills/final-review/SKILL.md +89 -0
  12. package/plugins/loopx/skills/final-review/final-reviewer.md +135 -0
  13. package/plugins/loopx/skills/finish/SKILL.md +110 -8
  14. package/plugins/loopx/skills/fix-review/SKILL.md +1 -1
  15. package/plugins/loopx/skills/go-style/SKILL.md +2 -2
  16. package/plugins/loopx/skills/kratos/SKILL.md +7 -1
  17. package/plugins/loopx/skills/plan/SKILL.md +2 -2
  18. package/plugins/loopx/skills/refactor-plan/SKILL.md +1 -1
  19. package/plugins/loopx/skills/review/SKILL.md +1 -1
  20. package/plugins/loopx/skills/spec/DESIGN_SPEC_TEMPLATE.md +2 -2
  21. package/plugins/loopx/skills/spec/SKILL.md +2 -2
  22. package/plugins/loopx/skills/subagent-exec/SKILL.md +7 -6
  23. package/plugins/loopx/skills/tdd/SKILL.md +1 -1
  24. package/plugins/loopx/skills/verify/SKILL.md +1 -1
  25. package/scripts/verify-skills.mjs +2 -1
  26. package/skills/RESOLVER.md +7 -8
  27. package/skills/clarify/SKILL.md +4 -4
  28. package/skills/debug/SKILL.md +1 -1
  29. package/skills/exec/SKILL.md +1 -1
  30. package/skills/final-review/SKILL.md +89 -0
  31. package/skills/final-review/final-reviewer.md +135 -0
  32. package/skills/finish/SKILL.md +110 -8
  33. package/skills/fix-review/SKILL.md +1 -1
  34. package/skills/go-style/SKILL.md +2 -2
  35. package/skills/kratos/SKILL.md +7 -1
  36. package/skills/plan/SKILL.md +2 -2
  37. package/skills/refactor-plan/SKILL.md +1 -1
  38. package/skills/review/SKILL.md +1 -1
  39. package/skills/spec/DESIGN_SPEC_TEMPLATE.md +2 -2
  40. package/skills/spec/SKILL.md +2 -2
  41. package/skills/subagent-exec/SKILL.md +7 -6
  42. package/skills/tdd/SKILL.md +1 -1
  43. package/skills/verify/SKILL.md +1 -1
  44. package/src/cli.mjs +1 -2
  45. package/src/install-discovery.mjs +1 -0
  46. package/src/plan-runtime.mjs +0 -352
  47. package/src/workflow.mjs +5 -124
  48. package/plugins/loopx/scripts/plugin-install.test.mjs +0 -125
  49. package/skills/ai-slop-cleaner/SKILL.md +0 -114
  50. package/skills/autoresearch/SKILL.md +0 -68
  51. package/skills/deep-interview/SKILL.md +0 -461
  52. package/skills/ralph/SKILL.md +0 -271
  53. package/skills/ralplan/SKILL.md +0 -49
@@ -3,7 +3,7 @@ name: finish
3
3
  description: "Finishes completed loopx development work after tests pass by presenting merge, PR, keep, or discard options. Not for unfinished work or failing verification."
4
4
  when_to_use: "implementation complete, tests pass, finish branch, create pull request, merge locally, keep branch, discard work"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Finish
@@ -12,7 +12,7 @@ metadata:
12
12
 
13
13
  Guide completion of development work by presenting clear options and handling chosen workflow.
14
14
 
15
- **Core principle:** Verify tests → Detect environment → Present options → Execute choice → Clean up.
15
+ **Core principle:** Verify tests → extract memory/spec learnings → Present options → Execute choice → Clean up.
16
16
 
17
17
  **Announce at start:** "I'm using the finish skill to complete this work."
18
18
 
@@ -66,7 +66,90 @@ git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/null
66
66
 
67
67
  Or ask: "This branch split from main - is that correct?"
68
68
 
69
- ### Step 4: Present Options
69
+ ### Step 4: Learning Extraction
70
+
71
+ Run learning extraction before presenting merge, PR, keep, or discard options.
72
+
73
+ Allowed inputs:
74
+ - current git diff
75
+ - executed verification output
76
+ - plan, spec, and review artifacts used in this task
77
+ - explicit user decisions in the current conversation
78
+ - existing `.loopx/memory/MEMORY.md` and `.loopx/memory/index.jsonl`
79
+ - existing `docs/loopx/specs/*.md`
80
+
81
+ Learning extraction priority:
82
+ 1. Durable behavior, contracts, or constraints proven by the implementation
83
+ 2. State, file, CLI, API, install, migration, compatibility, or test invariants
84
+ 3. Explicit user decisions that constrain future work
85
+ 4. Review findings or fixes that reveal a reusable pitfall, pattern, or boundary
86
+ 5. Documentation changes when they define, correct, or preserve one of the above
87
+
88
+ Do not infer durable rules from agent intuition alone. Do not promote unverified implementation details.
89
+
90
+ #### Memory
91
+
92
+ Memory is local, agent-queryable project context. It is not repo-tracked by default.
93
+
94
+ Use:
95
+
96
+ ```text
97
+ .loopx/memory/MEMORY.md
98
+ .loopx/memory/index.jsonl
99
+ .loopx/memory/entries/
100
+ .loopx/memory/archive/
101
+ ```
102
+
103
+ `MEMORY.md` is the bounded curated summary an agent should read first. Keep it dense and useful.
104
+
105
+ `index.jsonl` is a curated active index, not an append-only history. It should point only to active memory cards worth querying.
106
+
107
+ Use memory only for facts that will help a future agent avoid rework, avoid mistakes, or preserve a decision. Do not record process negatives such as "no spec promotion".
108
+
109
+ One finish run may write 0-3 active memory cards. If more learnings appear, consolidate, promote to spec, archive stale cards, or skip low-signal items.
110
+
111
+ Memory entry index rows should use this shape:
112
+
113
+ ```json
114
+ {"id":"2026-06-02-example","type":"decision","domain":"workflow","tags":["finish"],"summary":"finish writes local memory and repo-tracked spec candidates","path":"entries/2026-06-02-example.md","created_at":"2026-06-02T00:00:00Z"}
115
+ ```
116
+
117
+ Allowed memory `type` values:
118
+ - `decision`
119
+ - `constraint`
120
+ - `pattern`
121
+ - `pitfall`
122
+ - `handoff`
123
+
124
+ Finish may automatically update `.loopx/memory/MEMORY.md`, `.loopx/memory/index.jsonl`, and active memory cards. The final response must list the memory changes.
125
+
126
+ #### Spec Candidates
127
+
128
+ Spec extraction is conditional. Run the audit every time, but write spec candidates only when the task produced stable, shared, reusable project rules.
129
+
130
+ Write repo-tracked candidates directly to:
131
+
132
+ ```text
133
+ docs/loopx/specs/<domain>.md
134
+ ```
135
+
136
+ If the domain is unclear, use:
137
+
138
+ ```text
139
+ docs/loopx/specs/inbox.md
140
+ ```
141
+
142
+ Recommended domains:
143
+ - `workflow`
144
+ - `skills`
145
+ - `installation`
146
+ - `memory`
147
+ - `testing`
148
+ - `inbox`
149
+
150
+ Spec candidates must be visible in the repo diff and reported in the final response. Do not silently change team specs.
151
+
152
+ ### Step 5: Present Options
70
153
 
71
154
  **Normal repo and named-branch worktree — present exactly these 4 options:**
72
155
 
@@ -95,7 +178,7 @@ Which option?
95
178
 
96
179
  **Don't add explanation** - keep options concise.
97
180
 
98
- ### Step 5: Execute Choice
181
+ ### Step 6: Execute Choice
99
182
 
100
183
  #### Option 1: Merge Locally
101
184
 
@@ -112,10 +195,10 @@ git merge <feature-branch>
112
195
  # Verify tests on merged result
113
196
  <test command>
114
197
 
115
- # Only after merge succeeds: cleanup worktree (Step 6), then delete branch
198
+ # Only after merge succeeds: cleanup worktree (Step 7), then delete branch
116
199
  ```
117
200
 
118
- Then: Cleanup worktree (Step 6), then delete branch:
201
+ Then: Cleanup worktree (Step 7), then delete branch:
119
202
 
120
203
  ```bash
121
204
  git branch -d <feature-branch>
@@ -166,12 +249,12 @@ MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-tople
166
249
  cd "$MAIN_ROOT"
167
250
  ```
168
251
 
169
- Then: Cleanup worktree (Step 6), then force-delete branch:
252
+ Then: Cleanup worktree (Step 7), then force-delete branch:
170
253
  ```bash
171
254
  git branch -D <feature-branch>
172
255
  ```
173
256
 
174
- ### Step 6: Cleanup Workspace
257
+ ### Step 7: Cleanup Workspace
175
258
 
176
259
  **Only runs for Options 1 and 4.** Options 2 and 3 always preserve the worktree.
177
260
 
@@ -203,6 +286,25 @@ git worktree prune # Self-healing: clean up any stale registrations
203
286
  | 3. Keep as-is | - | - | yes | - |
204
287
  | 4. Discard | - | - | - | yes (force) |
205
288
 
289
+ ## Final Response Contract
290
+
291
+ Every finish response must include the verification result, chosen completion action, memory changes, and Spec candidates.
292
+
293
+ Use this shape:
294
+
295
+ ```text
296
+ Memory:
297
+ - updated: .loopx/memory/MEMORY.md
298
+ - entries: <N> added, <N> archived
299
+ - summary:
300
+ - <high-signal memory change>
301
+
302
+ Spec candidates:
303
+ - docs/loopx/specs/<domain>.md: <candidate change>
304
+ ```
305
+
306
+ If there are no memory changes or spec candidates, report `none`. Do not write `none` into memory.
307
+
206
308
  ## Common Mistakes
207
309
 
208
310
  **Skipping test verification**
@@ -3,7 +3,7 @@ name: fix-review
3
3
  description: "Handles received code review feedback with verification, technical evaluation, pushback, and one-item-at-a-time fixes. Not for requesting a new review or implementing unrelated changes."
4
4
  when_to_use: "fix-review, received code review feedback, review comments, reviewer suggestions, requested changes, 处理评审意见"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Fix Review
@@ -3,7 +3,7 @@ name: go-style
3
3
  description: "Applies loopx Go coding style for .go edits, tests, errors, context, naming, and interface boundaries. Not for non-Go code or Kratos-specific architecture by itself."
4
4
  when_to_use: "go-style, Go, golang, .go files, go tests, gofmt, idiomatic Go, Go style, Go 代码"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Go Style
@@ -12,7 +12,7 @@ metadata:
12
12
 
13
13
  `go-style` is a lightweight Go coding discipline skill. It should guide edits to `.go` files without overriding the repository's established conventions.
14
14
 
15
- Use it as a support skill from `build` when Go files are created or modified, and directly when the user asks for Go style, idiomatic Go, or Go code cleanup.
15
+ Use it as a support skill from `subagent-exec` or `exec` when Go files are created or modified, and directly when the user asks for Go style, idiomatic Go, or Go code cleanup.
16
16
 
17
17
  ## Core Rules
18
18
 
@@ -3,7 +3,7 @@ name: kratos
3
3
  description: "Supports Go-Kratos microservices, proto/buf APIs, service/biz/data layers, middleware, auth, config, and troubleshooting. Not for generic Go style alone."
4
4
  when_to_use: "kratos, Go-Kratos, proto, buf, service layer, biz layer, data layer, middleware, auth, config, Kratos 微服务"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Kratos
@@ -56,6 +56,12 @@ Use only the reference file needed for the current task:
56
56
  - Use validation annotations when the project already uses `buf.validate` or `protovalidate`.
57
57
  - Regenerate code with the repository's existing command, such as `buf generate`, `make api`, or project scripts.
58
58
 
59
+ ## Database DDL
60
+
61
+ - MySQL `CREATE TABLE` statements must include a table-level `COMMENT`.
62
+ - MySQL column definitions in `CREATE TABLE` or `ALTER TABLE ... ADD COLUMN` statements must include column-level `COMMENT`.
63
+ - When using Ent schema for MySQL tables, add `.Comment(...)` to fields that are persisted as columns.
64
+
59
65
  ## Integration With Other loopx Skills
60
66
 
61
67
  - Use `go-style` for handwritten `.go` edits.
@@ -3,8 +3,8 @@ name: plan
3
3
  description: "Creates bite-sized implementation plans from approved requirements, clarify output, or design specs with exact files, tests, commands, expected output, and execution handoff. Not for unresolved requirements, design decisions, PRD generation, or code changes."
4
4
  when_to_use: "plan, implementation plan, execution plan, task breakdown, approved requirements, approved design spec, docs/loopx/design, 实施计划, 执行计划, 任务拆分"
5
5
  metadata:
6
- version: "0.2.0"
7
- argument-hint: "[--direct <design-spec-path>] <design spec path or feature name>"
6
+ version: "0.2.2"
7
+ argument-hint: "<design spec path or feature name>"
8
8
  ---
9
9
 
10
10
  # loopx Plan
@@ -3,7 +3,7 @@ name: refactor-plan
3
3
  description: "Creates a behavior-preserving refactor plan with user interview, repo evidence, tiny commits, scope boundaries, and testing decisions. Not for feature changes or immediate implementation."
4
4
  when_to_use: "refactor-plan, refactor request, refactoring RFC, tiny commits, behavior-preserving cleanup, architecture cleanup, 重构计划"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  This skill will be invoked when the user wants to create a refactor request. You should go through the steps below. You may skip steps if you don't consider them necessary.
@@ -3,7 +3,7 @@ name: review
3
3
  description: "Dispatches a loopx code reviewer subagent against a concrete git range and requirements. Not for implementation, planning, or unresolved review scope."
4
4
  when_to_use: "request code review, completed task review, major feature review, pre-merge review, subagent code quality check"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Review
@@ -305,7 +305,7 @@
305
305
  - 推荐下一步:
306
306
 
307
307
  ```text
308
- $plan --direct docs/loopx/design/<需求名>需求设计文档.md
308
+ $plan docs/loopx/design/<需求名>需求设计文档.md
309
309
  ```
310
310
 
311
311
  ## 十一、QA
@@ -320,4 +320,4 @@ $plan --direct docs/loopx/design/<需求名>需求设计文档.md
320
320
 
321
321
  | 问题 | 需要谁确认 | 阻塞阶段 | 推荐答案 | 状态 |
322
322
  |---|---|---|---|---|
323
- | <问题> | <角色> | clarify/spec/plan/build | <建议> | open/closed |
323
+ | <问题> | <角色> | clarify/spec/plan/subagent-exec/exec/review | <建议> | open/closed |
@@ -3,7 +3,7 @@ name: spec
3
3
  description: "Writes software design specs from already-clarified requirements, including solution approach, architecture outline, detailed design, tradeoffs, verification design, and handoff context. Not for unresolved requirements, PRD generation, implementation task planning, or code changes."
4
4
  when_to_use: "spec, design spec, technical design, design proposal, detailed design, architecture design, 设计方案, 概要设计, 详细设计, 技术方案"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # loopx Spec
@@ -70,7 +70,7 @@ The `十、排期与规划` section must include a `Planning Handoff` subsection
70
70
  After the spec is complete, recommend:
71
71
 
72
72
  ```text
73
- $plan --direct docs/loopx/design/<需求名>需求设计文档.md
73
+ $plan docs/loopx/design/<需求名>需求设计文档.md
74
74
  ```
75
75
 
76
76
  Use `plan` only after the design document is internally consistent and all material requirements questions are resolved.
@@ -3,7 +3,7 @@ name: subagent-exec
3
3
  description: "Executes approved loopx implementation plans with fresh subagents per independent task and staged review. Not for planning, unclear requirements, or tightly coupled edits."
4
4
  when_to_use: "approved implementation plan, independent tasks, subagent execution, staged spec review, code quality review, parallel-capable execution"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Subagent Exec
@@ -65,7 +65,7 @@ digraph process {
65
65
 
66
66
  "Read plan, extract all tasks with full text, note context, create update_plan" [shape=box];
67
67
  "More tasks remain?" [shape=diamond];
68
- "Dispatch final code reviewer subagent for entire implementation" [shape=box];
68
+ "Use loopx:final-review for entire implementation" [shape=box];
69
69
  "Use loopx:finish" [shape=box style=filled fillcolor=lightgreen];
70
70
 
71
71
  "Read plan, extract all tasks with full text, note context, create update_plan" -> "Dispatch implementer subagent (./implementer-prompt.md)";
@@ -84,8 +84,8 @@ digraph process {
84
84
  "Code quality reviewer subagent approves?" -> "Mark task complete in update_plan" [label="yes"];
85
85
  "Mark task complete in update_plan" -> "More tasks remain?";
86
86
  "More tasks remain?" -> "Dispatch implementer subagent (./implementer-prompt.md)" [label="yes"];
87
- "More tasks remain?" -> "Dispatch final code reviewer subagent for entire implementation" [label="no"];
88
- "Dispatch final code reviewer subagent for entire implementation" -> "Use loopx:finish";
87
+ "More tasks remain?" -> "Use loopx:final-review for entire implementation" [label="no"];
88
+ "Use loopx:final-review for entire implementation" -> "Use loopx:finish";
89
89
  }
90
90
  ```
91
91
 
@@ -199,8 +199,8 @@ Code reviewer: ✅ Approved
199
199
  ...
200
200
 
201
201
  [After all tasks]
202
- [Dispatch final code-reviewer]
203
- Final reviewer: All requirements met, ready to merge
202
+ [Use loopx:final-review]
203
+ Final reviewer: No whole-feature runtime or integration risks found. Ready for finish.
204
204
 
205
205
  Done!
206
206
  ```
@@ -273,6 +273,7 @@ Done!
273
273
 
274
274
  - **loopx:plan** - Creates the plan this skill executes
275
275
  - **loopx:review** - Code review template for reviewer subagents
276
+ - **loopx:final-review** - Final whole-feature runtime and integration risk review
276
277
  - **loopx:finish** - Complete development after all tasks
277
278
 
278
279
  **Subagents should use:**
@@ -3,7 +3,7 @@ name: tdd
3
3
  description: "Guides feature and bugfix implementation through a failing test before production code and red-green-refactor discipline. Not for generated files or throwaway prototypes."
4
4
  when_to_use: "tdd, failing test first, feature implementation, bugfix, regression test, red green refactor, 测试先行"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Test-Driven Development (TDD)
@@ -3,7 +3,7 @@ name: verify
3
3
  description: "Requires fresh verification evidence before claiming work is complete, fixed, passing, review-ready, or ready to commit. Not for speculative confidence or stale results."
4
4
  when_to_use: "verify, completion claim, fixed claim, tests pass, review-ready, commit, fresh evidence, 验证, 完成前检查"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Verification Before Completion
@@ -114,7 +114,6 @@ async function assertPublicDocsAligned() {
114
114
  'loopx plan',
115
115
  'loopx build',
116
116
  'loopx review',
117
- 'loopx archive',
118
117
  'loopx autopilot',
119
118
  'loopx render',
120
119
  'loopx status',
@@ -128,6 +127,8 @@ async function assertPublicDocsAligned() {
128
127
  assertContains(readme, command, 'README.md');
129
128
  assertContains(readmeZh, command, 'README.zh-CN.md');
130
129
  }
130
+ assert.doesNotMatch(readme, /loopx archive/, 'README.md should not expose archive runtime command');
131
+ assert.doesNotMatch(readmeZh, /loopx archive/, 'README.zh-CN.md should not expose archive runtime command');
131
132
 
132
133
  const releaseNotesRoot = join(repoRoot, 'docs', 'release-notes');
133
134
  const releaseNotes = existsSync(releaseNotesRoot)
@@ -14,6 +14,7 @@ Read the selected skill file before acting. If multiple skills match, read every
14
14
  | Approved plan has independent tasks and should run with subagents plus staged review | `skills/subagent-exec/SKILL.md` |
15
15
  | Approved plan should run inline or without subagent-first execution | `skills/exec/SKILL.md` |
16
16
  | Completed task, major feature, or pre-merge work needs independent code review | `skills/review/SKILL.md` |
17
+ | Completed full feature needs final integration, runtime-risk, and test-gap review before finish | `skills/final-review/SKILL.md` |
17
18
  | Existing code review feedback needs technical evaluation and implementation | `skills/fix-review/SKILL.md` |
18
19
  | Completed implementation with passing tests needs merge, PR, keep, or discard decision | `skills/finish/SKILL.md` |
19
20
  | Refactor request needs interview, tiny commits, behavior-preserving scope, and RFC/issue output | `skills/refactor-plan/SKILL.md` |
@@ -36,14 +37,12 @@ Read the selected skill file before acting. If multiple skills match, read every
36
37
  4. `plan` writes `docs/loopx/plans/*.md` and then offers `subagent-exec` or `exec`.
37
38
  5. Use `subagent-exec` when subagents are available and the plan has independent tasks.
38
39
  6. Use `exec` when the user chooses inline execution or subagents are unavailable.
39
- 7. Use `review` to request code review of completed work. Use `fix-review` only after feedback exists.
40
- 8. Use `finish` only after implementation and verification are complete.
41
- 9. Use `refactor-plan` for behavior-preserving refactor planning. If the refactor changes external behavior or contracts, route to `clarify` or `spec`.
42
- 10. Treat `tdd`, `debug`, `verify`, `go-style`, and `kratos` as support lenses unless the user explicitly invokes them directly.
43
-
44
- ## Legacy CLI Runtime
45
-
46
- Legacy `.loopx/workflows/` commands may still exist in the CLI for compatibility. They are not the v1 bundled skill workflow.
40
+ 7. Use `review` to request code review of completed task or checkpoint work.
41
+ 8. Use `final-review` after the whole feature is implemented and before `finish`.
42
+ 9. Use `fix-review` only after feedback exists.
43
+ 10. Use `finish` only after implementation, final review, and verification are complete.
44
+ 11. Use `refactor-plan` for behavior-preserving refactor planning. If the refactor changes external behavior or contracts, route to `clarify` or `spec`.
45
+ 12. Treat `tdd`, `debug`, `verify`, `go-style`, and `kratos` as support lenses unless the user explicitly invokes them directly.
47
46
 
48
47
  ## Deterministic Guard
49
48
 
@@ -3,7 +3,7 @@ name: clarify
3
3
  description: "Grills ambiguous loopx work until material questions are answered, then routes to spec or plan using a design gate. Not for clear implementation tasks, approved specs, or code changes."
4
4
  when_to_use: "clarify, requirements, ambiguous request, unclear scope, non-goals, decision boundaries, acceptance criteria, 需求澄清, 范围不清"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # loopx Clarify
@@ -63,11 +63,11 @@ For `needs_spec`, immediately use the `spec` skill with the clarification contex
63
63
  Then stop before implementation planning and report:
64
64
 
65
65
  ```text
66
- $plan --direct docs/loopx/design/<需求名>需求设计文档.md
66
+ $plan docs/loopx/design/<需求名>需求设计文档.md
67
67
  ```
68
68
 
69
- For `direct_to_plan`, immediately use the `plan` skill with the clarification context bundle as the source. `plan` writes:
69
+ For `direct_to_plan`, hand off to the `plan` skill with the clarification context bundle as the source. `plan` writes:
70
70
 
71
71
  - `docs/loopx/plans/YYYY-MM-DD-<feature-name>.md`
72
72
 
73
- Do not start code changes or implementation planning from `clarify`.
73
+ Do not write implementation plans or start code changes inside `clarify`.
@@ -3,7 +3,7 @@ name: debug
3
3
  description: "Finds root cause for bugs, failing tests, build failures, regressions, and unexpected behavior before fixes. Not for new feature planning or routine code review."
4
4
  when_to_use: "debug, bug, test failure, build failure, regression, unexpected behavior, root cause, 报错, 失败, 回归, 排查"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Systematic Debugging
@@ -3,7 +3,7 @@ name: exec
3
3
  description: "Executes a written loopx implementation plan sequentially with review checkpoints. Not for unclear plans, missing requirements, or subagent-first execution."
4
4
  when_to_use: "written implementation plan, inline execution, sequential plan execution, review checkpoints, no subagent lane"
5
5
  metadata:
6
- version: "0.2.0"
6
+ version: "0.2.2"
7
7
  ---
8
8
 
9
9
  # Exec
@@ -0,0 +1,89 @@
1
+ ---
2
+ name: final-review
3
+ description: "Performs whole-feature review after implementation and staged task review. Not for per-task review, unresolved scope, implementation, or pure documentation polish."
4
+ when_to_use: "final-review, final code review, whole feature review, integration review, pre-finish review, after subagent-exec, runtime risk review, 最终评审"
5
+ metadata:
6
+ version: "0.2.2"
7
+ ---
8
+
9
+ # Final Review
10
+
11
+ Run the final whole-feature review after implementation is complete and before `finish`.
12
+
13
+ **Core principle:** Per-task review catches local issues. Final review hunts integration and runtime risk across the complete feature.
14
+
15
+ **Announce at start:** "I'm using the final-review skill to review the completed feature."
16
+
17
+ ## When to Use
18
+
19
+ Use this after:
20
+ - `subagent-exec` completed all planned tasks and per-task reviews
21
+ - `exec` completed a full plan with verification checkpoints
22
+ - ad-hoc implementation is complete and ready for final risk review
23
+
24
+ Do not use this for:
25
+ - reviewing one task or one small checkpoint (`review` is for that)
26
+ - fixing review feedback (`fix-review` is for that)
27
+ - polishing documentation wording
28
+ - incomplete implementation or failing verification
29
+
30
+ ## Required Inputs
31
+
32
+ Before dispatching the reviewer, collect:
33
+ - Full feature git range: base SHA before implementation, head SHA now
34
+ - Source requirements: spec, plan, issue, PRD, or accepted task brief
35
+ - Implementation summary: what changed and why
36
+ - Verification evidence: commands run and results
37
+ - Per-task review artifacts, if available
38
+
39
+ If the git range or requirements are unclear, stop and ask. A final review without a concrete scope is not useful.
40
+
41
+ ## Review Priority
42
+
43
+ The reviewer must prioritize findings in this order:
44
+
45
+ 1. Runtime bugs, data loss, broken CLI behavior, state corruption
46
+ 2. Cross-task integration bugs
47
+ 3. Missing edge cases not covered by tests
48
+ 4. Test quality problems
49
+ 5. Architecture and maintainability issues
50
+ 6. Documentation defects that can mislead users or maintainers, omit required operational facts, or contradict actual behavior
51
+
52
+ Do not report pure documentation polish, style preferences, or wording tweaks. Do report documentation problems that create wrong usage, wrong maintenance decisions, missing required commands, missing migration notes, or false claims.
53
+
54
+ ## Dispatch
55
+
56
+ Use the platform's native subagent mechanism when available and fill template at `final-reviewer.md`.
57
+
58
+ **Placeholders:**
59
+ - `{DESCRIPTION}` - concise summary of the completed feature
60
+ - `{REQUIREMENTS}` - source requirements or plan/spec excerpts
61
+ - `{VERIFICATION}` - test commands and results
62
+ - `{PER_TASK_REVIEWS}` - review artifacts or "not available"
63
+ - `{BASE_SHA}` - commit before implementation began
64
+ - `{HEAD_SHA}` - current commit
65
+
66
+ ## Handle Feedback
67
+
68
+ - Critical and Important findings must be handled before `finish`
69
+ - Use `fix-review` for received feedback
70
+ - Push back only with code, test, or requirement evidence
71
+ - After fixes, run verification again and repeat final review if the fix changed integration behavior
72
+
73
+ ## Common Mistakes
74
+
75
+ **Running normal review again**
76
+ - Problem: reviewer repeats per-task or documentation comments
77
+ - Fix: use `final-reviewer.md`, which focuses on whole-feature runtime risk
78
+
79
+ **Letting docs hide real risk**
80
+ - Problem: "docs only" findings are ignored even when users would be misled
81
+ - Fix: distinguish pure polish from operationally incorrect or missing documentation
82
+
83
+ **Reviewing without base/head SHAs**
84
+ - Problem: reviewer sees an unclear or stale diff
85
+ - Fix: provide an exact git range every time
86
+
87
+ **Skipping verification evidence**
88
+ - Problem: reviewer cannot judge whether tests prove real behavior
89
+ - Fix: include exact commands and pass/fail output summary