agentsys 5.0.0 → 5.0.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 (202) hide show
  1. package/.claude-plugin/marketplace.json +13 -13
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/CHANGELOG.md +19 -2
  4. package/README.md +1 -0
  5. package/adapters/README.md +1 -1
  6. package/adapters/codex/skills/consult/SKILL.md +3 -2
  7. package/adapters/codex/skills/next-task/SKILL.md +8 -8
  8. package/adapters/opencode/agents/consult-agent.md +1 -1
  9. package/adapters/opencode/agents/delivery-validator.md +1 -1
  10. package/adapters/opencode/agents/implementation-agent.md +1 -1
  11. package/adapters/opencode/agents/worktree-manager.md +3 -3
  12. package/adapters/opencode/commands/consult.md +3 -2
  13. package/adapters/opencode/commands/next-task.md +7 -7
  14. package/adapters/opencode/skills/agnix/SKILL.md +1 -1
  15. package/adapters/opencode/skills/consult/SKILL.md +16 -4
  16. package/adapters/opencode/skills/deslop/SKILL.md +1 -1
  17. package/adapters/opencode/skills/discover-tasks/SKILL.md +2 -2
  18. package/adapters/opencode/skills/drift-analysis/SKILL.md +1 -1
  19. package/adapters/opencode/skills/enhance-agent-prompts/SKILL.md +1 -1
  20. package/adapters/opencode/skills/enhance-claude-memory/SKILL.md +1 -1
  21. package/adapters/opencode/skills/enhance-cross-file/SKILL.md +1 -1
  22. package/adapters/opencode/skills/enhance-docs/SKILL.md +1 -1
  23. package/adapters/opencode/skills/enhance-hooks/SKILL.md +1 -1
  24. package/adapters/opencode/skills/enhance-orchestrator/SKILL.md +1 -1
  25. package/adapters/opencode/skills/enhance-plugins/SKILL.md +1 -1
  26. package/adapters/opencode/skills/enhance-prompts/SKILL.md +1 -1
  27. package/adapters/opencode/skills/enhance-skills/SKILL.md +1 -1
  28. package/adapters/opencode/skills/learn/SKILL.md +1 -1
  29. package/adapters/opencode/skills/orchestrate-review/SKILL.md +1 -1
  30. package/adapters/opencode/skills/perf-analyzer/SKILL.md +1 -1
  31. package/adapters/opencode/skills/perf-baseline-manager/SKILL.md +1 -1
  32. package/adapters/opencode/skills/perf-benchmarker/SKILL.md +1 -1
  33. package/adapters/opencode/skills/perf-code-paths/SKILL.md +1 -1
  34. package/adapters/opencode/skills/perf-investigation-logger/SKILL.md +1 -1
  35. package/adapters/opencode/skills/perf-profiler/SKILL.md +1 -1
  36. package/adapters/opencode/skills/perf-theory-gatherer/SKILL.md +1 -1
  37. package/adapters/opencode/skills/perf-theory-tester/SKILL.md +1 -1
  38. package/adapters/opencode/skills/sync-docs/SKILL.md +1 -1
  39. package/adapters/opencode/skills/validate-delivery/SKILL.md +2 -2
  40. package/bin/cli.js +42 -8
  41. package/bin/dev-cli.js +16 -6
  42. package/lib/collectors/github.js +76 -12
  43. package/lib/perf/benchmark-runner.js +11 -6
  44. package/lib/perf/investigation-state.js +12 -13
  45. package/lib/perf/profiling-runner.js +23 -4
  46. package/lib/repo-map/concurrency.js +29 -0
  47. package/lib/repo-map/runner.js +218 -19
  48. package/lib/repo-map/updater.js +115 -27
  49. package/lib/state/workflow-state.js +31 -30
  50. package/lib/utils/command-parser.js +0 -0
  51. package/lib/utils/state-helpers.js +61 -0
  52. package/package.json +2 -1
  53. package/plugins/agnix/.claude-plugin/plugin.json +1 -1
  54. package/plugins/agnix/skills/agnix/SKILL.md +1 -1
  55. package/plugins/audit-project/.claude-plugin/plugin.json +1 -1
  56. package/plugins/audit-project/lib/collectors/github.js +76 -12
  57. package/plugins/audit-project/lib/perf/benchmark-runner.js +11 -6
  58. package/plugins/audit-project/lib/perf/investigation-state.js +12 -13
  59. package/plugins/audit-project/lib/perf/profiling-runner.js +23 -4
  60. package/plugins/audit-project/lib/repo-map/concurrency.js +29 -0
  61. package/plugins/audit-project/lib/repo-map/runner.js +218 -19
  62. package/plugins/audit-project/lib/repo-map/updater.js +115 -27
  63. package/plugins/audit-project/lib/state/workflow-state.js +31 -30
  64. package/plugins/audit-project/lib/utils/command-parser.js +0 -0
  65. package/plugins/audit-project/lib/utils/state-helpers.js +61 -0
  66. package/plugins/consult/.claude-plugin/plugin.json +1 -1
  67. package/plugins/consult/agents/consult-agent.md +1 -1
  68. package/plugins/consult/commands/consult.md +3 -2
  69. package/plugins/consult/skills/consult/SKILL.md +16 -4
  70. package/plugins/deslop/.claude-plugin/plugin.json +1 -1
  71. package/plugins/deslop/lib/collectors/github.js +76 -12
  72. package/plugins/deslop/lib/perf/benchmark-runner.js +11 -6
  73. package/plugins/deslop/lib/perf/investigation-state.js +12 -13
  74. package/plugins/deslop/lib/perf/profiling-runner.js +23 -4
  75. package/plugins/deslop/lib/repo-map/concurrency.js +29 -0
  76. package/plugins/deslop/lib/repo-map/runner.js +218 -19
  77. package/plugins/deslop/lib/repo-map/updater.js +115 -27
  78. package/plugins/deslop/lib/state/workflow-state.js +31 -30
  79. package/plugins/deslop/lib/utils/command-parser.js +0 -0
  80. package/plugins/deslop/lib/utils/state-helpers.js +61 -0
  81. package/plugins/deslop/skills/deslop/SKILL.md +1 -1
  82. package/plugins/drift-detect/.claude-plugin/plugin.json +1 -1
  83. package/plugins/drift-detect/lib/collectors/github.js +76 -12
  84. package/plugins/drift-detect/lib/perf/benchmark-runner.js +11 -6
  85. package/plugins/drift-detect/lib/perf/investigation-state.js +12 -13
  86. package/plugins/drift-detect/lib/perf/profiling-runner.js +23 -4
  87. package/plugins/drift-detect/lib/repo-map/concurrency.js +29 -0
  88. package/plugins/drift-detect/lib/repo-map/runner.js +218 -19
  89. package/plugins/drift-detect/lib/repo-map/updater.js +115 -27
  90. package/plugins/drift-detect/lib/state/workflow-state.js +31 -30
  91. package/plugins/drift-detect/lib/utils/command-parser.js +0 -0
  92. package/plugins/drift-detect/lib/utils/state-helpers.js +61 -0
  93. package/plugins/drift-detect/skills/drift-analysis/SKILL.md +1 -1
  94. package/plugins/enhance/.claude-plugin/plugin.json +1 -1
  95. package/plugins/enhance/lib/collectors/github.js +76 -12
  96. package/plugins/enhance/lib/perf/benchmark-runner.js +11 -6
  97. package/plugins/enhance/lib/perf/investigation-state.js +12 -13
  98. package/plugins/enhance/lib/perf/profiling-runner.js +23 -4
  99. package/plugins/enhance/lib/repo-map/concurrency.js +29 -0
  100. package/plugins/enhance/lib/repo-map/runner.js +218 -19
  101. package/plugins/enhance/lib/repo-map/updater.js +115 -27
  102. package/plugins/enhance/lib/state/workflow-state.js +31 -30
  103. package/plugins/enhance/lib/utils/command-parser.js +0 -0
  104. package/plugins/enhance/lib/utils/state-helpers.js +61 -0
  105. package/plugins/enhance/skills/enhance-agent-prompts/SKILL.md +1 -1
  106. package/plugins/enhance/skills/enhance-claude-memory/SKILL.md +1 -1
  107. package/plugins/enhance/skills/enhance-cross-file/SKILL.md +1 -1
  108. package/plugins/enhance/skills/enhance-docs/SKILL.md +1 -1
  109. package/plugins/enhance/skills/enhance-hooks/SKILL.md +1 -1
  110. package/plugins/enhance/skills/enhance-orchestrator/SKILL.md +1 -1
  111. package/plugins/enhance/skills/enhance-plugins/SKILL.md +1 -1
  112. package/plugins/enhance/skills/enhance-prompts/SKILL.md +1 -1
  113. package/plugins/enhance/skills/enhance-skills/SKILL.md +1 -1
  114. package/plugins/learn/.claude-plugin/plugin.json +1 -1
  115. package/plugins/learn/lib/collectors/github.js +76 -12
  116. package/plugins/learn/lib/perf/benchmark-runner.js +11 -6
  117. package/plugins/learn/lib/perf/investigation-state.js +12 -13
  118. package/plugins/learn/lib/perf/profiling-runner.js +23 -4
  119. package/plugins/learn/lib/repo-map/concurrency.js +29 -0
  120. package/plugins/learn/lib/repo-map/runner.js +218 -19
  121. package/plugins/learn/lib/repo-map/updater.js +115 -27
  122. package/plugins/learn/lib/state/workflow-state.js +31 -30
  123. package/plugins/learn/lib/utils/command-parser.js +0 -0
  124. package/plugins/learn/lib/utils/state-helpers.js +61 -0
  125. package/plugins/learn/skills/learn/SKILL.md +1 -1
  126. package/plugins/next-task/.claude-plugin/plugin.json +1 -1
  127. package/plugins/next-task/agents/delivery-validator.md +1 -1
  128. package/plugins/next-task/agents/implementation-agent.md +2 -2
  129. package/plugins/next-task/agents/worktree-manager.md +3 -3
  130. package/plugins/next-task/commands/next-task.md +8 -8
  131. package/plugins/next-task/hooks/hooks.json +1 -1
  132. package/plugins/next-task/lib/collectors/github.js +76 -12
  133. package/plugins/next-task/lib/perf/benchmark-runner.js +11 -6
  134. package/plugins/next-task/lib/perf/investigation-state.js +12 -13
  135. package/plugins/next-task/lib/perf/profiling-runner.js +23 -4
  136. package/plugins/next-task/lib/repo-map/concurrency.js +29 -0
  137. package/plugins/next-task/lib/repo-map/runner.js +218 -19
  138. package/plugins/next-task/lib/repo-map/updater.js +115 -27
  139. package/plugins/next-task/lib/state/workflow-state.js +31 -30
  140. package/plugins/next-task/lib/utils/command-parser.js +0 -0
  141. package/plugins/next-task/lib/utils/state-helpers.js +61 -0
  142. package/plugins/next-task/skills/discover-tasks/SKILL.md +2 -2
  143. package/plugins/next-task/skills/orchestrate-review/SKILL.md +1 -1
  144. package/plugins/next-task/skills/validate-delivery/SKILL.md +2 -2
  145. package/plugins/perf/.claude-plugin/plugin.json +1 -1
  146. package/plugins/perf/lib/collectors/github.js +76 -12
  147. package/plugins/perf/lib/perf/benchmark-runner.js +11 -6
  148. package/plugins/perf/lib/perf/investigation-state.js +12 -13
  149. package/plugins/perf/lib/perf/profiling-runner.js +23 -4
  150. package/plugins/perf/lib/repo-map/concurrency.js +29 -0
  151. package/plugins/perf/lib/repo-map/runner.js +218 -19
  152. package/plugins/perf/lib/repo-map/updater.js +115 -27
  153. package/plugins/perf/lib/state/workflow-state.js +31 -30
  154. package/plugins/perf/lib/utils/command-parser.js +0 -0
  155. package/plugins/perf/lib/utils/state-helpers.js +61 -0
  156. package/plugins/perf/skills/perf-analyzer/SKILL.md +1 -1
  157. package/plugins/perf/skills/perf-baseline-manager/SKILL.md +1 -1
  158. package/plugins/perf/skills/perf-benchmarker/SKILL.md +1 -1
  159. package/plugins/perf/skills/perf-code-paths/SKILL.md +1 -1
  160. package/plugins/perf/skills/perf-investigation-logger/SKILL.md +1 -1
  161. package/plugins/perf/skills/perf-profiler/SKILL.md +1 -1
  162. package/plugins/perf/skills/perf-theory-gatherer/SKILL.md +1 -1
  163. package/plugins/perf/skills/perf-theory-tester/SKILL.md +1 -1
  164. package/plugins/repo-map/.claude-plugin/plugin.json +1 -1
  165. package/plugins/repo-map/lib/collectors/github.js +76 -12
  166. package/plugins/repo-map/lib/perf/benchmark-runner.js +11 -6
  167. package/plugins/repo-map/lib/perf/investigation-state.js +12 -13
  168. package/plugins/repo-map/lib/perf/profiling-runner.js +23 -4
  169. package/plugins/repo-map/lib/repo-map/concurrency.js +29 -0
  170. package/plugins/repo-map/lib/repo-map/runner.js +218 -19
  171. package/plugins/repo-map/lib/repo-map/updater.js +115 -27
  172. package/plugins/repo-map/lib/state/workflow-state.js +31 -30
  173. package/plugins/repo-map/lib/utils/command-parser.js +0 -0
  174. package/plugins/repo-map/lib/utils/state-helpers.js +61 -0
  175. package/plugins/ship/.claude-plugin/plugin.json +1 -1
  176. package/plugins/ship/lib/collectors/github.js +76 -12
  177. package/plugins/ship/lib/perf/benchmark-runner.js +11 -6
  178. package/plugins/ship/lib/perf/investigation-state.js +12 -13
  179. package/plugins/ship/lib/perf/profiling-runner.js +23 -4
  180. package/plugins/ship/lib/repo-map/concurrency.js +29 -0
  181. package/plugins/ship/lib/repo-map/runner.js +218 -19
  182. package/plugins/ship/lib/repo-map/updater.js +115 -27
  183. package/plugins/ship/lib/state/workflow-state.js +31 -30
  184. package/plugins/ship/lib/utils/command-parser.js +0 -0
  185. package/plugins/ship/lib/utils/state-helpers.js +61 -0
  186. package/plugins/sync-docs/.claude-plugin/plugin.json +1 -1
  187. package/plugins/sync-docs/lib/collectors/github.js +76 -12
  188. package/plugins/sync-docs/lib/perf/benchmark-runner.js +11 -6
  189. package/plugins/sync-docs/lib/perf/investigation-state.js +12 -13
  190. package/plugins/sync-docs/lib/perf/profiling-runner.js +23 -4
  191. package/plugins/sync-docs/lib/repo-map/concurrency.js +29 -0
  192. package/plugins/sync-docs/lib/repo-map/runner.js +218 -19
  193. package/plugins/sync-docs/lib/repo-map/updater.js +115 -27
  194. package/plugins/sync-docs/lib/state/workflow-state.js +31 -30
  195. package/plugins/sync-docs/lib/utils/command-parser.js +0 -0
  196. package/plugins/sync-docs/lib/utils/state-helpers.js +61 -0
  197. package/plugins/sync-docs/skills/sync-docs/SKILL.md +1 -1
  198. package/scripts/bump-version.js +4 -1
  199. package/scripts/dev-install.js +9 -0
  200. package/scripts/validate-opencode-install.js +17 -4
  201. package/site/content.json +1 -1
  202. package/site/index.html +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentsys",
