@autohq/cli 0.1.678 → 0.1.680
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-bridge.js +5 -3
- package/dist/index.js +843 -160
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -33032,6 +33032,7 @@ var AgentBridgeCodexConfigBaseSchema = AgentBridgeHarnessBaseConfigSchema.extend
|
|
|
33032
33032
|
approvals: AgentBridgeApprovalsSchema.optional()
|
|
33033
33033
|
});
|
|
33034
33034
|
var AGENT_BRIDGE_CODEX_MAX_REASONING_MODEL_IDS = /* @__PURE__ */ new Set([
|
|
33035
|
+
"gpt-6-astra",
|
|
33035
33036
|
"gpt-5.6-sol",
|
|
33036
33037
|
"gpt-5.6-terra",
|
|
33037
33038
|
"gpt-5.6-luna"
|
|
@@ -33217,7 +33218,7 @@ function bootstrapAdditionalData(input) {
|
|
|
33217
33218
|
// package.json
|
|
33218
33219
|
var package_default = {
|
|
33219
33220
|
name: "@autohq/cli",
|
|
33220
|
-
version: "0.1.
|
|
33221
|
+
version: "0.1.680",
|
|
33221
33222
|
license: "SEE LICENSE IN README.md",
|
|
33222
33223
|
publishConfig: {
|
|
33223
33224
|
access: "public"
|
|
@@ -77214,7 +77215,7 @@ var AskUserServer = class {
|
|
|
77214
77215
|
const server = this.createMcpServer();
|
|
77215
77216
|
const transport = new StreamableHTTPServerTransport({
|
|
77216
77217
|
sessionIdGenerator: void 0,
|
|
77217
|
-
// Codex 0.
|
|
77218
|
+
// Codex 0.153.0 requires ordinary initialize/list responses as JSON. A
|
|
77218
77219
|
// parked tool call keeps SSE enabled so progress notifications can flow
|
|
77219
77220
|
// over the held response without extending the hard client deadline.
|
|
77220
77221
|
enableJsonResponse: body.method !== "tools/call"
|
|
@@ -82467,6 +82468,7 @@ var CODEX_HTTP_PROVIDER_ID = "openai-responses-http";
|
|
|
82467
82468
|
var CODEX_OPENROUTER_PROVIDER_ID = "openrouter-responses-http";
|
|
82468
82469
|
var CODEX_REASONING_SUMMARY = "detailed";
|
|
82469
82470
|
var CODEX_REASONING_SUMMARY_MODEL_IDS = /* @__PURE__ */ new Set([
|
|
82471
|
+
"gpt-6-astra",
|
|
82470
82472
|
CODEX_DEFAULT_MODEL,
|
|
82471
82473
|
"gpt-5.6-terra",
|
|
82472
82474
|
"gpt-5.6-luna",
|
|
@@ -82872,7 +82874,7 @@ function runStep(input, step, action) {
|
|
|
82872
82874
|
`agent_bridge_codex_edit_capability status=failed step=${step} error=${detail}`
|
|
82873
82875
|
);
|
|
82874
82876
|
throw new Error(
|
|
82875
|
-
`Codex edit capability unavailable at ${step}: ${detail}. Codex 0.
|
|
82877
|
+
`Codex edit capability unavailable at ${step}: ${detail}. Codex 0.153.0's Auto custom-provider path declares no apply_patch tool; without the codex-path alias, exec invocations the interceptor does not recognize fail with command-not-found (codex-runtime-tool-loss-diagnostics).`
|
|
82876
82878
|
);
|
|
82877
82879
|
}
|
|
82878
82880
|
}
|