@fro.bot/systematic 1.23.0 → 1.23.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 (62) hide show
  1. package/agents/research/best-practices-researcher.md +9 -3
  2. package/agents/research/framework-docs-researcher.md +2 -0
  3. package/agents/research/git-history-analyzer.md +9 -6
  4. package/agents/research/issue-intelligence-analyst.md +232 -0
  5. package/agents/research/repo-research-analyst.md +6 -10
  6. package/commands/.gitkeep +0 -0
  7. package/package.json +1 -1
  8. package/skills/agent-browser/SKILL.md +4 -3
  9. package/skills/ce-brainstorm/SKILL.md +242 -52
  10. package/skills/ce-compound/SKILL.md +60 -40
  11. package/skills/ce-compound-refresh/SKILL.md +528 -0
  12. package/skills/ce-ideate/SKILL.md +371 -0
  13. package/skills/ce-plan/SKILL.md +40 -39
  14. package/skills/ce-plan-beta/SKILL.md +572 -0
  15. package/skills/ce-review/SKILL.md +7 -6
  16. package/skills/ce-work/SKILL.md +85 -75
  17. package/skills/create-agent-skill/SKILL.md +1 -1
  18. package/skills/create-agent-skills/SKILL.md +6 -5
  19. package/skills/deepen-plan/SKILL.md +11 -11
  20. package/skills/deepen-plan-beta/SKILL.md +323 -0
  21. package/skills/document-review/SKILL.md +14 -8
  22. package/skills/generate_command/SKILL.md +3 -2
  23. package/skills/lfg/SKILL.md +10 -7
  24. package/skills/report-bug/SKILL.md +15 -14
  25. package/skills/resolve_parallel/SKILL.md +2 -1
  26. package/skills/resolve_todo_parallel/SKILL.md +1 -1
  27. package/skills/slfg/SKILL.md +7 -4
  28. package/skills/test-browser/SKILL.md +3 -3
  29. package/skills/test-xcode/SKILL.md +2 -2
  30. package/agents/workflow/every-style-editor.md +0 -66
  31. package/commands/agent-native-audit.md +0 -279
  32. package/commands/ce/brainstorm.md +0 -145
  33. package/commands/ce/compound.md +0 -240
  34. package/commands/ce/plan.md +0 -636
  35. package/commands/ce/review.md +0 -525
  36. package/commands/ce/work.md +0 -456
  37. package/commands/changelog.md +0 -139
  38. package/commands/create-agent-skill.md +0 -9
  39. package/commands/deepen-plan.md +0 -546
  40. package/commands/deploy-docs.md +0 -120
  41. package/commands/feature-video.md +0 -352
  42. package/commands/generate_command.md +0 -164
  43. package/commands/heal-skill.md +0 -147
  44. package/commands/lfg.md +0 -20
  45. package/commands/report-bug.md +0 -151
  46. package/commands/reproduce-bug.md +0 -100
  47. package/commands/resolve_parallel.md +0 -36
  48. package/commands/resolve_todo_parallel.md +0 -37
  49. package/commands/slfg.md +0 -32
  50. package/commands/test-browser.md +0 -340
  51. package/commands/test-xcode.md +0 -332
  52. package/commands/triage.md +0 -311
  53. package/commands/workflows/brainstorm.md +0 -145
  54. package/commands/workflows/compound.md +0 -10
  55. package/commands/workflows/plan.md +0 -10
  56. package/commands/workflows/review.md +0 -10
  57. package/commands/workflows/work.md +0 -10
  58. package/skills/brainstorming/SKILL.md +0 -190
  59. package/skills/skill-creator/SKILL.md +0 -210
  60. package/skills/skill-creator/scripts/init_skill.py +0 -303
  61. package/skills/skill-creator/scripts/package_skill.py +0 -110
  62. package/skills/skill-creator/scripts/quick_validate.py +0 -65
@@ -23,6 +23,10 @@ This command takes a work document (plan, specification, or todo file) and execu
23
23
  1. **Read Plan and Clarify**
24
24
 
25
25
  - Read the work document completely