3
3
  "description": "12 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, perf investigations, topic research, agent config linting, and cross-tool AI consultation",
4
- "version": "5.0.0",
4
+ "version": "5.0.2",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -26,84 +26,84 @@
26
26
  "name": "next-task",
27
27
  "source": "./plugins/next-task",
28
28
  "description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 14 specialist agents",
29
- "version": "5.0.0",
29
+ "version": "5.0.2",
30
30
  "category": "productivity"
31
31
  },
32
32
  {
33
33
  "name": "ship",
34
34
  "source": "./plugins/ship",
35
35
  "description": "Complete PR workflow: commit to production, skips review when called from next-task, removes task from registry on cleanup, automatic rollback",
36
- "version": "5.0.0",
36
+ "version": "5.0.2",
37
37
  "category": "deployment"
38
38
  },
39
39
  {
40
40
  "name": "deslop",
41
41
  "source": "./plugins/deslop",
42
42
  "description": "3-phase AI slop detection: regex patterns (HIGH), multi-pass analyzers (MEDIUM), CLI tools (LOW)",
43
- "version": "5.0.0",
43
+ "version": "5.0.2",
44
44
  "category": "development"
45
45
  },
46
46
  {
47
47
  "name": "audit-project",
48
48
  "source": "./plugins/audit-project",
49
49
  "description": "Multi-agent iterative code review until zero issues remain",
50
- "version": "5.0.0",
50
+ "version": "5.0.2",
51
51
  "category": "development"
52
52
  },
