@rallycry/conveyor-agent 11.0.12 → 11.0.13
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.
|
@@ -6957,7 +6957,10 @@ var CodexTuiAdapter = class {
|
|
|
6957
6957
|
sqlite_home: codexSqliteHome(this.env),
|
|
6958
6958
|
approval_policy: "never",
|
|
6959
6959
|
sandbox_mode: input.options.permissionMode === "plan" ? "read-only" : "danger-full-access",
|
|
6960
|
-
developer_instructions:
|
|
6960
|
+
developer_instructions: [
|
|
6961
|
+
input.options.appendSystemPrompt,
|
|
6962
|
+
"Conveyor workflow skills are stored in .claude/skills in the workspace. When instructed to run a /skill-name skill, read .claude/skills/skill-name/SKILL.md and follow its instructions. This is a file-based workflow, not a native slash command."
|
|
6963
|
+
].filter(Boolean).join("\n\n"),
|
|
6961
6964
|
mcp_servers: codexMcpConfig(input.mcpEntries ?? {}),
|
|
6962
6965
|
projects: { [trustedCwd]: { trust_level: "trusted" } }
|
|
6963
6966
|
};
|
|
@@ -14009,7 +14012,7 @@ function sessionFileExists(sessionUuid, cwd) {
|
|
|
14009
14012
|
}
|
|
14010
14013
|
function hasExistingSessionFile(taskId, cwd, lineage) {
|
|
14011
14014
|
const key = sessionLineageKey(taskId, lineage.agentMode, lineage.runnerMode);
|
|
14012
|
-
if (process.env.CONVEYOR_TUI === "codex"
|
|
14015
|
+
if (process.env.CONVEYOR_TUI === "codex") {
|
|
14013
14016
|
return !!readCodexLineage(taskIdToSessionUuid(key), cwd);
|
|
14014
14017
|
}
|
|
14015
14018
|
return sessionFileExists(taskIdToSessionUuid(key), cwd);
|
|
@@ -14329,7 +14332,7 @@ async function runSdkQuery(host, context, followUpContent, promptDeliveryOverrid
|
|
|
14329
14332
|
const sessionStart = resolveSessionStart(
|
|
14330
14333
|
sessionLineageKey(context.taskId, mode, host.config.mode),
|
|
14331
14334
|
host.config.workspaceDir,
|
|
14332
|
-
host.config.mode === "code-review" ? "claude-code" : process.env.CONVEYOR_TUI
|
|
14335
|
+
host.config.mode === "code-review" && process.env.CONVEYOR_TUI !== "codex" ? "claude-code" : process.env.CONVEYOR_TUI
|
|
14333
14336
|
);
|
|
14334
14337
|
const hasExistingSession = !!sessionStart.resume;
|
|
14335
14338
|
const promptDelivery = promptDeliveryOverride ?? resolvePromptDelivery({
|
|
@@ -14751,7 +14754,7 @@ function resolveHarnessKind() {
|
|
|
14751
14754
|
return "pty";
|
|
14752
14755
|
}
|
|
14753
14756
|
function resolveCardTui(mode) {
|
|
14754
|
-
if (mode === "code-review") return "claude-code";
|
|
14757
|
+
if (mode === "code-review" && process.env.CONVEYOR_TUI !== "codex") return "claude-code";
|
|
14755
14758
|
return resolveTuiKindFromEnv(process.env);
|
|
14756
14759
|
}
|
|
14757
14760
|
function buildPtyBridge(connection, onBackgroundTaskDone) {
|
package/dist/cli.js
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
resolveTuiKindFromEnv,
|
|
28
28
|
runUsageProbe,
|
|
29
29
|
sampleKeyUsage
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-SKMNL6C2.js";
|
|
31
31
|
import "./chunk-SR66HQKB.js";
|
|
32
32
|
import {
|
|
33
33
|
inheritedEnv,
|
|
@@ -615,7 +615,7 @@ function buildReviewChildEnv(baseEnv, data) {
|
|
|
615
615
|
delete env.CONVEYOR_GIT_READY_MARKER;
|
|
616
616
|
delete env.CONVEYOR_AGENT_MODE;
|
|
617
617
|
delete env.CONVEYOR_IS_AUTO;
|
|
618
|
-
delete env.CONVEYOR_TUI;
|
|
618
|
+
if (env.CONVEYOR_TUI !== "codex") delete env.CONVEYOR_TUI;
|
|
619
619
|
return env;
|
|
620
620
|
}
|
|
621
621
|
var ReviewChildSupervisor = class {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rallycry/conveyor-agent",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.13",
|
|
4
4
|
"description": "Conveyor Agent Runner v10 - PTY harness for the task chat (SDK harness for audit/project-chat). Agent-as-User architecture with BaseService patterns. Works locally too.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|