@fro.bot/systematic 1.22.8 → 1.23.1

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 (60) 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 +511 -169
  9. package/skills/agent-browser/references/authentication.md +303 -0
  10. package/skills/agent-browser/references/commands.md +266 -0
  11. package/skills/agent-browser/references/profiling.md +120 -0
  12. package/skills/agent-browser/references/proxy-support.md +194 -0
  13. package/skills/agent-browser/references/session-management.md +193 -0
  14. package/skills/agent-browser/references/snapshot-refs.md +194 -0
  15. package/skills/agent-browser/references/video-recording.md +173 -0
  16. package/skills/agent-browser/templates/authenticated-session.sh +105 -0
  17. package/skills/agent-browser/templates/capture-workflow.sh +69 -0
  18. package/skills/agent-browser/templates/form-automation.sh +62 -0
  19. package/skills/ce-brainstorm/SKILL.md +336 -0
  20. package/{commands/ce/compound.md → skills/ce-compound/SKILL.md} +106 -9
  21. package/skills/ce-compound-refresh/SKILL.md +528 -0
  22. package/skills/ce-ideate/SKILL.md +371 -0
  23. package/{commands/ce/plan.md → skills/ce-plan/SKILL.md} +73 -66
  24. package/skills/ce-plan-beta/SKILL.md +572 -0
  25. package/{commands/ce/review.md → skills/ce-review/SKILL.md} +53 -18
  26. package/{commands/ce/work.md → skills/ce-work/SKILL.md} +88 -63
  27. package/{commands/create-agent-skill.md → skills/create-agent-skill/SKILL.md} +1 -0
  28. package/skills/create-agent-skills/SKILL.md +9 -19
  29. package/{commands/deepen-plan.md → skills/deepen-plan/SKILL.md} +35 -36
  30. package/skills/deepen-plan-beta/SKILL.md +323 -0
  31. package/{commands/deploy-docs.md → skills/deploy-docs/SKILL.md} +26 -33
  32. package/skills/document-review/SKILL.md +14 -8
  33. package/{commands/generate_command.md → skills/generate_command/SKILL.md} +5 -5
  34. package/{commands/heal-skill.md → skills/heal-skill/SKILL.md} +1 -0
  35. package/skills/lfg/SKILL.md +37 -0
  36. package/{commands/report-bug.md → skills/report-bug/SKILL.md} +16 -15
  37. package/{commands/reproduce-bug.md → skills/reproduce-bug/SKILL.md} +10 -9
  38. package/{commands/resolve_todo_parallel.md → skills/resolve_todo_parallel/SKILL.md} +2 -1
  39. package/{commands/slfg.md → skills/slfg/SKILL.md} +8 -4
  40. package/{commands/test-browser.md → skills/test-browser/SKILL.md} +67 -13
  41. package/{commands/test-xcode.md → skills/test-xcode/SKILL.md} +4 -3
  42. package/{commands/triage.md → skills/triage/SKILL.md} +2 -1
  43. package/skills/workflows-brainstorm/SKILL.md +11 -0
  44. package/{commands/workflows/compound.md → skills/workflows-compound/SKILL.md} +2 -2
  45. package/{commands/workflows/plan.md → skills/workflows-plan/SKILL.md} +2 -2
  46. package/{commands/workflows/review.md → skills/workflows-review/SKILL.md} +2 -2
  47. package/{commands/workflows/work.md → skills/workflows-work/SKILL.md} +2 -2
  48. package/agents/workflow/every-style-editor.md +0 -66
  49. package/commands/ce/brainstorm.md +0 -145
  50. package/commands/lfg.md +0 -20
  51. package/commands/workflows/brainstorm.md +0 -145
  52. package/skills/brainstorming/SKILL.md +0 -190
  53. package/skills/skill-creator/SKILL.md +0 -210
  54. package/skills/skill-creator/scripts/init_skill.py +0 -303
  55. package/skills/skill-creator/scripts/package_skill.py +0 -110
  56. package/skills/skill-creator/scripts/quick_validate.py +0 -65
  57. /package/{commands/agent-native-audit.md → skills/agent-native-audit/SKILL.md} +0 -0
  58. /package/{commands/changelog.md → skills/changelog/SKILL.md} +0 -0
  59. /package/{commands/feature-video.md → skills/feature-video/SKILL.md} +0 -0
  60. /package/{commands/resolve_parallel.md → skills/resolve_parallel/SKILL.md} +0 -0
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: ce:plan
3
3
  description: Transform feature descriptions into well-structured project plans following conventions
