@cat-factory/executor-harness 1.86.0 → 1.86.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/dist/agent-runner.d.ts +1 -1
- package/dist/job.d.ts +1 -1
- package/package.json +4 -4
- package/src/agent-runner.ts +1 -1
- package/src/job.ts +1 -1
package/dist/agent-runner.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export type SubscriptionHarness = 'claude-code' | 'codex';
|
|
|
8
8
|
export interface SubscriptionRunOptions {
|
|
9
9
|
/** Prepared working directory (cloned/scaffolded by the caller). */
|
|
10
10
|
cwd: string;
|
|
11
|
-
/**
|
|
11
|
+
/** The vendor's own model id (what the agent CLI is invoked with), never a catalog id. */
|
|
12
12
|
model: string;
|
|
13
13
|
/** Composed role + best-practice fragments, supplied as the system prompt. */
|
|
14
14
|
systemPrompt: string;
|
package/dist/job.d.ts
CHANGED
|
@@ -622,7 +622,7 @@ export interface AgentResult {
|
|
|
622
622
|
/** The one-shot inline completion job. `harness` must be a subscription harness. */
|
|
623
623
|
export interface InlineJob extends HarnessAuthFields {
|
|
624
624
|
jobId: string;
|
|
625
|
-
/**
|
|
625
|
+
/** The vendor's own model id (what the agent CLI is invoked with), never a catalog id. */
|
|
626
626
|
model: string;
|
|
627
627
|
/** Composed role + best-practice fragments (Claude: `--append-system-prompt`; Codex: prepended). */
|
|
628
628
|
systemPrompt: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/executor-harness",
|
|
3
|
-
"version": "1.86.
|
|
3
|
+
"version": "1.86.2",
|
|
4
4
|
"description": "Container payload: a thin TypeScript wrapper that runs the Pi coding agent against a cloned repo and opens a PR. Runs in the Cloudflare Container (and, in local native mode, as a host process); carries no secrets.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"hono": "^4.12.33",
|
|
31
31
|
"typescript": "7.0.2",
|
|
32
32
|
"vitest": "^4.1.10",
|
|
33
|
-
"@cat-factory/kernel": "0.
|
|
34
|
-
"@cat-factory/server": "0.
|
|
35
|
-
"@cat-factory/spend": "0.
|
|
33
|
+
"@cat-factory/kernel": "0.214.1",
|
|
34
|
+
"@cat-factory/server": "0.194.0",
|
|
35
|
+
"@cat-factory/spend": "0.13.1"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "tsc -p tsconfig.json",
|
package/src/agent-runner.ts
CHANGED
|
@@ -59,7 +59,7 @@ export type SubscriptionHarness = 'claude-code' | 'codex'
|
|
|
59
59
|
export interface SubscriptionRunOptions {
|
|
60
60
|
/** Prepared working directory (cloned/scaffolded by the caller). */
|
|
61
61
|
cwd: string
|
|
62
|
-
/**
|
|
62
|
+
/** The vendor's own model id (what the agent CLI is invoked with), never a catalog id. */
|
|
63
63
|
model: string
|
|
64
64
|
/** Composed role + best-practice fragments, supplied as the system prompt. */
|
|
65
65
|
systemPrompt: string
|
package/src/job.ts
CHANGED
|
@@ -1220,7 +1220,7 @@ function parseFrontendInfraSpec(o: Record<string, unknown>): FrontendInfraSpec {
|
|
|
1220
1220
|
/** The one-shot inline completion job. `harness` must be a subscription harness. */
|
|
1221
1221
|
export interface InlineJob extends HarnessAuthFields {
|
|
1222
1222
|
jobId: string
|
|
1223
|
-
/**
|
|
1223
|
+
/** The vendor's own model id (what the agent CLI is invoked with), never a catalog id. */
|
|
1224
1224
|
model: string
|
|
1225
1225
|
/** Composed role + best-practice fragments (Claude: `--append-system-prompt`; Codex: prepended). */
|
|
1226
1226
|
systemPrompt: string
|