oh-my-codex 0.4.4 → 0.5.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.
Files changed (143) hide show
  1. package/README.md +17 -10
  2. package/dist/agents/definitions.d.ts.map +1 -1
  3. package/dist/agents/definitions.js +7 -13
  4. package/dist/agents/definitions.js.map +1 -1
  5. package/dist/agents/native-config.d.ts +1 -0
  6. package/dist/agents/native-config.d.ts.map +1 -1
  7. package/dist/agents/native-config.js +1 -6
  8. package/dist/agents/native-config.js.map +1 -1
  9. package/dist/catalog/__tests__/generator.test.d.ts +2 -0
  10. package/dist/catalog/__tests__/generator.test.d.ts.map +1 -0
  11. package/dist/catalog/__tests__/generator.test.js +42 -0
  12. package/dist/catalog/__tests__/generator.test.js.map +1 -0
  13. package/dist/catalog/__tests__/schema.test.d.ts +2 -0
  14. package/dist/catalog/__tests__/schema.test.d.ts.map +1 -0
  15. package/dist/catalog/__tests__/schema.test.js +33 -0
  16. package/dist/catalog/__tests__/schema.test.js.map +1 -0
  17. package/dist/catalog/reader.d.ts +19 -0
  18. package/dist/catalog/reader.d.ts.map +1 -0
  19. package/dist/catalog/reader.js +63 -0
  20. package/dist/catalog/reader.js.map +1 -0
  21. package/dist/catalog/schema.d.ts +32 -0
  22. package/dist/catalog/schema.d.ts.map +1 -0
  23. package/dist/catalog/schema.js +101 -0
  24. package/dist/catalog/schema.js.map +1 -0
  25. package/dist/cli/__tests__/index.test.js +109 -1
  26. package/dist/cli/__tests__/index.test.js.map +1 -1
  27. package/dist/cli/__tests__/setup-scope.test.d.ts +2 -0
  28. package/dist/cli/__tests__/setup-scope.test.d.ts.map +1 -0
  29. package/dist/cli/__tests__/setup-scope.test.js +164 -0
  30. package/dist/cli/__tests__/setup-scope.test.js.map +1 -0
  31. package/dist/cli/catalog-contract.d.ts +10 -0
  32. package/dist/cli/catalog-contract.d.ts.map +1 -0
  33. package/dist/cli/catalog-contract.js +24 -0
  34. package/dist/cli/catalog-contract.js.map +1 -0
  35. package/dist/cli/doctor.d.ts.map +1 -1
  36. package/dist/cli/doctor.js +7 -4
  37. package/dist/cli/doctor.js.map +1 -1
  38. package/dist/cli/index.d.ts +10 -0
  39. package/dist/cli/index.d.ts.map +1 -1
  40. package/dist/cli/index.js +124 -99
  41. package/dist/cli/index.js.map +1 -1
  42. package/dist/cli/setup.d.ts +3 -0
  43. package/dist/cli/setup.d.ts.map +1 -1
  44. package/dist/cli/setup.js +189 -35
  45. package/dist/cli/setup.js.map +1 -1
  46. package/dist/config/__tests__/generator-notify.test.js +28 -0
  47. package/dist/config/__tests__/generator-notify.test.js.map +1 -1
  48. package/dist/config/generator.d.ts +1 -0
  49. package/dist/config/generator.d.ts.map +1 -1
  50. package/dist/config/generator.js +12 -8
  51. package/dist/config/generator.js.map +1 -1
  52. package/dist/hooks/code-simplifier/__tests__/index.test.d.ts +2 -0
  53. package/dist/hooks/code-simplifier/__tests__/index.test.d.ts.map +1 -0
  54. package/dist/hooks/code-simplifier/__tests__/index.test.js +135 -0
  55. package/dist/hooks/code-simplifier/__tests__/index.test.js.map +1 -0
  56. package/dist/hooks/code-simplifier/index.d.ts +74 -0
  57. package/dist/hooks/code-simplifier/index.d.ts.map +1 -0
  58. package/dist/hooks/code-simplifier/index.js +145 -0
  59. package/dist/hooks/code-simplifier/index.js.map +1 -0
  60. package/dist/hooks/emulator.d.ts.map +1 -1
  61. package/dist/hooks/emulator.js +0 -1
  62. package/dist/hooks/emulator.js.map +1 -1
  63. package/dist/hooks/keyword-detector.d.ts.map +1 -1
  64. package/dist/hooks/keyword-detector.js +0 -3
  65. package/dist/hooks/keyword-detector.js.map +1 -1
  66. package/dist/notifications/__tests__/tmux.test.js +61 -1
  67. package/dist/notifications/__tests__/tmux.test.js.map +1 -1
  68. package/dist/notifications/__tests__/verbosity.test.d.ts +2 -0
  69. package/dist/notifications/__tests__/verbosity.test.d.ts.map +1 -0
  70. package/dist/notifications/__tests__/verbosity.test.js +202 -0
  71. package/dist/notifications/__tests__/verbosity.test.js.map +1 -0
  72. package/dist/notifications/config.d.ts +14 -1
  73. package/dist/notifications/config.d.ts.map +1 -1
  74. package/dist/notifications/config.js +52 -0
  75. package/dist/notifications/config.js.map +1 -1
  76. package/dist/notifications/formatter.d.ts.map +1 -1
  77. package/dist/notifications/formatter.js +14 -0
  78. package/dist/notifications/formatter.js.map +1 -1
  79. package/dist/notifications/index.d.ts +3 -3
  80. package/dist/notifications/index.d.ts.map +1 -1
  81. package/dist/notifications/index.js +14 -4
  82. package/dist/notifications/index.js.map +1 -1
  83. package/dist/notifications/tmux.d.ts +6 -0
  84. package/dist/notifications/tmux.d.ts.map +1 -1
  85. package/dist/notifications/tmux.js +31 -1
  86. package/dist/notifications/tmux.js.map +1 -1
  87. package/dist/notifications/types.d.ts +13 -0
  88. package/dist/notifications/types.d.ts.map +1 -1
  89. package/dist/team/__tests__/model-contract.test.d.ts +2 -0
  90. package/dist/team/__tests__/model-contract.test.d.ts.map +1 -0
  91. package/dist/team/__tests__/model-contract.test.js +47 -0
  92. package/dist/team/__tests__/model-contract.test.js.map +1 -0
  93. package/dist/team/__tests__/phase-controller.test.d.ts +2 -0
  94. package/dist/team/__tests__/phase-controller.test.d.ts.map +1 -0
  95. package/dist/team/__tests__/phase-controller.test.js +36 -0
  96. package/dist/team/__tests__/phase-controller.test.js.map +1 -0
  97. package/dist/team/__tests__/runtime.test.js +6 -6
  98. package/dist/team/__tests__/runtime.test.js.map +1 -1
  99. package/dist/team/model-contract.d.ts +19 -0
  100. package/dist/team/model-contract.d.ts.map +1 -0
  101. package/dist/team/model-contract.js +123 -0
  102. package/dist/team/model-contract.js.map +1 -0
  103. package/dist/team/orchestrator.d.ts.map +1 -1
  104. package/dist/team/orchestrator.js +0 -1
  105. package/dist/team/orchestrator.js.map +1 -1
  106. package/dist/team/phase-controller.d.ts +10 -0
  107. package/dist/team/phase-controller.d.ts.map +1 -0
  108. package/dist/team/phase-controller.js +128 -0
  109. package/dist/team/phase-controller.js.map +1 -0
  110. package/dist/team/runtime.d.ts +3 -3
  111. package/dist/team/runtime.d.ts.map +1 -1
  112. package/dist/team/runtime.js +24 -51
  113. package/dist/team/runtime.js.map +1 -1
  114. package/dist/team/state.d.ts +15 -0
  115. package/dist/team/state.d.ts.map +1 -1
  116. package/dist/team/state.js +35 -0
  117. package/dist/team/state.js.map +1 -1
  118. package/dist/team/team-ops.d.ts +3 -1
  119. package/dist/team/team-ops.d.ts.map +1 -1
  120. package/dist/team/team-ops.js +2 -0
  121. package/dist/team/team-ops.js.map +1 -1
  122. package/package.json +2 -2
  123. package/prompts/product-analyst.md +7 -7
  124. package/scripts/generate-catalog-docs.js +111 -0
  125. package/skills/build-fix/SKILL.md +3 -3
  126. package/skills/code-review/SKILL.md +3 -3
  127. package/skills/help/SKILL.md +4 -4
  128. package/skills/omx-setup/SKILL.md +24 -15
  129. package/skills/research/SKILL.md +28 -28
  130. package/skills/security-review/SKILL.md +3 -3
  131. package/templates/AGENTS.md +1 -8
  132. package/templates/catalog-manifest.json +397 -0
  133. package/prompts/deep-executor.md +0 -19
  134. package/prompts/scientist.md +0 -89
  135. package/skills/deepinit/SKILL.md +0 -320
  136. package/skills/learn-about-omx/SKILL.md +0 -37
  137. package/skills/learner/SKILL.md +0 -135
  138. package/skills/pipeline/SKILL.md +0 -407
  139. package/skills/project-session-manager/SKILL.md +0 -560
  140. package/skills/psm/SKILL.md +0 -20
  141. package/skills/release/SKILL.md +0 -83
  142. package/skills/ultrapilot/SKILL.md +0 -627
  143. package/skills/writer-memory/SKILL.md +0 -443