4
- argument-hint: "[feature description, bug report, or improvement idea]"
4
+ argument-hint: '[feature description, bug report, or improvement idea]'
5
5
  ---
6
6
 
7
7
  # Create a plan for a new feature or bug fix
@@ -22,40 +22,41 @@ Do not proceed until you have a clear feature description from the user.
22
22
 
23
23
  ### 0. Idea Refinement
24
24
 
25
- **Check for brainstorm output first:**
25
+ **Check for requirements document first:**
26
26
 
27
- Before asking questions, look for recent brainstorm documents in `docs/brainstorms/` that match this feature:
27
+ Before asking questions, look for recent requirements documents in `docs/brainstorms/` that match this feature:
28
28
 
29
29
  ```bash
30
- ls -la docs/brainstorms/*.md 2>/dev/null | head -10
30
+ ls -la docs/brainstorms/*-requirements.md 2>/dev/null | head -10
31
31
  ```
32
32
 
33
- **Relevance criteria:** A brainstorm is relevant if:
33
+ **Relevance criteria:** A requirements document is relevant if:
34
34
  - The topic (from filename or YAML frontmatter) semantically matches the feature description
35
35
  - Created within the last 14 days
36
36
  - If multiple candidates match, use the most recent one
37
37
 
38
- **If a relevant brainstorm exists:**
39
- 1. Read the brainstorm document **thoroughly** — every section matters
40
- 2. Announce: "Found brainstorm from [date]: [topic]. Using as foundation for planning."
38
+ **If a relevant requirements document exists:**
39
+ 1. Read the source document **thoroughly** — every section matters
40
+ 2. Announce: "Found source document from [date]: [topic]. Using as foundation for planning."
41
41
  3. Extract and carry forward **ALL** of the following into the plan:
42
42
  - Key decisions and their rationale
43
43
  - Chosen approach and why alternatives were rejected
44
- - Constraints and requirements discovered during brainstorming
45
- - Open questions (flag these for resolution during planning)
44
+ - Problem framing, constraints, and requirements captured during brainstorming
45
+ - Outstanding questions, preserving whether they block planning or are intentionally deferred
46
46
  - Success criteria and scope boundaries
47
- - Any specific technical choices or patterns discussed
48
- 4. **Skip the idea refinement questions below** — the brainstorm already answered WHAT to build
49
- 5. Use brainstorm content as the **primary input** to research and planning phases
50
- 6. **Critical: The brainstorm is the origin document.** Throughout the plan, reference specific decisions with `(see brainstorm: docs/brainstorms/<filename>)` when carrying forward conclusions. Do not paraphrase decisions in a way that loses their original context — link back to the source.
51
- 7. **Do not omit brainstorm content** — if the brainstorm discussed it, the plan must address it (even if briefly). Scan each brainstorm section before finalizing the plan to verify nothing was dropped.
47
+ - Dependencies and assumptions, plus any high-level technical direction only when the origin document is inherently technical
48
+ 4. **Skip the idea refinement questions below** — the source document already answered WHAT to build
49
+ 5. Use source document content as the **primary input** to research and planning phases
50
+ 6. **Critical: The source document is the origin document.** Throughout the plan, reference specific decisions with `(see origin: <source-path>)` when carrying forward conclusions. Do not paraphrase decisions in a way that loses their original context — link back to the source.
51
+ 7. **Do not omit source content** — if the source document discussed it, the plan must address it (even if briefly). Scan each section before finalizing the plan to verify nothing was dropped.
52
+ 8. **If `Resolve Before Planning` contains any items, stop.** Do not proceed with planning. Tell the user planning is blocked by unanswered brainstorm questions and direct them to resume `/systematic:ce-brainstorm` or answer those questions first.
52
53
 