53
53
  {
54
54
  "name": "drift-detect",
55
55
  "source": "./plugins/drift-detect",
56
56
  "description": "Deep repository analysis to realign project plans with code reality - detects drift, gaps, and creates prioritized reconstruction plans",
57
- "version": "5.0.0",
57
+ "version": "5.0.2",
58
58
  "category": "productivity"
59
59
  },
60
60
  {
61
61
  "name": "enhance",
62
62
  "source": "./plugins/enhance",
63
63
  "description": "Master enhancement orchestrator: parallel analyzer execution for plugins, agents, docs, CLAUDE.md, and prompts with unified reporting",
64
- "version": "5.0.0",
64
+ "version": "5.0.2",
65
65
  "category": "development"
66
66
  },
67
67
  {
68
68
  "name": "sync-docs",
69
69
  "source": "./plugins/sync-docs",
70
70
  "description": "Standalone documentation sync: find outdated refs, update CHANGELOG, flag stale examples based on code changes",
71
- "version": "5.0.0",
71
+ "version": "5.0.2",
72
72
  "category": "development"
73
73
  },
74
74
  {
75
75
  "name": "repo-map",
76
76
  "source": "./plugins/repo-map",
77
77
  "description": "AST-based repository map generation using ast-grep with incremental updates for faster drift analysis",
78
- "version": "5.0.0",
78
+ "version": "5.0.2",
79
79
  "category": "development"
80
80
  },