@@ -1,19 +1,19 @@
1
1
  ---
2
2
  name: research
3
- description: Orchestrate parallel scientist agents for comprehensive research with AUTO mode
3
+ description: Orchestrate parallel researcher agents for comprehensive research with AUTO mode
4
4
  argument-hint: <research goal>
5
5
  ---
6
6
 
7
7
  # Research Skill
8
8
 
9
- Orchestrate parallel scientist agents for comprehensive research workflows with optional AUTO mode for fully autonomous execution.
9
+ Orchestrate parallel researcher agents for comprehensive research workflows with optional AUTO mode for fully autonomous execution.
10
10
 
11
11
  ## Overview
12
12
 
13
13
  Research is a multi-stage workflow that decomposes complex research goals into parallel investigations:
14
14
 
15
15
  1. **Decomposition** - Break research goal into independent stages/hypotheses
16
- 2. **Execution** - Run parallel scientist agents on each stage
16
+ 2. **Execution** - Run parallel researcher agents on each stage
17
17
  3. **Verification** - Cross-validate findings, check consistency
18
18
  4. **Synthesis** - Aggregate results into comprehensive report
19
19
 
@@ -57,19 +57,19 @@ When given a research goal, decompose into 3-7 independent stages:
57
57
  ...
58
58
  ```
59
59
 
60
- ### Parallel Scientist Invocation
60
+ ### Parallel Researcher Invocation
61
61
 
62
62
  Fire independent stages in parallel via sub-agent spawning:
63
63
 
64
64
  ```