53
- **If multiple brainstorms could match:**
54
- Use **AskUserQuestion tool** to ask which brainstorm to use, or whether to proceed without one.
54
+ **If multiple source documents could match:**
55
+ Use **question tool** to ask which source document to use, or whether to proceed without one.
55
56
 
56
- **If no brainstorm found (or not relevant), run idea refinement:**
57
+ **If no requirements document is found (or not relevant), run idea refinement:**
57
58
 
58
- Refine the idea through collaborative dialogue using the **AskUserQuestion tool**:
59
+ Refine the idea through collaborative dialogue using the **question tool**:
59
60
 
60
61
  - Ask questions one at a time to understand the idea fully
61
62
  - Prefer multiple choice questions when natural options exist
@@ -82,8 +83,8 @@ First, I need to understand the project's conventions, existing patterns, and an
82
83
 
83
84
  Run these agents **in parallel** to gather local context:
84
85
 
85
- - task repo-research-analyst(feature_description)
86
- - task learnings-researcher(feature_description)
86
+ - task systematic:research:repo-research-analyst(feature_description)
87
+ - task systematic:research:learnings-researcher(feature_description)
87
88
 
88
89
  **What to look for:**
89
90
  - **Repo research:** existing patterns, AGENTS.md guidance, technology familiarity, pattern consistency
@@ -113,8 +114,8 @@ Examples:
113
114
 
114
115
  Run these agents in parallel:
115
116
 
116
- - Task best-practices-researcher(feature_description)
117
- - Task framework-docs-researcher(feature_description)
117
+ - task systematic:research:best-practices-researcher(feature_description)
118
+ - task systematic:research:framework-docs-researcher(feature_description)
118
119
 
119
120
  ### 1.6. Consolidate Research
120
121
 
@@ -138,8 +139,11 @@ Think like a product manager - what would make this issue clear and actionable?
138
139
 
139
140
  - [ ] Draft clear, searchable issue title using conventional format (e.g., `feat: Add user authentication`, `fix: Cart total calculation`)
140
141
  - [ ] Determine issue type: enhancement, bug, refactor
141
- - [ ] Convert title to filename: add today's date prefix, strip prefix colon, kebab-case, add `-plan` suffix
142
- - Example: `feat: Add User Authentication` `2026-01-21-feat-add-user-authentication-plan.md`
142
+ - [ ] Convert title to filename: add today's date prefix, determine daily sequence number, strip prefix colon, kebab-case, add `-plan` suffix
143
+ - Scan `docs/plans/` for files matching today's date pattern `YYYY-MM-DD-\d{3}-`
144
+ - Find the highest existing sequence number for today
145
+ - Increment by 1, zero-padded to 3 digits (001, 002, etc.)
146
+ - Example: `feat: Add User Authentication` → `2026-01-21-001-feat-add-user-authentication-plan.md`
143
147
  - Keep it descriptive (3-5 words after prefix) so plans are findable by context
144
148
 
145
149
  **Stakeholder Analysis:**
@@ -158,7 +162,7 @@ Think like a product manager - what would make this issue clear and actionable?
158
162
 
159
163
  After planning the issue structure, run SpecFlow Analyzer to validate and refine the feature specification:
160
164
 
161
- - Task compound-engineering:workflow:spec-flow-analyzer(feature_description, research_findings)
165
+ - task systematic:workflow:spec-flow-analyzer(feature_description, research_findings)
162
166
 
163
167
  **SpecFlow Analyzer Output:**
164
168
 
@@ -188,7 +192,7 @@ title: [Issue Title]
188
192
  type: [feat|fix|refactor]
189
193
  status: active
190
194
  date: YYYY-MM-DD
191
- origin: docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md # if originated from brainstorm, otherwise omit
195
+ origin: docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md # if originated from a requirements doc, otherwise omit
192
196
  ---
193
197
 
194
198
  # [Issue Title]
@@ -218,7 +222,7 @@ end
218
222
 
219
223
  ## Sources