81
81
  {
82
82
  "name": "perf",
83
83
  "source": "./plugins/perf",
84
84
  "description": "Rigorous performance investigation workflow with baselines, profiling, hypotheses, and evidence-backed decisions",
85
- "version": "5.0.0",
85
+ "version": "5.0.2",
86
86
  "category": "development"
87
87
  },
88
88
  {
89
89
  "name": "learn",
90
90
  "source": "./plugins/learn",
91
91
  "description": "Research topics online and create comprehensive learning guides with RAG-optimized indexes",
92
- "version": "5.0.0",
92
+ "version": "5.0.2",
93
93
  "category": "productivity"
94
94
  },
95
95
  {
96
96
  "name": "agnix",
97
97
  "source": "./plugins/agnix",
98
98
  "description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against 155 rules across 10+ AI tools",
99
- "version": "5.0.0",
99
+ "version": "5.0.2",
100
100
  "category": "development"
101
101
  },
102
102
  {
103
103
  "name": "consult",
104
104
  "source": "./plugins/consult",
105
105
  "description": "Cross-tool AI consultation: get second opinions from Gemini CLI, Codex CLI, Claude Code, OpenCode, or Copilot CLI with model and thinking effort control",
106
- "version": "5.0.0",
106
+ "version": "5.0.2",
107
107
  "category": "productivity"
108
108
  }