65
65
  // Stage 1 - Simple data gathering
66
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="haiku", prompt="[RESEARCH_STAGE:1] Investigate...")
66
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="haiku", prompt="[RESEARCH_STAGE:1] Investigate...")
67
67
 
68
68
  // Stage 2 - Standard analysis
69
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="sonnet", prompt="[RESEARCH_STAGE:2] Analyze...")
69
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="sonnet", prompt="[RESEARCH_STAGE:2] Analyze...")
70
70
 
71
71
  // Stage 3 - Complex reasoning
72
- spawn_sub_agent(subagent_type="oh-my-codex:scientist-high", model="opus", prompt="[RESEARCH_STAGE:3] Deep analysis of...")
72
+ spawn_sub_agent(subagent_type="oh-my-codex:architect", model="opus", prompt="[RESEARCH_STAGE:3] Deep analysis of...")
73
73
  ```
74
74
 
75
75
  ### Smart Model Routing
@@ -78,9 +78,9 @@ spawn_sub_agent(subagent_type="oh-my-codex:scientist-high", model="opus", prompt
78
78
 
79
79
  | Task Complexity | Agent | Model | Use For |
80
80
  |-----------------|-------|-------|---------|
81
- | Data gathering | `scientist` (model=haiku) | haiku | File enumeration, pattern counting, simple lookups |
82
- | Standard analysis | `scientist` | sonnet | Code analysis, pattern detection, documentation review |
83
- | Complex reasoning | `scientist-high` | opus | Architecture analysis, cross-cutting concerns, hypothesis validation |
81
+ | Data gathering | `researcher` (model=haiku) | haiku | File enumeration, pattern counting, simple lookups |
82
+ | Standard analysis | `researcher` | sonnet | Code analysis, pattern detection, documentation review |
83
+ | Complex reasoning | `architect` | opus | Architecture analysis, cross-cutting concerns, hypothesis validation |
84
84
 
85
85
  ### Routing Decision Guide
86
86
 
@@ -99,7 +99,7 @@ After parallel execution completes, verify findings:
99
99
 
100
100
  ```