220
224
 
221
- - **Origin brainstorm:** [docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md](path) — include if plan originated from a brainstorm
225
+ - **Origin document:** [docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md](path) — include if plan originated from an upstream requirements doc
222
226
  - Related issue: #[issue_number]
223
227
  - Documentation: [relevant_docs_url]
224
228
  ````
@@ -243,7 +247,7 @@ title: [Issue Title]
243
247
  type: [feat|fix|refactor]
244
248
  status: active
245
249
  date: YYYY-MM-DD
246
- origin: docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md # if originated from brainstorm, otherwise omit
250
+ origin: docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md # if originated from a requirements doc, otherwise omit
247
251
  ---
248
252
 
249
253
  # [Issue Title]
@@ -290,7 +294,7 @@ origin: docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md # if originated from
290
294
 
291
295
  ## Sources & References
292
296
 
293
- - **Origin brainstorm:** [docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md](path) — include if plan originated from a brainstorm
297
+ - **Origin document:** [docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md](path) — include if plan originated from an upstream requirements doc
294
298
  - Similar implementations: [file_path:line_number]
295
299
  - Best practices: [documentation_url]
296
300
  - Related PRs: #[pr_number]
@@ -318,7 +322,7 @@ title: [Issue Title]
318
322
  type: [feat|fix|refactor]
319
323
  status: active
320
324
  date: YYYY-MM-DD
321
- origin: docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md # if originated from brainstorm, otherwise omit
325
+ origin: docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md # if originated from a requirements doc, otherwise omit
322
326
  ---
323
327
 
324
328
  # [Issue Title]
@@ -433,7 +437,7 @@ origin: docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md # if originated from
433
437
 
434
438
  ### Origin
435
439
 
436
- - **Brainstorm document:** [docs/brainstorms/YYYY-MM-DD-<topic>-brainstorm.md](path) — include if plan originated from a brainstorm. Key decisions carried forward: [list 2-3 major decisions from brainstorm]
440
+ - **Origin document:** [docs/brainstorms/YYYY-MM-DD-<topic>-requirements.md](path) — include if plan originated from an upstream requirements doc. Key decisions carried forward: [list 2-3 major decisions from the origin]
437
441
 
438
442
  ### Internal References
439
443
 
@@ -512,15 +516,15 @@ end
512
516
 
513
517
  ### 6. Final Review & Submission
514
518
 
515
- **Brainstorm cross-check (if plan originated from a brainstorm):**
519
+ **Origin document cross-check (if plan originated from a requirements doc):**
516
520
 
517
- Before finalizing, re-read the brainstorm document and verify:
518
- - [ ] Every key decision from the brainstorm is reflected in the plan
519
- - [ ] The chosen approach matches what was decided in the brainstorm
520
- - [ ] Constraints and requirements from the brainstorm are captured in acceptance criteria
521
- - [ ] Open questions from the brainstorm are either resolved or flagged
522
- - [ ] The `origin:` frontmatter field points to the brainstorm file
523
- - [ ] The Sources section includes the brainstorm with a summary of carried-forward decisions
521
+ Before finalizing, re-read the origin document and verify:
522
+ - [ ] Every key decision from the origin document is reflected in the plan
523
+ - [ ] The chosen approach matches what was decided in the origin document
524
+ - [ ] Constraints and requirements from the origin document are captured in acceptance criteria
525
+ - [ ] Open questions from the origin document are either resolved or flagged
526
+ - [ ] The `origin:` frontmatter field points to the correct source file
527
+ - [ ] The Sources section includes the origin document with a summary of carried-forward decisions
524
528
 
525
529
  **Pre-submission Checklist:**
526
530
 
@@ -538,51 +542,53 @@ Before finalizing, re-read the brainstorm document and verify:
538
542
 
539
543
  ```bash
540
544
  mkdir -p docs/plans/
545
+ # Determine daily sequence number
546
+ today=$(date +%Y-%m-%d)
547
+ last_seq=$(ls docs/plans/${today}-*-plan.md 2>/dev/null | grep -oP "${today}-\K\d{3}" | sort -n | tail -1)
548
+ next_seq=$(printf "%03d" $(( ${last_seq:-0} + 1 )))
541
549
  ```
