@heretyc/subagent-mcp 2.8.9 → 2.9.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.
- package/LICENSE +201 -201
- package/NOTICE +5 -5
- package/README.md +7 -0
- package/directives/orchestration-claude.md +1 -1
- package/directives/orchestration-codex.md +1 -1
- package/directives/reminder-on.md +1 -1
- package/directives/short-on.md +1 -1
- package/dist/drivers.js +43 -2
- package/dist/index.js +10 -5
- package/dist/init.js +34 -13
- package/dist/routing-table.json +3561 -2469
- package/dist/setup.js +2 -2
- package/package.json +2 -2
package/dist/setup.js
CHANGED
|
@@ -145,7 +145,7 @@ export function reconcileCodexToml(toml, serverPath) {
|
|
|
145
145
|
`command = "node"\n` +
|
|
146
146
|
`args = ["${serverPath}"]\n` +
|
|
147
147
|
`startup_timeout_sec = 10\n` +
|
|
148
|
-
`tool_timeout_sec =
|
|
148
|
+
`tool_timeout_sec = 60\n`;
|
|
149
149
|
// Main block runs from its header to the next table header — a '[' at the
|
|
150
150
|
// START of a line (its .tools.* subtables are separate tables and are left
|
|
151
151
|
// alone). A bare [^[]* would stop at the '[' inside `args = ["..."]`.
|
|
@@ -385,7 +385,7 @@ function repairPromptFor(vendor, problem) {
|
|
|
385
385
|
return (`subagent-mcp setup hit a problem on my machine: ${problem}. ` +
|
|
386
386
|
`The install root is "${fwd(INSTALL_ROOT)}". Please repair my Codex CLI wiring: ` +
|
|
387
387
|
`(1) ensure ~/.codex/config.toml has [mcp_servers.subagent-mcp] with command = "node", ` +
|
|
388
|
-
`args = ["${p.server}"], startup_timeout_sec = 10, tool_timeout_sec =
|
|
388
|
+
`args = ["${p.server}"], startup_timeout_sec = 10, tool_timeout_sec = 60, and ` +
|
|
389
389
|
`(2) ensure ~/.codex/hooks.json has SessionStart and UserPromptSubmit entries ` +
|
|
390
390
|
`{type:"command", command:'node "${p.codexHook}"', timeout:10}. ` +
|
|
391
391
|
`Back up any file before editing it, then remind me to run /hooks in Codex and trust the hook.`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heretyc/subagent-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "MCP server that launches and manages always-interactive Claude Code and Codex sub-agent sessions (no direct Anthropic/OpenAI API).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"postinstall": "node scripts/postinstall.mjs",
|
|
23
23
|
"prepare": "npm run build",
|
|
24
24
|
"prepublishOnly": "npm test",
|
|
25
|
-
"test": "npm run check:versions && node test/effort.test.mjs && node test/drivers.test.mjs && node test/platform.test.mjs && node test/wait.test.mjs && node test/status.test.mjs && node test/output.test.mjs && node test/stream.test.mjs && node test/routing.test.mjs && node test/deadlock.test.mjs && node test/handler-validation.test.mjs && node test/index-handler.test.mjs && node test/ruleset.test.mjs && node test/ruleset-exec.test.mjs && node test/ruleset-handler.test.mjs && node test/failover.test.mjs && node test/orchestration-marker.test.mjs && node test/orchestration-hook-core.test.mjs && node test/orchestration-adapters.test.mjs && node test/orchestration-pretool.test.mjs && node test/orchestration-directives.test.mjs && node test/no-five-call.test.mjs && node test/check-worktree-subagent.test.mjs && node test/launch-agent-upsert.test.mjs && node test/init-migration.test.mjs && node test/mirror-fragments.test.mjs && node test/performance-tier-effort.test.mjs && node test/setup-repair.test.mjs && node test/setup-quoting.test.mjs && node test/setup-wire.test.mjs && node test/setup-cli-integration.test.mjs && node test/init.test.mjs && node test/model-selection-mode.test.mjs && node test/cli-args.test.mjs && node scripts/validate_provider.mjs && node scripts/validate_seed_sites.mjs && node scripts/validate_routing_audit.mjs && node test/seed-sites.test.mjs && node test/mcp-compliance.test.mjs"
|
|
25
|
+
"test": "npm run check:versions && node test/effort.test.mjs && node test/drivers.test.mjs && node test/platform.test.mjs && node test/wait.test.mjs && node test/status.test.mjs && node test/output.test.mjs && node test/stream.test.mjs && node test/routing.test.mjs && node test/deadlock.test.mjs && node test/handler-validation.test.mjs && node test/index-handler.test.mjs && node test/ruleset.test.mjs && node test/ruleset-exec.test.mjs && node test/ruleset-handler.test.mjs && node test/failover.test.mjs && node test/orchestration-marker.test.mjs && node test/orchestration-hook-core.test.mjs && node test/orchestration-adapters.test.mjs && node test/orchestration-pretool.test.mjs && node test/orchestration-directives.test.mjs && node test/no-five-call.test.mjs && node test/check-worktree-subagent.test.mjs && node test/launch-agent-upsert.test.mjs && node test/claude-session-limit.test.mjs && node test/init-migration.test.mjs && node test/init-global.test.mjs && node test/mirror-fragments.test.mjs && node test/performance-tier-effort.test.mjs && node test/setup-repair.test.mjs && node test/setup-quoting.test.mjs && node test/setup-wire.test.mjs && node test/setup-cli-integration.test.mjs && node test/init.test.mjs && node test/model-selection-mode.test.mjs && node test/cli-args.test.mjs && node scripts/validate_provider.mjs && node scripts/validate_seed_sites.mjs && node scripts/validate_routing_audit.mjs && node test/seed-sites.test.mjs && node test/mcp-compliance.test.mjs"
|
|
26
26
|
},
|
|
27
27
|
"author": "Lexi Blackburn",
|
|
28
28
|
"license": "Apache-2.0",
|