@galaxy9day/executor-adapter 0.10.1 → 0.10.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/README.md
CHANGED
|
@@ -246,7 +246,7 @@ Task(subagent_type="trellis-pi-check")
|
|
|
246
246
|
|
|
247
247
|
This keeps long dispatch output out of the main context. The sub-agent receives the MCP result, reads reports only when needed, and returns a short summary to the orchestrator.
|
|
248
248
|
|
|
249
|
-
Use `trellis-codex-implement` for the normal GPT implementation path. Use `trellis-pi-implement` only when you explicitly want Pi provider routing for implementation, and `trellis-pi-check` for read-only cross-model review. The Codex template omits `model` so `codex exec` uses this machine's Codex default from `$CODEX_HOME/config.toml`; the Pi templates resolve logical routes from `~/.pi/config.toml`.
|
|
249
|
+
Use `trellis-codex-implement` for the normal GPT implementation path. Use `trellis-pi-implement` only when you explicitly want Pi provider routing for implementation, and `trellis-pi-check` for read-only cross-model review. The templates set `effort: xhigh` for the Claude Code sub-agent itself; the MCP `thinking` parameter separately defaults to `xhigh` for the Codex/Pi executor it launches. The Codex template omits `model` so `codex exec` uses this machine's Codex default from `$CODEX_HOME/config.toml`; the Pi templates resolve logical routes from `~/.pi/config.toml`.
|
|
250
250
|
|
|
251
251
|
No Trellis `inject-subagent-context` hook edit is required. `dispatch` assembles Trellis task context itself from the task artifacts (`prd.md`, `design.md`, `implement.md`, `implement.jsonl`, and `check.jsonl` where applicable). For Codex/Pi/other platforms, translate these templates to the platform's native custom-agent syntax; do not put MCP tool names in `.trellis/agents/*.md`, because those files are provider-level channel runtime prompts, not MCP-capability declarations.
|
|
252
252
|
|
package/index.js
CHANGED
|
@@ -45,7 +45,7 @@ import { EXECUTORS, resolveExecutor } from './executors.js';
|
|
|
45
45
|
|
|
46
46
|
const SERVER_NAME = 'executor-adapter';
|
|
47
47
|
const LEGACY_SERVER_NAMES = ['pi-adapter'];
|
|
48
|
-
const SERVER_VERSION = '0.10.
|
|
48
|
+
const SERVER_VERSION = '0.10.2'; // keep in sync with package.json
|
|
49
49
|
const TMP_RUNTIME_DIR = path.join(os.tmpdir(), SERVER_NAME);
|
|
50
50
|
const CHANNEL_ENV_ALIASES = ['TRELLIS_CHANNEL', 'TRELLIS_CHANNEL_NAME'];
|
|
51
51
|
const TRELLIS_BIN_ENV = 'TRELLIS_BINARY';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galaxy9day/executor-adapter",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Multi-executor MCP (Codex CLI for GPT implementation, Pi CLI for cross-model review) for Trellis-aware and standalone use. Reads Trellis task artifacts, runs the executor in an isolated subprocess/worktree, and can optionally emit non-invasive Trellis channel audit messages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -5,6 +5,7 @@ description: >-
|
|
|
5
5
|
executor via executor-adapter in an isolated worktree, returning only a short
|
|
6
6
|
summary with result_class, changed files, and apply command. Use this as the
|
|
7
7
|
normal GPT implementation path for Trellis tasks.
|
|
8
|
+
effort: xhigh
|
|
8
9
|
tools: mcp__executor-adapter__dispatch, mcp__executor-adapter__preview_prompt, mcp__executor-adapter__read_report, mcp__executor-adapter__smoke, Read, Grep, Glob, Bash
|
|
9
10
|
---
|
|
10
11
|
|
|
@@ -4,6 +4,7 @@ description: >-
|
|
|
4
4
|
Cross-model code review via the Pi reviewer model through executor-adapter; read-only;
|
|
5
5
|
supplements, but does not replace, the orchestrator's own verification and
|
|
6
6
|
native trellis-check. Returns severity-graded findings only.
|
|
7
|
+
effort: xhigh
|
|
7
8
|
tools: mcp__executor-adapter__dispatch, mcp__executor-adapter__read_report, Read, Grep, Glob, Bash
|
|
8
9
|
---
|
|
9
10
|
|
|
@@ -4,6 +4,7 @@ description: >-
|
|
|
4
4
|
Dispatch mechanical, well-specified implementation tasks to the Pi executor via
|
|
5
5
|
the executor-adapter MCP only when provider routing outside Codex is explicitly
|
|
6
6
|
needed. For normal GPT implementation, use trellis-codex-implement instead.
|
|
7
|
+
effort: xhigh
|
|
7
8
|
tools: mcp__executor-adapter__dispatch, mcp__executor-adapter__preview_prompt, mcp__executor-adapter__read_report, mcp__executor-adapter__smoke, Read, Grep, Glob, Bash
|
|
8
9
|
---
|
|
9
10
|
|