542
550
 
543
- Use the Write tool to save the complete plan to `docs/plans/YYYY-MM-DD-<type>-<descriptive-name>-plan.md`. This step is mandatory and cannot be skipped — even when running as part of LFG/SLFG or other automated pipelines.
551
+ Use the write tool to save the complete plan to `docs/plans/YYYY-MM-DD-NNN-<type>-<descriptive-name>-plan.md` (where NNN is `$next_seq` from the bash command above). This step is mandatory and cannot be skipped — even when running as part of LFG/SLFG or other automated pipelines.
544
552
 
545
553
  Confirm: "Plan written to docs/plans/[filename]"
546
554
 
547
- **Pipeline mode:** If invoked from an automated workflow (LFG, SLFG, or any `disable-model-invocation` context), skip all AskUserQuestion calls. Make decisions automatically and proceed to writing the plan without interactive prompts.
555
+ **Pipeline mode:** If invoked from an automated workflow (LFG, SLFG, or any `disable-model-invocation` context), skip all question calls. Make decisions automatically and proceed to writing the plan without interactive prompts.
548
556
 
549
557
  ## Output Format
550
558
 
551
- **Filename:** Use the date and kebab-case filename from Step 2 Title & Categorization.
559
+ **Filename:** Use the date, daily sequence number, and kebab-case filename from Step 2 Title & Categorization.
552
560
 
553
561
  ```
554
- docs/plans/YYYY-MM-DD-<type>-<descriptive-name>-plan.md
562
+ docs/plans/YYYY-MM-DD-NNN-<type>-<descriptive-name>-plan.md
555
563
  ```
556
564
 
557
565
  Examples:
558
- - ✅ `docs/plans/2026-01-15-feat-user-authentication-flow-plan.md`
559
- - ✅ `docs/plans/2026-02-03-fix-checkout-race-condition-plan.md`
560
- - ✅ `docs/plans/2026-03-10-refactor-api-client-extraction-plan.md`
561
- - ❌ `docs/plans/2026-01-15-feat-thing-plan.md` (not descriptive - what "thing"?)
562
- - ❌ `docs/plans/2026-01-15-feat-new-feature-plan.md` (too vague - what feature?)
563
- - ❌ `docs/plans/2026-01-15-feat: user auth-plan.md` (invalid characters - colon and space)
564
- - ❌ `docs/plans/feat-user-auth-plan.md` (missing date prefix)
566
+ - ✅ `docs/plans/2026-01-15-001-feat-user-authentication-flow-plan.md`
567
+ - ✅ `docs/plans/2026-02-03-001-fix-checkout-race-condition-plan.md`
568
+ - ✅ `docs/plans/2026-03-10-002-refactor-api-client-extraction-plan.md`
569
+ - ❌ `docs/plans/2026-01-15-feat-thing-plan.md` (missing sequence number, not descriptive)
570
+ - ❌ `docs/plans/2026-01-15-001-feat-new-feature-plan.md` (too vague - what feature?)
571
+ - ❌ `docs/plans/2026-01-15-001-feat: user auth-plan.md` (invalid characters - colon and space)
572
+ - ❌ `docs/plans/feat-user-auth-plan.md` (missing date prefix and sequence number)
565
573
 
566
574
  ## Post-Generation Options
567
575
 
568
- After writing the plan file, use the **AskUserQuestion tool** to present these options:
576
+ After writing the plan file, use the **question tool** to present these options:
569
577
 
570
- **Question:** "Plan ready at `docs/plans/YYYY-MM-DD-<type>-<name>-plan.md`. What would you like to do next?"
578
+ **Question:** "Plan ready at `docs/plans/YYYY-MM-DD-NNN-<type>-<name>-plan.md`. What would you like to do next?"
571
579
 
572
580
  **Options:**
573
581
  1. **Open plan in editor** - Open the plan file for review
574
582
  2. **Run `/deepen-plan`** - Enhance each section with parallel research agents (best practices, performance, UI)