109
109
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.0.0",
3
+ "version": "5.0.2",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "keywords": [
6
6
  "workflow",
package/CHANGELOG.md CHANGED
@@ -7,6 +7,25 @@ All notable changes to this project will be documented in this file.
7
7
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
+ ## [Unreleased]
11
+
12
+ ## [5.0.2] - 2026-02-17
13
+
14
+ ### Fixed
15
+ - **Consult: Codex and OpenCode marked as continuable** - Both tools support session resume but were incorrectly marked as non-continuable. Codex supports `codex resume` (TUI-only; non-interactive uses context prepending). OpenCode supports `--session SESSION_ID` and `--continue` flags in non-interactive mode.
16
+
17
+ ## [5.0.1] - 2026-02-14
18
+
19
+ ### Fixed
20
+ - **OpenCode legacy cleanup** - Installer now removes legacy agent files (`review.md`, `ship.md`, `workflow.md`) left over from pre-rename installs
21
+ - **OpenCode install validator** - Now checks only the agents/commands/skills produced by discovery, preventing false positives from legacy files
22
+ - **Windows compatibility** - `bump-version.js` uses `npm.cmd` on win32 (fixes `execFileSync` PATHEXT resolution)
23
+ - **Windows test fixes** - Scaffold test tolerates `EBUSY` on temp directory cleanup; script-failure-hooks test skips bash-dependent tests on Windows
24
+ - **Jest module resolution** - Added `moduleNameMapper` for `@agentsys/lib` to resolve to local `lib/` directory
25
+
26
+ ### Changed
27
+ - **Workflow ship references** - Updated all `/ship` references to `ship:ship` (plugin-namespaced command) across next-task command, agents, hooks, and Codex/OpenCode adapters
28
+
10
29
  ## [4.1.1] - 2025-02-09
11
30
 
12
31
  ### Fixed
@@ -14,8 +33,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
33
  - **agnix config** - Migrated `.agnix.toml` `disabled_rules` from deprecated slug format to proper rule IDs (XP-003, AS-014)
15
34
  - **Memory file language** - Strengthened imperative language in AGENTS.md/CLAUDE.md (PE-003, CC-MEM-006)
16
35
 
17
- ## [Unreleased]
18
-
19
36
  ## [4.2.2] - 2026-02-12
20
37
 
21
38
  ### Fixed
package/README.md CHANGED
@@ -17,6 +17,7 @@
17
17
  <a href="https://github.com/avifenesh/agentsys/stargazers"><img src="https://img.shields.io/github/stars/avifenesh/agentsys?style=social" alt="GitHub stars"></a>
18
18
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
19
19
  <a href="https://avifenesh.github.io/agentsys/"><img src="https://img.shields.io/badge/Website-AgentSys-blue?style=flat&logo=github" alt="Website"></a>
20
+ <a href="https://github.com/hesreallyhim/awesome-claude-code"><img src="https://awesome.re/mentioned-badge.svg" alt="Mentioned in Awesome Claude Code"></a>
20
21
  </p>
21
22
 
22
23
  <p align="center">
@@ -84,7 +84,7 @@ node ${CLAUDE_PLUGIN_ROOT}/lib/platform/detect-platform.js
84
84
 
85
85
  **Codex CLI:**
86
86
  ```bash
87
- node ~/.codex/skills/agentsys/lib/platform/detect-platform.js
87
+ node ~/.codex/agentsys/lib/platform/detect-platform.js
88
88
  ```
89
89
 
90
90
  **OpenCode:**
@@ -209,9 +209,10 @@ The results of the consultation are:
209
209
  {response}
210
210
  ```
211
211
 
212
- For continuable tools (Claude/Gemini), also display: `Session: {session_id} - use /consult --continue to resume`
212
+ For continuable tools with a session_id (Claude, Gemini, OpenCode), display: `Session: {session_id} - use /consult --continue to resume`
213
+ For Codex (context-based continuation, no session_id), display: `Use /consult --continue to continue this conversation (prior context will be prepended)`
213
214
 
214
- Save session state for continuable tools (Claude, Gemini) to `{AI_STATE_DIR}/consult/last-session.json`.
215
+ Save session state for continuable tools (Claude, Gemini, Codex, OpenCode) to `{AI_STATE_DIR}/consult/last-session.json`.
215
216
 
216
217
  Platform state directory:
217
218
  - Claude Code: `.claude/`
@@ -54,7 +54,7 @@ This workflow exists because each step serves a purpose. Taking shortcuts defeat
54
54
  9. Review Loop
55
55
  10. Delivery Validation
56
56
  11. Docs Update
57
- 12. /ship
57
+ 12. `ship:ship`
58
58
 
59
59
  **Human interaction points (ONLY THESE):**
60
60
  1. Policy selection via checkboxes
@@ -73,10 +73,10 @@ Each phase must complete before the next starts:
73
73
  | Review Loop | Must approve (no open issues or override) |
74
74
  | Delivery | Tests pass, build passes |
75
75
  | Docs | Documentation updated |
76
- | Ship | Explicit /ship invocation (not hook-only) |
76
+ | Ship | Explicit `ship:ship` invocation (plugin command) |
77
77
 
78
78
  **Forbidden actions for agents:**
79
- - No agent may create PRs or push to remote (only /ship)
79
+ - No agent may create PRs or push to remote (only ship:ship)
80
80
  - No agent may skip Phase 9, delivery-validator, or docs update
81
81
  </workflow-gates>
82
82
 
@@ -503,17 +503,17 @@ workflowState.completePhase({ docsUpdated: true, fixesApplied: result.fixes?.len
503
503
  </phase-11>
504
504
 
505
505
  <phase-12>
506
- ## Phase 12: Handoff to /ship
506
+ ## Phase 12: Handoff to ship:ship
507
507
 
508
- After docs update (sync-docs-agent) completes, invoke /ship explicitly:
508
+ After docs update (sync-docs-agent) completes, invoke `ship:ship` explicitly:
509
509
 
510
510
  ```javascript
511
- console.log(`Task #${state.task.id} passed all validation. Invoking /ship...`);
511
+ console.log(`Task #${state.task.id} passed all validation. Invoking ship:ship...`);
512
512
  const stateDir = workflowState.getStateDir(); // Returns platform-aware state directory
513
513
  await Task({ subagent_type: "ship:ship", prompt: `Ship the task. State file: ${stateDir}/flow.json` });
514
514
  ```
515
515
 
516
- **/ship responsibilities:**
516
+ **ship:ship responsibilities:**
517
517
  - Create PR, push branch
518
518
  - Monitor CI and review comments
519
519
  - Merge when approved
@@ -541,6 +541,6 @@ try {
541
541
  - Sonnet for validation tasks (review, delivery)
542
542
  - Haiku for simple tasks (worktree)
543
543
  - Fully autonomous after plan approval
544
- - Explicit /ship handoff for PR workflow
544
+ - Explicit ship:ship handoff for PR workflow
545
545
 
546
546
  Begin workflow now.
@@ -75,7 +75,7 @@ The results of the consultation are:
75
75
  {response}
76
76
  ```
77
77
 
78
- Set `continuable: true` only for Claude and Gemini (tools with session resumption support).
78
+ Set `continuable: true` for Claude, Gemini, Codex, and OpenCode (tools with continuation support). Codex continuation is context-based (prior Q&A prepended to prompt) since `codex resume` is TUI-only. Claude, Gemini, and OpenCode support native session resume flags. Only Copilot is non-continuable.
79
79
 
80
80
  ### 5. Save Session State
81
81
 
@@ -70,7 +70,7 @@ delivery-validator (YOU ARE HERE)
70
70
  **MUST NOT do:**
71
71
  - Create PRs
72
72
  - Push to remote
73
- - Invoke /ship
73
+ - Invoke ship
74
74
  - Skip sync-docs-agent
75
75
 
76
76
  ## State Updates
@@ -166,7 +166,7 @@ implementation-agent (YOU ARE HERE)
166
166
 
167
167
  sync-docs-agent
168
168
 
169
- /ship command (creates PR)
169
+ ship command (creates PR)
170
170
  ```
171
171
 
172
172
  ### Required Handoff
@@ -167,12 +167,12 @@ Report: branch name, worktree path, base commit. Confirm PWD anchored to worktre
167
167
  | Component | Creates | Cleans Up |
168
168
  |-----------|---------|-----------|
169
169
  | worktree-manager | worktrees, tasks.json entries, workflow-status.json | Nothing |
170
- | /ship | - | worktrees (after merge), tasks.json entries |
170
+ | ship | - | worktrees (after merge), tasks.json entries |
171
171
  | --abort | - | worktrees, tasks.json entries |
172
172
 
173
173
  **Agents MUST NOT**: clean up worktrees, remove tasks from registry, or delete branches.
174
174
 
175
- ## Cleanup Reference (for /ship and --abort)
175
+ ## Cleanup Reference (for ship and --abort)
176
176
 
177
177
  *(Bash command with Node.js require - adapt for OpenCode)*
178
178
 
@@ -192,7 +192,7 @@ On failure: remove partial worktree, prune refs, update state with `failPhase()`
192
192
 
193
193
  ## Constraints
194
194
 
195
- - Only create worktrees - never delete them (cleanup is handled by /ship or --abort)
195
+ - Only create worktrees - never delete them (cleanup is handled by ship or --abort)
196
196
  - Do not remove tasks from tasks.json registry
197
197
  - Do not delete branches
198
198
  - Do not modify files in the main repository after switching to worktree
@@ -216,9 +216,10 @@ The results of the consultation are:
216
216
  {response}
217
217
  ```
218
218
 
219
- For continuable tools (Claude/Gemini), also display: `Session: {session_id} - use /consult --continue to resume`
219
+ For continuable tools with a session_id (Claude, Gemini, OpenCode), display: `Session: {session_id} - use /consult --continue to resume`
220
+ For Codex (context-based continuation, no session_id), display: `Use /consult --continue to continue this conversation (prior context will be prepended)`
220
221
 
221
- Save session state for continuable tools (Claude, Gemini) to `{AI_STATE_DIR}/consult/last-session.json`.
222
+ Save session state for continuable tools (Claude, Gemini, Codex, OpenCode) to `{AI_STATE_DIR}/consult/last-session.json`.
222
223
 
223
224
  Platform state directory:
224
225
  - Claude Code: `.opencode/`
@@ -87,7 +87,7 @@ This workflow exists because each step serves a purpose. Taking shortcuts defeat
87
87
  9. Review Loop
88
88
  10. Delivery Validation
89
89
  11. Docs Update
90
- 12. /ship
90
+ 12. `ship`
91
91
 
92
92
  **Human interaction points (ONLY THESE):**
93
93
  1. Policy selection via checkboxes
@@ -106,10 +106,10 @@ Each phase must complete before the next starts:
106
106
  | Review Loop | Must approve (no open issues or override) |
107
107
  | Delivery | Tests pass, build passes |
108
108
  | Docs | Documentation updated |
109
- | Ship | Explicit /ship invocation (not hook-only) |
109
+ | Ship | Explicit `ship` invocation (plugin command) |
110
110
 
111
111
  **Forbidden actions for agents:**
112
- - No agent may create PRs or push to remote (only /ship)
112
+ - No agent may create PRs or push to remote (only ship)
113
113
  - No agent may skip Phase 9, delivery-validator, or docs update
114
114
  </workflow-gates>
115
115
 
@@ -354,13 +354,13 @@ Uses the unified sync-docs agent from the sync-docs plugin with `before-pr` scop
354
354
  </phase-11>
355
355
 
356
356
  <phase-12>
357
- ## Phase 12: Handoff to /ship
357
+ ## Phase 12: Handoff to ship
358
358
 
359
- After docs update (sync-docs-agent) completes, invoke /ship explicitly:
359
+ After docs update (sync-docs-agent) completes, invoke `ship` explicitly:
360
360
 
361
361
  *(JavaScript reference - not executable in OpenCode)*
362
362
 
363
- **/ship responsibilities:**
363
+ **ship responsibilities:**
364
364
  - Create PR, push branch
365
365
  - Monitor CI and review comments
366
366
  - Merge when approved
@@ -388,6 +388,6 @@ try {
388
388
  - Sonnet for validation tasks (review, delivery)
389
389
  - Haiku for simple tasks (worktree)
390
390
  - Fully autonomous after plan approval
391
- - Explicit /ship handoff for PR workflow
391
+ - Explicit ship handoff for PR workflow
392
392
 
393
393
  Begin workflow now.
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: agnix
4
4
  description: "Use when user asks to 'lint agent configs', 'validate skills', 'check CLAUDE.md', 'validate hooks', 'lint MCP'. Validates agent configuration files against 155 rules across 10+ AI tools."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix] [--strict] [--target=claude-code|cursor|codex]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: consult
4
4
  description: "Cross-tool AI consultation. Use when user asks to 'consult gemini', 'ask codex', 'get second opinion', 'cross-check with claude', 'consult another AI', 'ask opencode', 'copilot opinion', or wants a second opinion from a different AI tool."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[question] [--tool] [--effort] [--model] [--context] [--continue]"
7
7
  ---
8
8
 
@@ -83,6 +83,7 @@ Models: gemini-2.5-flash, gemini-2.5-pro, gemini-3-flash-preview, gemini-3-pro-p
83
83
 
84
84
  ```
85
85
  Command: codex -q "QUESTION" --json -m "MODEL" -a suggest -c model_reasoning_effort="LEVEL"
86
+ Session resume: codex resume "SESSION_ID"
86
87
  ```
87
88
 
88
89
  Models: gpt-5.1-codex-mini, gpt-5-codex, gpt-5.1-codex, gpt-5.2-codex, gpt-5.3-codex, gpt-5.1-codex-max
@@ -95,12 +96,14 @@ Models: gpt-5.1-codex-mini, gpt-5-codex, gpt-5.1-codex, gpt-5.2-codex, gpt-5.3-c
95
96
  | max | gpt-5.3-codex | xhigh |
96
97
 
97
98
  **Parse output**: `JSON.parse(stdout).message` or raw text
98
- **Continuable**: No
99
+ **Session ID**: Codex prints a resume hint at session end (e.g., `codex resume SESSION_ID`). Extract the session ID from stdout or from `JSON.parse(stdout).session_id` if available.
100
+ **Continuable**: Yes, but interactive only. Sessions are stored as JSONL rollout files at `~/.codex/sessions/`. The `codex resume SESSION_ID` subcommand resumes in TUI mode -- it does not support `-q` for non-interactive use. For non-interactive continuation, prepend prior conversation context to the new question text instead.
99
101
 
100
102
  ### OpenCode
101
103
 
102
104
  ```
103
105
  Command: opencode run "QUESTION" --format json --model "MODEL" --variant "VARIANT"
106
+ Session resume: opencode run "QUESTION" --format json --model "MODEL" --variant "VARIANT" --continue (most recent) or --session "SESSION_ID"
104
107
  With thinking: add --thinking flag
105
108
  ```
106
109
 
@@ -114,7 +117,8 @@ Models: 75+ via providers (format: provider/model). Top picks: claude-sonnet-4-5
114
117
  | max | (user-selected or default) | high + --thinking |
115
118
 
116
119
  **Parse output**: Parse JSON events from stdout, extract final text response
117
- **Continuable**: No
120
+ **Session ID**: Extract from JSON output if available, or use `--continue` to auto-resume the most recent session.
121
+ **Continuable**: Yes (via `--continue` or `--session`). Sessions are stored in a SQLite database in the OpenCode data directory. Use `--session SESSION_ID` for a specific session, or `--continue` for the most recent.
118
122
 
119
123
  ### Copilot
120
124
 
@@ -156,7 +160,10 @@ If `--model` is specified, use it directly. Otherwise, use the effort-based mode
156
160
 
157
161
  Use the command template from the provider's configuration section. Substitute QUESTION, MODEL, TURNS, LEVEL, and VARIANT with resolved values.
158
162
 
159
- If continuing a session (Claude or Gemini): append `--resume SESSION_ID`.
163
+ If continuing a session:
164
+ - **Claude or Gemini**: append `--resume SESSION_ID` to the command.
165
+ - **Codex**: no non-interactive resume flag exists. Prepend the prior Q&A context to the new question text before passing to `codex -q`.
166
+ - **OpenCode**: append `--session SESSION_ID` to the command. If no session_id is saved, use `--continue` instead (resumes most recent session).
160
167
  If OpenCode at max effort: append `--thinking`.
161
168
 
162
169
  ### Step 3: Context Packaging
@@ -181,9 +188,14 @@ User-provided question text MUST NOT be interpolated into shell command strings.
181
188
  | Provider | Safe command pattern |
182
189
  |----------|---------------------|
183
190
  | Claude | `claude -p - --output-format json --model "MODEL" --max-turns TURNS --allowedTools "Read,Glob,Grep" < "{AI_STATE_DIR}/consult/question.tmp"` |
191
+ | Claude (resume) | `claude -p - --output-format json --model "MODEL" --max-turns TURNS --allowedTools "Read,Glob,Grep" --resume "SESSION_ID" < "{AI_STATE_DIR}/consult/question.tmp"` |
184
192
  | Gemini | `gemini -p - --output-format json -m "MODEL" < "{AI_STATE_DIR}/consult/question.tmp"` |
193
+ | Gemini (resume) | `gemini -p - --output-format json -m "MODEL" --resume "SESSION_ID" < "{AI_STATE_DIR}/consult/question.tmp"` |
185
194
  | Codex | `codex -q "$(cat "{AI_STATE_DIR}/consult/question.tmp")" --json -m "MODEL" -a suggest` (Codex lacks stdin mode -- cat reads from platform-controlled path, not user input) |
195
+ | Codex (continue) | No non-interactive resume. Prepend prior context to question, then use standard Codex command above. |
186
196
  | OpenCode | `opencode run - --format json --model "MODEL" --variant "VARIANT" < "{AI_STATE_DIR}/consult/question.tmp"` |
197
+ | OpenCode (resume by ID) | `opencode run - --format json --model "MODEL" --variant "VARIANT" --session "SESSION_ID" < "{AI_STATE_DIR}/consult/question.tmp"` |
198
+ | OpenCode (resume latest) | `opencode run - --format json --model "MODEL" --variant "VARIANT" --continue < "{AI_STATE_DIR}/consult/question.tmp"` |
187
199
  | Copilot | `copilot -p - < "{AI_STATE_DIR}/consult/question.tmp"` |
188
200
 
189
201
  3. **Delete the temp file** after the command completes (success or failure). Always clean up to prevent accumulation.
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: deslop
4
4
  description: "Use when user wants to clean AI slop from code. Use for cleanup, remove debug statements, find ghost code, repo hygiene."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[report|apply] [--scope=all|diff|path] [--thoroughness=quick|normal|deep]"
7
7
  ---
8
8
 
@@ -1,8 +1,8 @@
1
1
  <!-- AUTO-GENERATED by scripts/gen-adapters.js - DO NOT EDIT -->
2
2
  ---
3
3
  name: discover-tasks
4
- description: "Use when discovering and prioritizing tasks from configured sources. Handles GitHub, GitLab, local files, and custom sources."
5
- version: 5.0.0
4
+ description: "Use when user asks to \"discover tasks\", \"find next task\", or \"prioritize issues\". Discovers and ranks tasks from GitHub, GitLab, local files, and custom sources."
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # discover-tasks
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: drift-analysis
4
4
  description: Use when the user asks about plan drift, reality check, comparing docs to code, project state analysis, roadmap alignment, implementation gaps, or needs guidance on identifying discrepancies between documented plans and actual implementation state.
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # Drift Analysis
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-agent-prompts
4
4
  description: "Use when improving agent prompts, frontmatter, and tool restrictions."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix] [--verbose]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-claude-memory
