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.
- package/.claude-plugin/marketplace.json +13 -13
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +19 -2
- package/README.md +1 -0
- package/adapters/README.md +1 -1
- package/adapters/codex/skills/consult/SKILL.md +3 -2
- package/adapters/codex/skills/next-task/SKILL.md +8 -8
- package/adapters/opencode/agents/consult-agent.md +1 -1
- package/adapters/opencode/agents/delivery-validator.md +1 -1
- package/adapters/opencode/agents/implementation-agent.md +1 -1
- package/adapters/opencode/agents/worktree-manager.md +3 -3
- package/adapters/opencode/commands/consult.md +3 -2
- package/adapters/opencode/commands/next-task.md +7 -7
- package/adapters/opencode/skills/agnix/SKILL.md +1 -1
- package/adapters/opencode/skills/consult/SKILL.md +16 -4
- package/adapters/opencode/skills/deslop/SKILL.md +1 -1
- package/adapters/opencode/skills/discover-tasks/SKILL.md +2 -2
- package/adapters/opencode/skills/drift-analysis/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-agent-prompts/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-claude-memory/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-cross-file/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-docs/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-hooks/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-orchestrator/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-plugins/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-prompts/SKILL.md +1 -1
- package/adapters/opencode/skills/enhance-skills/SKILL.md +1 -1
- package/adapters/opencode/skills/learn/SKILL.md +1 -1
- package/adapters/opencode/skills/orchestrate-review/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-analyzer/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-baseline-manager/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-benchmarker/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-code-paths/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-investigation-logger/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-profiler/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-theory-gatherer/SKILL.md +1 -1
- package/adapters/opencode/skills/perf-theory-tester/SKILL.md +1 -1
- package/adapters/opencode/skills/sync-docs/SKILL.md +1 -1
- package/adapters/opencode/skills/validate-delivery/SKILL.md +2 -2
- package/bin/cli.js +42 -8
- package/bin/dev-cli.js +16 -6
- package/lib/collectors/github.js +76 -12
- package/lib/perf/benchmark-runner.js +11 -6
- package/lib/perf/investigation-state.js +12 -13
- package/lib/perf/profiling-runner.js +23 -4
- package/lib/repo-map/concurrency.js +29 -0
- package/lib/repo-map/runner.js +218 -19
- package/lib/repo-map/updater.js +115 -27
- package/lib/state/workflow-state.js +31 -30
- package/lib/utils/command-parser.js +0 -0
- package/lib/utils/state-helpers.js +61 -0
- package/package.json +2 -1
- package/plugins/agnix/.claude-plugin/plugin.json +1 -1
- package/plugins/agnix/skills/agnix/SKILL.md +1 -1
- package/plugins/audit-project/.claude-plugin/plugin.json +1 -1
- package/plugins/audit-project/lib/collectors/github.js +76 -12
- package/plugins/audit-project/lib/perf/benchmark-runner.js +11 -6
- package/plugins/audit-project/lib/perf/investigation-state.js +12 -13
- package/plugins/audit-project/lib/perf/profiling-runner.js +23 -4
- package/plugins/audit-project/lib/repo-map/concurrency.js +29 -0
- package/plugins/audit-project/lib/repo-map/runner.js +218 -19
- package/plugins/audit-project/lib/repo-map/updater.js +115 -27
- package/plugins/audit-project/lib/state/workflow-state.js +31 -30
- package/plugins/audit-project/lib/utils/command-parser.js +0 -0
- package/plugins/audit-project/lib/utils/state-helpers.js +61 -0
- package/plugins/consult/.claude-plugin/plugin.json +1 -1
- package/plugins/consult/agents/consult-agent.md +1 -1
- package/plugins/consult/commands/consult.md +3 -2
- package/plugins/consult/skills/consult/SKILL.md +16 -4
- package/plugins/deslop/.claude-plugin/plugin.json +1 -1
- package/plugins/deslop/lib/collectors/github.js +76 -12
- package/plugins/deslop/lib/perf/benchmark-runner.js +11 -6
- package/plugins/deslop/lib/perf/investigation-state.js +12 -13
- package/plugins/deslop/lib/perf/profiling-runner.js +23 -4
- package/plugins/deslop/lib/repo-map/concurrency.js +29 -0
- package/plugins/deslop/lib/repo-map/runner.js +218 -19
- package/plugins/deslop/lib/repo-map/updater.js +115 -27
- package/plugins/deslop/lib/state/workflow-state.js +31 -30
- package/plugins/deslop/lib/utils/command-parser.js +0 -0
- package/plugins/deslop/lib/utils/state-helpers.js +61 -0
- package/plugins/deslop/skills/deslop/SKILL.md +1 -1
- package/plugins/drift-detect/.claude-plugin/plugin.json +1 -1
- package/plugins/drift-detect/lib/collectors/github.js +76 -12
- package/plugins/drift-detect/lib/perf/benchmark-runner.js +11 -6
- package/plugins/drift-detect/lib/perf/investigation-state.js +12 -13
- package/plugins/drift-detect/lib/perf/profiling-runner.js +23 -4
- package/plugins/drift-detect/lib/repo-map/concurrency.js +29 -0
- package/plugins/drift-detect/lib/repo-map/runner.js +218 -19
- package/plugins/drift-detect/lib/repo-map/updater.js +115 -27
- package/plugins/drift-detect/lib/state/workflow-state.js +31 -30
- package/plugins/drift-detect/lib/utils/command-parser.js +0 -0
- package/plugins/drift-detect/lib/utils/state-helpers.js +61 -0
- package/plugins/drift-detect/skills/drift-analysis/SKILL.md +1 -1
- package/plugins/enhance/.claude-plugin/plugin.json +1 -1
- package/plugins/enhance/lib/collectors/github.js +76 -12
- package/plugins/enhance/lib/perf/benchmark-runner.js +11 -6
- package/plugins/enhance/lib/perf/investigation-state.js +12 -13
- package/plugins/enhance/lib/perf/profiling-runner.js +23 -4
- package/plugins/enhance/lib/repo-map/concurrency.js +29 -0
- package/plugins/enhance/lib/repo-map/runner.js +218 -19
- package/plugins/enhance/lib/repo-map/updater.js +115 -27
- package/plugins/enhance/lib/state/workflow-state.js +31 -30
- package/plugins/enhance/lib/utils/command-parser.js +0 -0
- package/plugins/enhance/lib/utils/state-helpers.js +61 -0
- package/plugins/enhance/skills/enhance-agent-prompts/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-claude-memory/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-cross-file/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-docs/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-hooks/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-orchestrator/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-plugins/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-prompts/SKILL.md +1 -1
- package/plugins/enhance/skills/enhance-skills/SKILL.md +1 -1
- package/plugins/learn/.claude-plugin/plugin.json +1 -1
- package/plugins/learn/lib/collectors/github.js +76 -12
- package/plugins/learn/lib/perf/benchmark-runner.js +11 -6
- package/plugins/learn/lib/perf/investigation-state.js +12 -13
- package/plugins/learn/lib/perf/profiling-runner.js +23 -4
- package/plugins/learn/lib/repo-map/concurrency.js +29 -0
- package/plugins/learn/lib/repo-map/runner.js +218 -19
- package/plugins/learn/lib/repo-map/updater.js +115 -27
- package/plugins/learn/lib/state/workflow-state.js +31 -30
- package/plugins/learn/lib/utils/command-parser.js +0 -0
- package/plugins/learn/lib/utils/state-helpers.js +61 -0
- package/plugins/learn/skills/learn/SKILL.md +1 -1
- package/plugins/next-task/.claude-plugin/plugin.json +1 -1
- package/plugins/next-task/agents/delivery-validator.md +1 -1
- package/plugins/next-task/agents/implementation-agent.md +2 -2
- package/plugins/next-task/agents/worktree-manager.md +3 -3
- package/plugins/next-task/commands/next-task.md +8 -8
- package/plugins/next-task/hooks/hooks.json +1 -1
- package/plugins/next-task/lib/collectors/github.js +76 -12
- package/plugins/next-task/lib/perf/benchmark-runner.js +11 -6
- package/plugins/next-task/lib/perf/investigation-state.js +12 -13
- package/plugins/next-task/lib/perf/profiling-runner.js +23 -4
- package/plugins/next-task/lib/repo-map/concurrency.js +29 -0
- package/plugins/next-task/lib/repo-map/runner.js +218 -19
- package/plugins/next-task/lib/repo-map/updater.js +115 -27
- package/plugins/next-task/lib/state/workflow-state.js +31 -30
- package/plugins/next-task/lib/utils/command-parser.js +0 -0
- package/plugins/next-task/lib/utils/state-helpers.js +61 -0
- package/plugins/next-task/skills/discover-tasks/SKILL.md +2 -2
- package/plugins/next-task/skills/orchestrate-review/SKILL.md +1 -1
- package/plugins/next-task/skills/validate-delivery/SKILL.md +2 -2
- package/plugins/perf/.claude-plugin/plugin.json +1 -1
- package/plugins/perf/lib/collectors/github.js +76 -12
- package/plugins/perf/lib/perf/benchmark-runner.js +11 -6
- package/plugins/perf/lib/perf/investigation-state.js +12 -13
- package/plugins/perf/lib/perf/profiling-runner.js +23 -4
- package/plugins/perf/lib/repo-map/concurrency.js +29 -0
- package/plugins/perf/lib/repo-map/runner.js +218 -19
- package/plugins/perf/lib/repo-map/updater.js +115 -27
- package/plugins/perf/lib/state/workflow-state.js +31 -30
- package/plugins/perf/lib/utils/command-parser.js +0 -0
- package/plugins/perf/lib/utils/state-helpers.js +61 -0
- package/plugins/perf/skills/perf-analyzer/SKILL.md +1 -1
- package/plugins/perf/skills/perf-baseline-manager/SKILL.md +1 -1
- package/plugins/perf/skills/perf-benchmarker/SKILL.md +1 -1
- package/plugins/perf/skills/perf-code-paths/SKILL.md +1 -1
- package/plugins/perf/skills/perf-investigation-logger/SKILL.md +1 -1
- package/plugins/perf/skills/perf-profiler/SKILL.md +1 -1
- package/plugins/perf/skills/perf-theory-gatherer/SKILL.md +1 -1
- package/plugins/perf/skills/perf-theory-tester/SKILL.md +1 -1
- package/plugins/repo-map/.claude-plugin/plugin.json +1 -1
- package/plugins/repo-map/lib/collectors/github.js +76 -12
- package/plugins/repo-map/lib/perf/benchmark-runner.js +11 -6
- package/plugins/repo-map/lib/perf/investigation-state.js +12 -13
- package/plugins/repo-map/lib/perf/profiling-runner.js +23 -4
- package/plugins/repo-map/lib/repo-map/concurrency.js +29 -0
- package/plugins/repo-map/lib/repo-map/runner.js +218 -19
- package/plugins/repo-map/lib/repo-map/updater.js +115 -27
- package/plugins/repo-map/lib/state/workflow-state.js +31 -30
- package/plugins/repo-map/lib/utils/command-parser.js +0 -0
- package/plugins/repo-map/lib/utils/state-helpers.js +61 -0
- package/plugins/ship/.claude-plugin/plugin.json +1 -1
- package/plugins/ship/lib/collectors/github.js +76 -12
- package/plugins/ship/lib/perf/benchmark-runner.js +11 -6
- package/plugins/ship/lib/perf/investigation-state.js +12 -13
- package/plugins/ship/lib/perf/profiling-runner.js +23 -4
- package/plugins/ship/lib/repo-map/concurrency.js +29 -0
- package/plugins/ship/lib/repo-map/runner.js +218 -19
- package/plugins/ship/lib/repo-map/updater.js +115 -27
- package/plugins/ship/lib/state/workflow-state.js +31 -30
- package/plugins/ship/lib/utils/command-parser.js +0 -0
- package/plugins/ship/lib/utils/state-helpers.js +61 -0
- package/plugins/sync-docs/.claude-plugin/plugin.json +1 -1
- package/plugins/sync-docs/lib/collectors/github.js +76 -12
- package/plugins/sync-docs/lib/perf/benchmark-runner.js +11 -6
- package/plugins/sync-docs/lib/perf/investigation-state.js +12 -13
- package/plugins/sync-docs/lib/perf/profiling-runner.js +23 -4
- package/plugins/sync-docs/lib/repo-map/concurrency.js +29 -0
- package/plugins/sync-docs/lib/repo-map/runner.js +218 -19
- package/plugins/sync-docs/lib/repo-map/updater.js +115 -27
- package/plugins/sync-docs/lib/state/workflow-state.js +31 -30
- package/plugins/sync-docs/lib/utils/command-parser.js +0 -0
- package/plugins/sync-docs/lib/utils/state-helpers.js +61 -0
- package/plugins/sync-docs/skills/sync-docs/SKILL.md +1 -1
- package/scripts/bump-version.js +4 -1
- package/scripts/dev-install.js +9 -0
- package/scripts/validate-opencode-install.js +17 -4
- package/site/content.json +1 -1
- 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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
106
|
+
"version": "5.0.2",
|
|
107
107
|
"category": "productivity"
|
|
108
108
|
}
|
|
109
109
|
]
|
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">
|
package/adapters/README.md
CHANGED
|
@@ -209,9 +209,10 @@ The results of the consultation are:
|
|
|
209
209
|
{response}
|
|
210
210
|
```
|
|
211
211
|
|
|
212
|
-
For continuable tools (Claude
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
506
|
+
## Phase 12: Handoff to ship:ship
|
|
507
507
|
|
|
508
|
-
After docs update (sync-docs-agent) completes, invoke
|
|
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
|
|
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
|
-
|
|
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
|
|
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`
|
|
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
|
|
|
@@ -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
|
-
|
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
357
|
+
## Phase 12: Handoff to ship
|
|
358
358
|
|
|
359
|
-
After docs update (sync-docs-agent) completes, invoke
|
|
359
|
+
After docs update (sync-docs-agent) completes, invoke `ship` explicitly:
|
|
360
360
|
|
|
361
361
|
*(JavaScript reference - not executable in OpenCode)*
|
|
362
362
|
|
|
363
|
-
|
|
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
|
|
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.
|
|
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.
|
|
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
|
-
**
|
|
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
|
-
**
|
|
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
|
|
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.
|
|
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
|
|
5
|
-
version: 5.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.
|
|
5
|
+
version: 5.0.2
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Drift Analysis
|
|
@@ -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.
|
|
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
|
|
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-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.
|
|
5
|
+
version: 5.0.2
|
|
6
6
|
argument-hint: "[command] [duration]"
|
|
7
7
|
---
|
|
8
8
|
|