@cat-factory/executor-harness 1.84.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.
@@ -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
- /** Real vendor model id, e.g. `claude-opus-4-8` / `gpt-5.5-codex`. */
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
- /** Real vendor model id, e.g. `claude-opus-4-8` / `gpt-5.5-codex`. */
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.84.0",
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",
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@hono/node-server": "^2.0.12",
29
- "@types/node": "^26.1.1",
30
- "hono": "^4.12.32",
29
+ "@types/node": "^26.1.2",
30
+ "hono": "^4.12.33",
31
31
  "typescript": "7.0.2",
32
32
  "vitest": "^4.1.10",
33
- "@cat-factory/kernel": "0.202.0",
34
- "@cat-factory/spend": "0.12.133",
35
- "@cat-factory/server": "0.187.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",
@@ -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
- /** Real vendor model id, e.g. `claude-opus-4-8` / `gpt-5.5-codex`. */
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
- /** Real vendor model id, e.g. `claude-opus-4-8` / `gpt-5.5-codex`. */
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