26
+ - Treat the plan as a decision artifact, not an execution script
27
+ - If the plan includes sections such as `Implementation Units`, `Work Breakdown`, `Requirements Trace`, `Files`, `Test Scenarios`, or `Verification`, use those as the primary source material for execution
28
+ - Check for a `Deferred to Implementation` or `Implementation-Time Unknowns` section — these are questions the planner intentionally left for you to resolve during execution. Note them before starting so they inform your approach rather than surprising you mid-task
29
+ - Check for a `Scope Boundaries` section — these are explicit non-goals. Refer back to them if implementation starts pulling you toward adjacent work
26
30
  - Review any references or links provided in the plan
27
31
  - If anything is unclear or ambiguous, ask clarifying questions now
28
32
  - Get user approval to proceed
@@ -73,12 +77,35 @@ This command takes a work document (plan, specification, or todo file) and execu
73
77
  - You plan to switch between branches frequently
74
78
 
75
79
  3. **Create Todo List**
76
- - Use todowrite to break plan into actionable tasks
80
+ - Use your available task tracking tool (e.g., todowrite, task lists) to break the plan into actionable tasks
81
+ - Derive tasks from the plan's implementation units, dependencies, files, test targets, and verification criteria
82
+ - For each unit, read the `Patterns to follow` field before implementing — these point to specific files or conventions to mirror
83
+ - Use each unit's `Verification` field as the primary "done" signal for that task
84
+ - Do not expect the plan to contain implementation code, micro-step TDD instructions, or exact shell commands
77
85
  - Include dependencies between tasks
78
86
  - Prioritize based on what needs to be done first
79
87
  - Include testing and quality check tasks
80
88
  - Keep tasks specific and completable
81
89
 