101
101
  // Cross-validation stage
102
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="sonnet", prompt="
102
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="sonnet", prompt="
103
103
  [RESEARCH_VERIFICATION]
104
104
  Cross-validate these findings for consistency:
105
105
 
@@ -180,9 +180,9 @@ When stages analyze different data sources:
180
180
 
181
181
  ```
182
182
  // All fire simultaneously
183
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="haiku", prompt="[STAGE:1] Analyze src/api/...")
184
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="haiku", prompt="[STAGE:2] Analyze src/utils/...")
185
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="haiku", prompt="[STAGE:3] Analyze src/components/...")
183
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="haiku", prompt="[STAGE:1] Analyze src/api/...")
184
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="haiku", prompt="[STAGE:2] Analyze src/utils/...")
185
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="haiku", prompt="[STAGE:3] Analyze src/components/...")
186
186
  ```
187
187
 
188
188
  ### Hypothesis Battery (Parallel)
@@ -191,9 +191,9 @@ When testing multiple hypotheses:
191
191
 
192
192
  ```
193
193
  // Test hypotheses simultaneously
194
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="sonnet", prompt="[HYPOTHESIS:A] Test if caching improves...")
195
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="sonnet", prompt="[HYPOTHESIS:B] Test if batching reduces...")
196
- spawn_sub_agent(subagent_type="oh-my-codex:scientist", model="sonnet", prompt="[HYPOTHESIS:C] Test if lazy loading helps...")
194
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="sonnet", prompt="[HYPOTHESIS:A] Test if caching improves...")
195
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="sonnet", prompt="[HYPOTHESIS:B] Test if batching reduces...")
196
+ spawn_sub_agent(subagent_type="oh-my-codex:researcher", model="sonnet", prompt="[HYPOTHESIS:C] Test if lazy loading helps...")
197
197
  ```
198
198
 
199
199
  ### Cross-Validation (Sequential)
@@ -205,7 +205,7 @@ When verification depends on all findings:
205
205
  [stages complete]
206
206
 
207
207
  // Then sequential verification