575
- 3. **Run `/technical_review`** - Technical feedback from code-focused reviewers (DHH, Kieran, Simplicity)
576
- 4. **Review and refine** - Improve the document through structured self-review
577
- 5. **Share to Proof** - Upload to Proof for collaborative review and sharing
578
- 6. **Start `/ce:work`** - Begin implementing this plan locally
579
- 7. **Start `/ce:work` on remote** - Begin implementing in OpenCode on the web (use `&` to run in background)
580
- 8. **Create Issue** - Create issue in project tracker (GitHub/Linear)
583
+ 3. **Review and refine** - Improve the document through structured self-review
584
+ 4. **Share to Proof** - Upload to Proof for collaborative review and sharing
585
+ 5. **Start `/systematic:ce-work`** - Begin implementing this plan locally
586
+ 6. **Start `/systematic:ce-work` on remote** - Begin implementing in OpenCode on the web (use `&` to run in background)
587
+ 7. **Create Issue** - Create issue in project tracker (GitHub/Linear)
581
588
 
582
589
  Based on selection:
583
590
  - **Open plan in editor** → Run `open docs/plans/<plan_filename>.md` to open the file in the user's default editor
584
591
  - **`/deepen-plan`** → Call the /deepen-plan command with the plan file path to enhance with research
585
- - **`/technical_review`** → Call the /technical_review command with the plan file path
586
592
  - **Review and refine** → Load `document-review` skill.
587
593
  - **Share to Proof** → Upload the plan to Proof:
588
594
  ```bash
@@ -590,18 +596,18 @@ Based on selection:
590
596
  TITLE="Plan: <plan title from frontmatter>"
591
597
  RESPONSE=$(curl -s -X POST https://www.proofeditor.ai/share/markdown \
592
598
  -H "Content-Type: application/json" \
593
- -d "$(jq -n --arg title "$TITLE" --arg markdown "$CONTENT" --arg by "ai:systematic" '{title: $title, markdown: $markdown, by: $by}')")
599
+ -d "$(jq -n --arg title "$TITLE" --arg markdown "$CONTENT" --arg by "ai:compound" '{title: $title, markdown: $markdown, by: $by}')")
594
600
  PROOF_URL=$(echo "$RESPONSE" | jq -r '.tokenUrl')
595
601
  ```
596
602
  Display: `View & collaborate in Proof: <PROOF_URL>` — skip silently if curl fails. Then return to options.
597
- - **`/ce:work`** → Call the /ce:work command with the plan file path
598
- - **`/ce:work` on remote** → Run `/ce:work docs/plans/<plan_filename>.md &` to start work in background for OpenCode web
603
+ - **`/systematic:ce-work`** → Call the /systematic:ce-work command with the plan file path
604
+ - **`/systematic:ce-work` on remote** → Run `/systematic:ce-work docs/plans/<plan_filename>.md &` to start work in background for OpenCode web
599
605
  - **Create Issue** → See "Issue Creation" section below
600
606
  - **Other** (automatically provided) → Accept free text for rework or specific changes
601
607
 
602
- **Note:** If running `/ce:plan` with ultrathink enabled, automatically run `/deepen-plan` after plan creation for maximum depth and grounding.
608
+ **Note:** If running `/systematic:ce-plan` with ultrathink enabled, automatically run `/deepen-plan` after plan creation for maximum depth and grounding.
603
609
 
604
- Loop back to options after Simplify or Other changes until user selects `/ce:work` or `/technical_review`.
610
+ Loop back to options after Simplify or Other changes until user selects `/systematic:ce-work` or another action.
605
611
 
606
612
  ## Issue Creation
607
613
 
@@ -631,6 +637,7 @@ When user selects "Create Issue", detect their project tracker from AGENTS.md:
631
637
 
632
638
  5. **After creation:**
633
639
  - Display the issue URL
634
- - Ask if they want to proceed to `/ce:work` or `/technical_review`
640
+ - Ask if they want to proceed to `/systematic:ce-work`
635
641
 
636
642
  NEVER CODE! Just research and write the plan.
643
+