90
+ 4. **Choose Execution Strategy**
91
+
92
+ After creating the task list, decide how to execute based on the plan's size and dependency structure:
93
+
94
+ | Strategy | When to use |
95
+ |----------|-------------|
96
+ | **Inline** | 1-2 small tasks, or tasks needing user interaction mid-flight |
97
+ | **Serial subagents** | 3+ tasks with dependencies between them. Each subagent gets a fresh context window focused on one unit — prevents context degradation across many tasks |
98
+ | **Parallel subagents** | 3+ tasks where some units have no shared dependencies and touch non-overlapping files. Dispatch independent units simultaneously, run dependent units after their prerequisites complete |
99
+
100
+ **Subagent dispatch** uses your available subagent or task spawning mechanism. For each unit, give the subagent:
101
+ - The full plan file path (for overall context)
102
+ - The specific unit's Goal, Files, Approach, Patterns, Test scenarios, and Verification
103
+ - Any resolved deferred questions relevant to that unit
104
+
105
+ After each subagent completes, update the plan checkboxes and task list before dispatching the next dependent unit.
106
+
107
+ For genuinely large plans needing persistent inter-agent communication (agents challenging each other's approaches, shared coordination across 10+ tasks), see Swarm Mode below which uses Agent Teams.
108
+
82
109
  ### Phase 2: Execute
83
110
 
84
111
  1. **Task Execution Loop**
@@ -87,15 +114,14 @@ This command takes a work document (plan, specification, or todo file) and execu
87
114
 
88
115
  ```
89
116
  while (tasks remain):
90
- - Mark task as in_progress in todowrite
117
+ - Mark task as in-progress
91
118
  - Read any referenced files from the plan
92
119
  - Look for similar patterns in codebase
93
120
  - Implement following existing conventions
94
121
  - Write tests for new functionality
95
122
  - Run System-Wide Test Check (see below)
96
123
  - Run tests after changes
97
- - Mark task as completed in todowrite
98
- - Mark off the corresponding checkbox in the plan file ([ ] → [x])
124
+ - Mark task as completed
99
125
  - Evaluate for incremental commit (see below)
100
126
  ```
101
127
 
@@ -113,7 +139,6 @@ This command takes a work document (plan, specification, or todo file) and execu
113
139
 
114
140
  **When this matters most:** Any change that touches models with callbacks, error handling with fallback/retry, or functionality exposed through multiple interfaces.
115
141
 
116
- **IMPORTANT**: Always update the original plan document by checking off completed items. Use the edit tool to change `- [ ]` to `- [x]` for each task you finish. This keeps the plan as a living document showing progress and ensures no checkboxes are left unchecked.
117
142
 
118
143
  2. **Incremental Commits**
119
144
 
@@ -128,6 +153,8 @@ This command takes a work document (plan, specification, or todo file) and execu
128
153
 
129
154
  **Heuristic:** "Can I write a commit message that describes a complete, valuable change? If yes, commit. If the message would be 'WIP' or 'partial X', wait."
130
155
 
156
+ If the plan has Implementation Units, use them as a starting guide for commit boundaries — but adapt based on what you find during implementation. A unit might need multiple commits if it's larger than expected, or small related units might land together. Use each unit's Goal to inform the commit message.
157
+
131
158
  **Commit workflow:**
132
159
  ```bash
133
160
  # 1. Verify tests pass (use project's test command)
@@ -160,7 +187,15 @@ This command takes a work document (plan, specification, or todo file) and execu
160
187
  - Add new tests for new functionality
161
188
  - **Unit tests with mocks prove logic in isolation. Integration tests with real objects prove the layers work together.** If your change touches callbacks, middleware, or error handling — you need both.
162
189
 
163
- 5. **Figma Design Sync** (if applicable)
190
+ 5. **Simplify as You Go**
191
+
192
+ After completing a cluster of related implementation units (or every 2-3 units), review recently changed files for simplification opportunities — consolidate duplicated patterns, extract shared helpers, and improve code reuse and efficiency. This is especially valuable when using subagents, since each agent works with isolated context and can't see patterns emerging across units.
193
+
194
+ Don't simplify after every single unit — early patterns may look duplicated but diverge intentionally in later units. Wait for a natural phase boundary or when you notice accumulated complexity.
195
+
196
+ If a `/simplify` skill or equivalent is available, use it. Otherwise, review the changed files yourself for reuse and consolidation opportunities.
197
+
198
+ 6. **Figma Design Sync** (if applicable)
164
199
 
165
200
  For UI work with Figma designs:
166
201
 
@@ -170,7 +205,7 @@ This command takes a work document (plan, specification, or todo file) and execu
170
205
  - Repeat until implementation matches design
171
206
 
172
207
  6. **Track Progress**
173
- - Keep todowrite updated as you complete tasks
208
+ - Keep the task list updated as you complete tasks
174
209
  - Note any blockers or unexpected discoveries
175
210
  - Create new tasks if scope expands
176
211
  - Keep user informed of major milestones
@@ -185,7 +220,7 @@ This command takes a work document (plan, specification, or todo file) and execu
185
220
  # Run full test suite (use project's test command)
186
221
  # Examples: bin/rails test, npm test, pytest, go test, etc.
187
222
 
188
- # Run linting (per AGENTS.md)
223
+ # Run linting (per CLAUDE.md)
189
224
  # Use linting-agent before pushing to origin
190
225
  ```
191
226
 
@@ -196,12 +231,14 @@ This command takes a work document (plan, specification, or todo file) and execu
196
231
  Run configured agents in parallel with task tool. Present findings and address critical issues.
197
232
 
198
233
  3. **Final Validation**
199
- - All todowrite tasks marked completed
234
+ - All tasks marked completed
200
235
  - All tests pass
201
236
  - Linting passes
202
237
  - Code follows existing patterns
203
238
  - Figma designs match (if applicable)
204
239
  - No console errors or warnings
240
+ - If the plan has a `Requirements Trace`, verify each requirement is satisfied by the completed work
241
+ - If any `Deferred to Implementation` questions were noted, confirm they were resolved during execution
205
242
 
206
243
  4. **Prepare Operational Validation Plan** (REQUIRED)
207
244
  - Add a `## Post-Deploy Monitoring & Validation` section to the PR description for every change.
@@ -228,13 +265,28 @@ This command takes a work document (plan, specification, or todo file) and execu
228
265
 
229
266
  Brief explanation if needed.
230
267
 
231
- 🤖 Generated with [OpenCode](https://claude.com/claude-code)
268
+ 🤖 Generated with [MODEL] via [HARNESS](HARNESS_URL) + Compound Engineering v[VERSION]
232
269
 
233
- Co-Authored-By: Claude <noreply@anthropic.com>
270
+ Co-Authored-By: [MODEL] ([CONTEXT] context, [THINKING]) <noreply@anthropic.com>
234
271
  EOF
235
272
  )"
236
273
  ```
237
274
 
275
+ **Fill in at commit/PR time:**
276
+
277
+ | Placeholder | Value | Example |
278
+ |-------------|-------|---------|
279
+ | Placeholder | Value | Example |
280
+ |-------------|-------|---------|
281
+ | `[MODEL]` | Model name | Claude Opus 4.6, GPT-5.4 |
282
+ | `[CONTEXT]` | Context window (if known) | 200K, 1M |
283
+ | `[THINKING]` | Thinking level (if known) | extended thinking |
284
+ | `[HARNESS]` | Tool running you | OpenCode, Codex, Gemini CLI |
285
+ | `[HARNESS_URL]` | Link to that tool | `https://claude.com/claude-code` |
286
+ | `[VERSION]` | `plugin.json` → `version` | 2.40.0 |
287
+
288
+ Subagents creating commits/PRs are equally responsible for accurate attribution.
289
+
238
290
  2. **Capture and Upload Screenshots for UI Changes** (REQUIRED for any UI work)
239
291
 
240
292
  For **any** design changes, new views, or UI modifications, you MUST capture and upload screenshots:
@@ -308,7 +360,8 @@ This command takes a work document (plan, specification, or todo file) and execu
308
360
 
309
361
  ---
310
362
 
311
- [![Compound Engineered](https://img.shields.io/badge/Compound-Engineered-6366f1)](https://github.com/EveryInc/compound-engineering-plugin) 🤖 Generated with [OpenCode](https://claude.com/claude-code)
363
+ [![Compound Engineering v[VERSION]](https://img.shields.io/badge/Compound_Engineering-v[VERSION]-6366f1)](https://github.com/EveryInc/compound-engineering-plugin)
364
+ 🤖 Generated with [MODEL] ([CONTEXT] context, [THINKING]) via [HARNESS](HARNESS_URL)
312
365
  EOF
313
366
  )"
314
367
  ```
@@ -328,73 +381,30 @@ This command takes a work document (plan, specification, or todo file) and execu
328
381
 
329
382
  ---
330
383
 
331
- ## Swarm Mode (Optional)
384
+ ## Swarm Mode with Agent Teams (Optional)
332
385
 
333
- For complex plans with multiple independent workstreams, enable swarm mode for parallel execution with coordinated agents.
386
+ For genuinely large plans where agents need to communicate with each other, challenge approaches, or coordinate across 10+ tasks with persistent specialized roles, use agent team capabilities if available (e.g., Agent Teams in OpenCode, multi-agent workflows in Codex).
334
387
 
335
- ### When to Use Swarm Mode
388
+ **Agent teams are typically experimental and require opt-in.** Do not attempt to use agent teams unless the user explicitly requests swarm mode or agent teams, and the platform supports it.
336
389
 
337
- | Use Swarm Mode when... | Use Standard Mode when... |
338
- |------------------------|---------------------------|
339
- | Plan has 5+ independent tasks | Plan is linear/sequential |
340
- | Multiple specialists needed (review + test + implement) | Single-focus work |
341
- | Want maximum parallelism | Simpler mental model preferred |
342
- | Large feature with clear phases | Small feature or bug fix |
390
+ ### When to Use Agent Teams vs Subagents
343
391
 
344
- ### Enabling Swarm Mode
392
+ | Agent Teams | Subagents (standard mode) |
393
+ |-------------|---------------------------|
394
+ | Agents need to discuss and challenge each other's approaches | Each task is independent — only the result matters |
395
+ | Persistent specialized roles (e.g., dedicated tester running continuously) | Workers report back and finish |
396
+ | 10+ tasks with complex cross-cutting coordination | 3-8 tasks with clear dependency chains |
397
+ | User explicitly requests "swarm mode" or "agent teams" | Default for most plans |
345
398
 
346
- To trigger swarm execution, say:
399
+ Most plans should use subagent dispatch from standard mode. Agent teams add significant token cost and coordination overhead — use them when the inter-agent communication genuinely improves the outcome.
347
400
 
348
- > "Make a Task list and launch an army of agent swarm subagents to build the plan"
349
-
350
- Or explicitly request: "Use swarm mode for this work"
351
-
352
- ### Swarm Workflow
353
-
354
- When swarm mode is enabled, the workflow changes:
355
-
356
- 1. **Create Team**
357
- ```
358
- Teammate({ operation: "spawnTeam", team_name: "work-{timestamp}" })
359
- ```
360
-
361
- 2. **Create Task List with Dependencies**
362
- - Parse plan into TaskCreate items
363
- - Set up blockedBy relationships for sequential dependencies
364
- - Independent tasks have no blockers (can run in parallel)
365
-
366
- 3. **Spawn Specialized Teammates**
367
- ```
368
- task({
369
- team_name: "work-{timestamp}",
370
- name: "implementer",
371
- subagent_type: "general-purpose",
372
- prompt: "Claim implementation tasks, execute, mark complete",
373
- run_in_background: true
374
- })
375
-
376
- task({
377
- team_name: "work-{timestamp}",
378
- name: "tester",
379
- subagent_type: "general-purpose",
380
- prompt: "Claim testing tasks, run tests, mark complete",
381
- run_in_background: true
382
- })
383
- ```
384
-
385
- 4. **Coordinate and Monitor**
386
- - Team lead monitors task completion
387
- - Spawn additional workers as phases unblock
388
- - Handle plan approval if required
389
-
390
- 5. **Cleanup**
391
- ```
392
- Teammate({ operation: "requestShutdown", target_agent_id: "implementer" })
393
- Teammate({ operation: "requestShutdown", target_agent_id: "tester" })
394
- Teammate({ operation: "cleanup" })
395
- ```
401
+ ### Agent Teams Workflow
396
402
 
397
- See the `orchestrating-swarms` skill for detailed swarm patterns and best practices.
403
+ 1. **Create team** use your available team creation mechanism
404
+ 2. **Create task list** — parse Implementation Units into tasks with dependency relationships
405
+ 3. **Spawn teammates** — assign specialized roles (implementer, tester, reviewer) based on the plan's needs. Give each teammate the plan file path and their specific task assignments
406
+ 4. **Coordinate** — the lead monitors task completion, reassigns work if someone gets stuck, and spawns additional workers as phases unblock
407
+ 5. **Cleanup** — shut down all teammates, then clean up the team resources
398
408
 
399
409
  ---
400
410
 
@@ -436,7 +446,7 @@ See the `orchestrating-swarms` skill for detailed swarm patterns and best practi
436
446
  Before creating PR, verify:
437
447
 
438
448
  - [ ] All clarifying questions asked and answered
439
- - [ ] All todowrite tasks marked completed
449
+ - [ ] All tasks marked completed
440
450
  - [ ] Tests pass (run project's test command)
441
451
  - [ ] Linting passes (use linting-agent)
442
452
  - [ ] Code follows existing patterns
@@ -445,7 +455,7 @@ Before creating PR, verify:
445
455
  - [ ] Commit messages follow conventional format
446
456
  - [ ] PR description includes Post-Deploy Monitoring & Validation section (or explicit no-impact rationale)
447
457
  - [ ] PR description includes summary, testing notes, and screenshots
448
- - [ ] PR description includes Compound Engineered badge
458
+ - [ ] PR description includes Compound Engineered badge with accurate model, harness, and version
449
459
 
450
460
  ## When to Use Reviewer Agents
451
461
 
@@ -465,7 +475,7 @@ For most features: tests + linting + following patterns is sufficient.
465
475
  - **Skipping clarifying questions** - Ask now, not after building wrong thing
466
476
  - **Ignoring plan references** - The plan has links for a reason
467
477
  - **Testing at the end** - Test continuously or suffer later
468
- - **Forgetting todowrite** - Track progress or lose track of what's done
478
+ - **Forgetting to track progress** - Update task status as you go or lose track of what's done
469
479
  - **80% done syndrome** - Finish the feature, don't move on early
470
480
  - **Over-reviewing simple changes** - Save reviewer agents for complex work
471
481
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: create-agent-skill
3
3
  description: Create or edit OpenCode skills with expert guidance on structure and best practices
4
- allowed-tools: systematic_skill(create-agent-skills)
4
+ allowed-tools: Skill(create-agent-skills)
5
5
  argument-hint: '[skill description or requirements]'
6
6
  disable-model-invocation: true
7
7
  ---
@@ -22,7 +22,7 @@ Custom slash commands have been merged into skills. A file at `.opencode/command
22
22
 
23
23
  **Use a skill directory** (`skills/name/SKILL.md`) when:
24
24
  - Need supporting reference files, scripts, or templates
25
- - Background knowledge Claude should auto-load
25
+ - Background knowledge OpenCode should auto-load
26
26
  - Complex enough to benefit from progressive disclosure
27
27
 
28
28
  Both use identical YAML frontmatter and markdown content format.
@@ -56,18 +56,18 @@ All fields are optional. Only `description` is recommended.
56
56
  | Field | Required | Description |
57
57
  |-------|----------|-------------|
58
58
  | `name` | No | Display name. Lowercase letters, numbers, hyphens (max 64 chars). Defaults to directory name. |
59
- | `description` | Recommended | What it does AND when to use it. Claude uses this for auto-discovery. Max 1024 chars. |
59
+ | `description` | Recommended | What it does AND when to use it. OpenCode uses this for auto-discovery. Max 1024 chars. |
60
60
  | `argument-hint` | No | Hint shown during autocomplete. Example: `[issue-number]` |
61
- | `disable-model-invocation` | No | Set `true` to prevent Claude auto-loading. Use for manual workflows like `/deploy`, `/commit`. Default: `false`. |
61
+ | `disable-model-invocation` | No | Set `true` to prevent OpenCode auto-loading. Use for manual workflows like `/deploy`, `/commit`. Default: `false`. |
62
62
  | `user-invocable` | No | Set `false` to hide from `/` menu. Use for background knowledge. Default: `true`. |
63
- | `allowed-tools` | No | Tools Claude can use without permission prompts. Example: `Read, Bash(git *)` |
63
+ | `allowed-tools` | No | Tools OpenCode can use without permission prompts. Example: `Read, Bash(git *)` |
64
64
  | `model` | No | Model to use. Options: `haiku`, `sonnet`, `opus`. |
65
65
  | `context` | No | Set `fork` to run in isolated subagent context. |
66
66
  | `agent` | No | Subagent type when `context: fork`. Options: `Explore`, `Plan`, `general-purpose`, or custom agent name. |
67
67
 
68
68
  ### Invocation Control
69
69
 
70
- | Frontmatter | User can invoke | Claude can invoke | When loaded |
70
+ | Frontmatter | User can invoke | OpenCode can invoke | When loaded |
71
71
  |-------------|----------------|-------------------|-------------|
72
72
  | (default) | Yes | Yes | Description always in context, full content loads when invoked |
73
73
  | `disable-model-invocation: true` | Yes | No | Description not in context, loads only when user invokes |
@@ -262,3 +262,4 @@ For detailed guidance, see:
262
262
 
263
263
  - [Extend Claude with skills - Official Docs](https://code.claude.com/docs/en/skills)
264
264
  - [GitHub - anthropics/skills](https://github.com/anthropics/skills)
265
+
@@ -10,7 +10,7 @@ argument-hint: '[path to plan file]'
10
10
 
11
11
  **Note: The current year is 2026.** Use this when searching for recent documentation and best practices.
12
12
 
13
- This command takes an existing plan (from `/ce:plan`) and enhances each section with parallel research agents. Each major element gets its own dedicated research sub-agent to find:
13
+ This command takes an existing plan (from `/systematic:ce-plan`) and enhances each section with parallel research agents. Each major element gets its own dedicated research sub-agent to find:
14
14
  - Best practices and industry patterns
15
15
  - Performance optimizations
16
16
  - UI/UX improvements (if applicable)
@@ -68,7 +68,7 @@ Dynamically discover all available skills and match them to plan sections. Don't
68
68
  ls .opencode/skills/
69
69
 
70
70
  # 2. User's global skills (~/.config/opencode/)
71
- ls ~/.config/opencode/skills/
71
+ ls ~/.opencode/skills/
72
72
 
73
73
  # 3. compound-engineering plugin skills
74
74
  ls ~/.config/opencode/plugins/cache/*/compound-engineering/*/skills/
@@ -137,7 +137,7 @@ Task general-purpose: "Use the frontend-design skill at ~/.config/opencode/plugi
137
137
 
138
138
  Task general-purpose: "Use the agent-native-architecture skill at ~/.config/opencode/plugins/.../agent-native-architecture. Read SKILL.md and apply it to: [agent/tool sections of plan]"
139
139
 
140
- Task general-purpose: "Use the security-patterns skill at ~/.config/opencode/skills/security-patterns. Read SKILL.md and apply it to: [full plan]"
140
+ Task general-purpose: "Use the security-patterns skill at ~/.opencode/skills/security-patterns. Read SKILL.md and apply it to: [full plan]"
141
141
  ```
142
142
 
143
143
  **No limit on skill sub-agents. Spawn one for every skill that could possibly be relevant.**
@@ -145,13 +145,13 @@ Task general-purpose: "Use the security-patterns skill at ~/.config/opencode/ski
145
145
  ### 3. Discover and Apply Learnings/Solutions
146
146
 
147
147
  <thinking>
148
- Check for documented learnings from /ce:compound. These are solved problems stored as markdown files. Spawn a sub-agent for each learning to check if it's relevant.
148
+ Check for documented learnings from /systematic:ce-compound. These are solved problems stored as markdown files. Spawn a sub-agent for each learning to check if it's relevant.
149
149
  </thinking>
150
150
 
151
151
  **LEARNINGS LOCATION - Check these exact folders:**
152
152
 
153
153
  ```
154
- docs/solutions/ <-- PRIMARY: Project-level learnings (created by /ce:compound)
154
+ docs/solutions/ <-- PRIMARY: Project-level learnings (created by /systematic:ce-compound)
155
155
  ├── performance-issues/
156
156
  │ └── *.md
157
157
  ├── debugging-patterns/
@@ -175,7 +175,7 @@ Run these commands to get every learning file:
175
175
  find docs/solutions -name "*.md" -type f 2>/dev/null
176
176
 
177
177
  # If docs/solutions doesn't exist, check alternate locations:
178
- find .opencode/docs -name "*.md" -type f 2>/dev/null
178
+ find .claude/docs -name "*.md" -type f 2>/dev/null
179
179
  find ~/.config/opencode/docs -name "*.md" -type f 2>/dev/null
180
180
  ```
181
181
 
@@ -305,7 +305,7 @@ Dynamically discover every available agent and run them ALL against the plan. Do
305
305
 
306
306
  ```bash
307
307
  # 1. Project-local agents (highest priority - project-specific)
308
- find .opencode/agents -name "*.md" 2>/dev/null
308
+ find .claude/agents -name "*.md" 2>/dev/null
309
309
 
310
310
  # 2. User's global agents (~/.config/opencode/)
311
311
  find ~/.config/opencode/agents -name "*.md" 2>/dev/null
@@ -324,7 +324,7 @@ cat ~/.config/opencode/plugins/installed_plugins.json
324
324
  ```
325
325
 
326
326
  **Important:** Check EVERY source. Include agents from:
327
- - Project `.opencode/agents/`
327
+ - Project `.claude/agents/`
328
328
  - User's `~/.config/opencode/agents/`
329
329
  - compound-engineering plugin (but SKIP workflow/ agents - only use review/, research/, design/, docs/)
330
330
  - ALL other installed plugins (agent-sdk-dev, frontend-design, etc.)
@@ -370,7 +370,7 @@ Wait for ALL parallel agents to complete - skills, research agents, review agent
370
370
  **Collect outputs from ALL sources:**
371
371
 
372
372
  1. **Skill-based sub-agents** - Each skill's full output (code examples, patterns, recommendations)
373
- 2. **Learnings/Solutions sub-agents** - Relevant documented learnings from /ce:compound
373
+ 2. **Learnings/Solutions sub-agents** - Relevant documented learnings from /systematic:ce-compound
374
374
  3. **Research agents** - Best practices, documentation, real-world examples
375
375
  4. **Review agents** - All feedback from every reviewer (architecture, security, performance, simplicity, etc.)
376
376
  5. **Context7 queries** - Framework documentation and patterns
@@ -480,13 +480,13 @@ After writing the enhanced plan, use the **question tool** to present these opti
480
480
 
481
481
  **Options:**
482
482
  1. **View diff** - Show what was added/changed
483
- 2. **Start `/ce:work`** - Begin implementing this enhanced plan
483
+ 2. **Start `/systematic:ce-work`** - Begin implementing this enhanced plan
484
484
  3. **Deepen further** - Run another round of research on specific sections
485
485
  4. **Revert** - Restore original plan (if backup exists)
486
486
 
487
487
  Based on selection:
488
488
  - **View diff** → Run `git diff [plan_path]` or show before/after
489
- - **`/ce:work`** → Call the /ce:work command with the plan file path
489
+ - **`/systematic:ce-work`** → Call the /systematic:ce-work command with the plan file path
490
490
  - **Deepen further** → Ask which sections need more research, then re-run those agents
491
491
  - **Revert** → Restore from git or backup
492
492