4
4
  description: "Use when improving CLAUDE.md or AGENTS.md project memory files."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  > **OpenCode Note**: Invoke agents using `@agent-name` syntax.
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-cross-file
4
4
  description: "Use when checking cross-file consistency: tools vs frontmatter, agent references, duplicate rules, contradictions."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-docs
4
4
  description: "Use when improving documentation structure, accuracy, and RAG readiness."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix] [--ai]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-hooks
4
4
  description: "Use when reviewing hooks for safety, timeouts, and correct frontmatter."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-orchestrator
4
4
  description: "Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--apply] [--focus=TYPE]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-plugins
4
4
  description: "Use when analyzing plugin structures, MCP tools, and plugin security patterns."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-prompts
4
4
  description: "Use when improving general prompts for structure, examples, and constraints."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: enhance-skills
4
4
  description: "Use when reviewing SKILL.md files for structure and trigger quality."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[path] [--fix]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: learn
4
4
  description: "Research any topic online and create learning guides. Use when user asks to 'learn about', 'research topic', 'create learning guide', 'build knowledge base', or 'study subject'."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[topic] [--depth=brief|medium|deep]"
7
7
  ---
8
8
 
@@ -1,7 +1,7 @@
1
1
  <!-- AUTO-GENERATED by scripts/gen-adapters.js - DO NOT EDIT -->