208
- spawn_sub_agent(subagent_type="oh-my-codex:scientist-high", model="opus", prompt="
208
+ spawn_sub_agent(subagent_type="oh-my-codex:architect", model="opus", prompt="
209
209
  [CROSS_VALIDATION]
210
210
  Validate consistency across all findings:
211
211
  - Finding 1: ...
@@ -216,7 +216,7 @@ Validate consistency across all findings:
216
216
 
217
217
  ### Concurrency Limit
218
218
 
219
- **Maximum 20 concurrent scientist agents** to prevent resource exhaustion.
219
+ **Maximum 20 concurrent researcher agents** to prevent resource exhaustion.
220
220
 
221
221
  If more than 20 stages, batch them:
222
222
  ```
@@ -237,7 +237,7 @@ Batch 2: Stages 6-7 (parallel)
237
237
  stage-2.md # Stage 2 findings
238
238
  ...
239
239
  findings/
240
- raw/ # Raw findings from scientists
240
+ raw/ # Raw findings from researchers
241
241
  verified/ # Post-verification findings
242
242
  figures/
243
243
  figure-1.png # Generated visualizations
@@ -289,7 +289,7 @@ Batch 2: Stages 6-7 (parallel)
289
289
 
290
290
  ## Tag Extraction
291
291
 
292
- Scientists use structured tags for findings. Extract them with these patterns:
292
+ Research agents use structured tags for findings. Extract them with these patterns:
293
293
 
294
294
  ### Finding Tags
295
295
 
@@ -427,7 +427,7 @@ Findings must meet quality threshold:
427
427
 
428
428
  ### Figure Embedding Protocol
429
429
 
430
- Scientists generate visualizations using this marker:
430
+ Research agents generate visualizations using this marker:
431
431
 
432
432
  ```
433
433
  [FIGURE:path/to/figure.png]
@@ -452,11 +452,11 @@ Report generator embeds figures:
452
452
 
453
453
  | Type | Use For | Generated By |
454
454
  |------|---------|--------------|
455
- | Architecture diagram | System structure | scientist-high |
456
- | Flow chart | Process flows | scientist |
457
- | Dependency graph | Module relationships | scientist |
458
- | Timeline | Sequence of events | scientist |
459
- | Comparison table | A vs B analysis | scientist |
455
+ | Architecture diagram | System structure | architect |
456
+ | Flow chart | Process flows | researcher |
457
+ | Dependency graph | Module relationships | researcher |
458
+ | Timeline | Sequence of events | researcher |
459
+ | Comparison table | A vs B analysis | researcher |
460
460
 
461
461
  ## Configuration
462
462
 
@@ -489,7 +489,7 @@ Progress is preserved in `.omx/research/{session-id}/` for resume.
489
489
  - Review state.json for specific conflicts
490
490
  - May need to re-run specific stages with different approach
491
491
 
492
- **Scientists returning low-quality findings?**
492
+ **Research agents returning low-quality findings?**
493
493
  - Check tier assignment - complex analysis needs HIGH tier
494
494
  - Ensure prompts include clear scope and expected output format
495
495
  - Review if research goal is too broad
@@ -256,11 +256,11 @@ The security-reviewer agent verifies:
256
256
 
257
257
  ## Use with Other Skills
258
258
 
259
- **With Pipeline:**
259
+ **With Team:**
260
260
  ```
261
- /pipeline security "review authentication module"
261
+ /team "run security review on authentication module"
262
262
  ```
263
- Uses: explore → security-reviewer → executor → security-reviewer-low (re-verify)
263
+ Uses: explore → security-reviewer → executor → security-reviewer (re-verify)
264
264
 
265
265
  **With Swarm:**
266
266
  ```
@@ -39,7 +39,7 @@ Use delegation when it improves quality, speed, or correctness:
39
39
  Work directly only for trivial operations where delegation adds disproportionate overhead:
40
40
  - Small clarifications, quick status checks, or single-command sequential operations.
41
41
 
42
- For substantive code changes, delegate to `executor` (default for both standard and complex implementation work; `deep-executor` is deprecated).
42
+ For substantive code changes, delegate to `executor` (default for both standard and complex implementation work).
43
43
  For non-trivial SDK/API/framework usage, delegate to `dependency-expert` to check official docs first.
44
44
  </delegation_rules>
45
45
 
@@ -106,7 +106,6 @@ Build/Analysis Lane:
106
106
  - `/prompts:architect`: System design, boundaries, interfaces, long-horizon tradeoffs
107
107
  - `/prompts:debugger`: Root-cause analysis, regression isolation, failure diagnosis
108
108
  - `/prompts:executor`: Code implementation, refactoring, feature work
109
- - `/prompts:deep-executor`: Deprecated — use `/prompts:executor` for complex autonomous goal-oriented tasks
110
109
  - `/prompts:verifier`: Completion evidence, claim validation, test adequacy
111
110
 
112
111
  Review Lane:
@@ -125,7 +124,6 @@ Domain Specialists:
125
124
  - `/prompts:designer`: UX/UI architecture, interaction design
126
125
  - `/prompts:writer`: Docs, migration notes, user guidance
127
126
  - `/prompts:qa-tester`: Interactive CLI/service runtime validation
128
- - `/prompts:scientist`: Data/statistical analysis
129
127
  - `/prompts:git-master`: Commit strategy, history hygiene
130
128
  - `/prompts:researcher`: External documentation and reference research
131
129
 
@@ -154,10 +152,8 @@ Do not ask for confirmation — just read the skill file and follow its instruct
154
152
  | "plan this", "plan the", "let's plan" | `$plan` | Read `~/.agents/skills/plan/SKILL.md`, start planning workflow |
155
153
  | "ralplan", "consensus plan" | `$ralplan` | Read `~/.agents/skills/ralplan/SKILL.md`, start consensus planning |
156
154
  | "team", "swarm", "coordinated team", "coordinated swarm" | `$team` | Read `~/.agents/skills/team/SKILL.md`, start team orchestration (swarm compatibility alias) |
157
- | "pipeline", "chain agents" | `$pipeline` | Read `~/.agents/skills/pipeline/SKILL.md`, start agent pipeline |
158
155
  | "ecomode", "eco", "budget" | `$ecomode` | Read `~/.agents/skills/ecomode/SKILL.md`, enable token-efficient mode |
159
156
  | "research", "analyze data" | `$research` | Read `~/.agents/skills/research/SKILL.md`, start parallel research |
160
- | "deepinit" | `$deepinit` | Read `~/.agents/skills/deepinit/SKILL.md`, initialize codebase docs |
161
157
  | "cancel", "stop", "abort" | `$cancel` | Read `~/.agents/skills/cancel/SKILL.md`, cancel active modes |
162
158
  | "tdd", "test first" | `$tdd` | Read `~/.agents/skills/tdd/SKILL.md`, start test-driven workflow |
163
159
  | "fix build", "type errors" | `$build-fix` | Read `~/.agents/skills/build-fix/SKILL.md`, fix build errors |
@@ -183,12 +179,10 @@ Workflow Skills:
183
179
  - `ecomode`: Token-efficient execution using lightweight models
184
180
  - `team`: N coordinated agents on shared task list
185
181
  - `swarm`: N coordinated agents on shared task list (compatibility facade over team)
186
- - `pipeline`: Sequential agent chaining with data passing
187
182
  - `ultraqa`: QA cycling -- test, verify, fix, repeat
188
183
  - `plan`: Strategic planning with optional consensus mode
189
184
  - `ralplan`: Iterative consensus planning (planner + architect + critic)
190
185
  - `research`: Parallel research agents for comprehensive analysis
191
- - `deepinit`: Deep codebase initialization with documentation
192
186
 
193
187
  Agent Shortcuts:
194
188
  - `analyze` -> debugger: Investigation and root-cause analysis
@@ -349,7 +343,6 @@ Recommended mode fields:
349
343
  - `ultrawork`: `active`, `reinforcement_count`, `started_at`
350
344
  - `team`: `active`, `current_phase` (`team-plan|team-prd|team-exec|team-verify|team-fix|complete`), `agent_count`, `team_name`
351
345
  - `ecomode`: `active`
352
- - `pipeline`: `active`, `current_phase`, `started_at`, `completed_at`
353
346
  - `ultraqa`: `active`, `current_phase`, `iteration`, `started_at`, `completed_at`
354
347
  </state_management>
355
348
 
@@ -0,0 +1,397 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "catalogVersion": "2026.02.20.1",
4
+ "skills": [
5
+ {
6
+ "name": "autopilot",
7
+ "category": "execution",
8
+ "status": "active",
9
+ "core": true,
10
+ "internalRequired": false
11
+ },
12
+ {
13
+ "name": "ralph",
14
+ "category": "execution",
15
+ "status": "active",
16
+ "core": true,
17
+ "internalRequired": false
18
+ },
19
+ {
20
+ "name": "ultrawork",
21
+ "category": "execution",
22
+ "status": "active",
23
+ "core": true,
24
+ "internalRequired": false
25
+ },
26
+ {
27
+ "name": "team",
28
+ "category": "execution",
29
+ "status": "active",
30
+ "core": true,
31
+ "internalRequired": false
32
+ },
33
+ {
34
+ "name": "ecomode",
35
+ "category": "execution",
36
+ "status": "merged",
37
+ "canonical": "ultrawork",
38
+ "core": false,
39
+ "internalRequired": false
40
+ },
41
+ {
42
+ "name": "ultraqa",
43
+ "category": "execution",
44
+ "status": "merged",
45
+ "canonical": "ralph",
46
+ "core": false,
47
+ "internalRequired": false
48
+ },
49
+ {
50
+ "name": "swarm",
51
+ "category": "execution",
52
+ "status": "alias",
53
+ "canonical": "team",
54
+ "core": false,
55
+ "internalRequired": false
56
+ },
57
+ {
58
+ "name": "plan",
59
+ "category": "planning",
60
+ "status": "active",
61
+ "core": false,
62
+ "internalRequired": false
63
+ },
64
+ {
65
+ "name": "ralplan",
66
+ "category": "planning",
67
+ "status": "active",
68
+ "canonical": "plan",
69
+ "core": true,
70
+ "internalRequired": false
71
+ },
72
+ {
73
+ "name": "analyze",
74
+ "category": "shortcut",
75
+ "status": "alias",
76
+ "canonical": "debugger",
77
+ "core": false,
78
+ "internalRequired": false
79
+ },
80
+ {
81
+ "name": "deepsearch",
82
+ "category": "shortcut",
83
+ "status": "alias",
84
+ "canonical": "explore",
85
+ "core": false,
86
+ "internalRequired": false
87
+ },
88
+ {
89
+ "name": "tdd",
90
+ "category": "shortcut",
91
+ "status": "alias",
92
+ "canonical": "test-engineer",
93
+ "core": false,
94
+ "internalRequired": false
95
+ },
96
+ {
97
+ "name": "build-fix",
98
+ "category": "shortcut",
99
+ "status": "alias",
100
+ "canonical": "build-fixer",
101
+ "core": false,
102
+ "internalRequired": false
103
+ },
104
+ {
105
+ "name": "code-review",
106
+ "category": "shortcut",
107
+ "status": "active",
108
+ "canonical": "code-reviewer",
109
+ "core": false,
110
+ "internalRequired": false
111
+ },
112
+ {
113
+ "name": "security-review",
114
+ "category": "shortcut",
115
+ "status": "active",
116
+ "canonical": "security-reviewer",
117
+ "core": false,
118
+ "internalRequired": false
119
+ },
120
+ {
121
+ "name": "frontend-ui-ux",
122
+ "category": "shortcut",
123
+ "status": "alias",
124
+ "canonical": "designer",
125
+ "core": false,
126
+ "internalRequired": false
127
+ },
128
+ {
129
+ "name": "git-master",
130
+ "category": "shortcut",
131
+ "status": "alias",
132
+ "canonical": "git-master",
133
+ "core": false,
134
+ "internalRequired": false
135
+ },
136
+ {
137
+ "name": "review",
138
+ "category": "shortcut",
139
+ "status": "alias",
140
+ "canonical": "plan --review",
141
+ "core": false,
142
+ "internalRequired": false
143
+ },
144
+ {
145
+ "name": "cancel",
146
+ "category": "utility",
147
+ "status": "active",
148
+ "core": false,
149
+ "internalRequired": false
150
+ },
151
+ {
152
+ "name": "doctor",
153
+ "category": "utility",
154
+ "status": "active",
155
+ "core": false,
156
+ "internalRequired": false
157
+ },
158
+ {
159
+ "name": "help",
160
+ "category": "utility",
161
+ "status": "active",
162
+ "core": false,
163
+ "internalRequired": false
164
+ },
165
+ {
166
+ "name": "note",
167
+ "category": "utility",
168
+ "status": "active",
169
+ "core": false,
170
+ "internalRequired": false
171
+ },
172
+ {
173
+ "name": "trace",
174
+ "category": "utility",
175
+ "status": "active",
176
+ "core": false,
177
+ "internalRequired": false
178
+ },
179
+ {
180
+ "name": "skill",
181
+ "category": "utility",
182
+ "status": "active",
183
+ "core": false,
184
+ "internalRequired": false
185
+ },
186
+ {
187
+ "name": "research",
188
+ "category": "utility",
189
+ "status": "merged",
190
+ "canonical": "researcher",
191
+ "core": false,
192
+ "internalRequired": false
193
+ },
194
+ {
195
+ "name": "hud",
196
+ "category": "utility",
197
+ "status": "active",
198
+ "core": false,
199
+ "internalRequired": false
200
+ },
201
+ {
202
+ "name": "omx-setup",
203
+ "category": "utility",
204
+ "status": "active",
205
+ "core": false,
206
+ "internalRequired": false
207
+ },
208
+ {
209
+ "name": "configure-telegram",
210
+ "category": "utility",
211
+ "status": "merged",
212
+ "canonical": "omx-setup",
213
+ "core": false,
214
+ "internalRequired": false
215
+ },
216
+ {
217
+ "name": "configure-discord",
218
+ "category": "utility",
219
+ "status": "merged",
220
+ "canonical": "omx-setup",
221
+ "core": false,
222
+ "internalRequired": false
223
+ },
224
+ {
225
+ "name": "ralph-init",
226
+ "category": "utility",
227
+ "status": "merged",
228
+ "canonical": "plan",
229
+ "core": false,
230
+ "internalRequired": false
231
+ },
232
+ {
233
+ "name": "worker",
234
+ "category": "utility",
235
+ "status": "internal",
236
+ "core": false,
237
+ "internalRequired": true
238
+ }
239
+ ],
240
+ "agents": [
241
+ {
242
+ "name": "explore",
243
+ "category": "build",
244
+ "status": "active"
245
+ },
246
+ {
247
+ "name": "analyst",
248
+ "category": "build",
249
+ "status": "active"
250
+ },
251
+ {
252
+ "name": "planner",
253
+ "category": "build",
254
+ "status": "active"
255
+ },
256
+ {
257
+ "name": "architect",
258
+ "category": "build",
259
+ "status": "active"
260
+ },
261
+ {
262
+ "name": "debugger",
263
+ "category": "build",
264
+ "status": "active"
265
+ },
266
+ {
267
+ "name": "executor",
268
+ "category": "build",
269
+ "status": "active"
270
+ },
271
+ {
272
+ "name": "verifier",
273
+ "category": "build",
274
+ "status": "active"
275
+ },
276
+ {
277
+ "name": "style-reviewer",
278
+ "category": "review",
279
+ "status": "merged",
280
+ "canonical": "code-reviewer"
281
+ },
282
+ {
283
+ "name": "quality-reviewer",
284
+ "category": "review",
285
+ "status": "merged",
286
+ "canonical": "code-reviewer"
287
+ },
288
+ {
289
+ "name": "api-reviewer",
290
+ "category": "review",
291
+ "status": "merged",
292
+ "canonical": "code-reviewer"
293
+ },
294
+ {
295
+ "name": "security-reviewer",
296
+ "category": "review",
297
+ "status": "active"
298
+ },
299
+ {
300
+ "name": "performance-reviewer",
301
+ "category": "review",
302
+ "status": "merged",
303
+ "canonical": "code-reviewer"
304
+ },
305
+ {
306
+ "name": "code-reviewer",
307
+ "category": "review",
308
+ "status": "active"
309
+ },
310
+ {
311
+ "name": "dependency-expert",
312
+ "category": "domain",
313
+ "status": "active"
314
+ },
315
+ {
316
+ "name": "test-engineer",
317
+ "category": "domain",
318
+ "status": "active"
319
+ },
320
+ {
321
+ "name": "quality-strategist",
322
+ "category": "domain",
323
+ "status": "merged",
324
+ "canonical": "verifier"
325
+ },
326
+ {
327
+ "name": "build-fixer",
328
+ "category": "domain",
329
+ "status": "active"
330
+ },
331
+ {
332
+ "name": "designer",
333
+ "category": "domain",
334
+ "status": "active"
335
+ },
336
+ {
337
+ "name": "writer",
338
+ "category": "domain",
339
+ "status": "active"
340
+ },
341
+ {
342
+ "name": "qa-tester",
343
+ "category": "domain",
344
+ "status": "merged",
345
+ "canonical": "test-engineer"
346
+ },
347
+ {
348
+ "name": "git-master",
349
+ "category": "domain",
350
+ "status": "active"
351
+ },
352
+ {
353
+ "name": "code-simplifier",
354
+ "category": "domain",
355
+ "status": "internal"
356
+ },
357
+ {
358
+ "name": "researcher",
359
+ "category": "domain",
360
+ "status": "active"
361
+ },
362
+ {
363
+ "name": "product-manager",
364
+ "category": "product",
365
+ "status": "merged",
366
+ "canonical": "analyst"
367
+ },
368
+ {
369
+ "name": "ux-researcher",
370
+ "category": "product",
371
+ "status": "merged",
372
+ "canonical": "designer"
373
+ },
374
+ {
375
+ "name": "information-architect",
376
+ "category": "product",
377
+ "status": "merged",
378
+ "canonical": "designer"
379
+ },
380
+ {
381
+ "name": "product-analyst",
382
+ "category": "product",
383
+ "status": "merged",
384
+ "canonical": "analyst"
385
+ },
386
+ {
387
+ "name": "critic",
388
+ "category": "coordination",
389
+ "status": "active"
390
+ },
391
+ {
392
+ "name": "vision",
393
+ "category": "coordination",
394
+ "status": "active"
395
+ }
396
+ ]
397
+ }
@@ -1,19 +0,0 @@
1
- ---
2
- description: "DEPRECATED: deep-executor now aliases to executor"
3
- argument-hint: "task description"
4
- ---
5
- ## Deprecation Notice
6
-
7
- `/prompts:deep-executor` is deprecated.
8
-
9
- Use `/prompts:executor` for all implementation work, including complex autonomous multi-file tasks.
10
-
11
- ## Compatibility Behavior
12
-
13
- If invoked through `deep-executor`, continue by following the **Executor** prompt behavior exactly:
14
- - Explore first
15
- - Implement end-to-end
16
- - Verify with diagnostics/tests/build evidence
17
- - Deliver concise completion summary
18
-
19
- Do not maintain separate deep-executor-only behavior.