2
2
  ---
3
3
  name: orchestrate-review
4
- description: "Use when user asks to \"deep review the code\", \"thorough code review\", \"multi-pass review\", or when orchestrating Phase 9 review loop. Provides review pass definitions (code quality, security, performance, test coverage, specialists), signal detection patterns, and iteration algorithms."
4
+ description: "Use when user asks to \"deep review the code\", \"thorough code review\", \"multi-pass review\", or when orchestrating the Phase 9 review loop. Provides review pass definitions (code quality, security, performance, test coverage), signal detection patterns, and iteration algorithms."
5
5
  metadata:
6
6
  short-description: "Multi-pass code review orchestration"
7
7
  ---
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-analyzer
4
4
  description: "Use when synthesizing perf findings into evidence-backed recommendations and decisions."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # perf-analyzer
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-baseline-manager
4
4
  description: "Use when managing perf baselines, consolidating results, or comparing versions. Ensures one baseline JSON per version."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # perf-baseline-manager
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-benchmarker
4
4
  description: "Use when running performance benchmarks, establishing baselines, or validating regressions with sequential runs. Enforces 60s minimum runs (30s only for binary search) and no parallel benchmarks."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[command] [duration]"
7
7
  ---
8
8
 
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-code-paths
4
4
  description: "Use when mapping code paths, entrypoints, and likely hot files before profiling."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # perf-code-paths
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-investigation-logger
4
4
  description: "Use when appending structured perf investigation notes and evidence."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  ---
7
7
 
8
8
  # perf-investigation-logger
@@ -2,7 +2,7 @@
2
2
  ---
3
3
  name: perf-profiler
4
4
  description: "Use when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence."
5
- version: 5.0.0
5
+ version: 5.0.2
6
6
  argument-hint: "[tool] [command]"
7
7
  ---
8
8