@autohq/cli 0.1.617 → 0.1.619
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 +13 -2
- package/dist/index.js +14 -3
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -37770,7 +37770,7 @@ Object.assign(lookup, {
|
|
|
37770
37770
|
// package.json
|
|
37771
37771
|
var package_default = {
|
|
37772
37772
|
name: "@autohq/cli",
|
|
37773
|
-
version: "0.1.
|
|
37773
|
+
version: "0.1.619",
|
|
37774
37774
|
license: "SEE LICENSE IN README.md",
|
|
37775
37775
|
publishConfig: {
|
|
37776
37776
|
access: "public"
|
|
@@ -39000,6 +39000,7 @@ var AuthScopeSchema = external_exports.enum([
|
|
|
39000
39000
|
"provider_grants:use",
|
|
39001
39001
|
"members:read",
|
|
39002
39002
|
"project_members:read",
|
|
39003
|
+
"waitlist_reporting:read",
|
|
39003
39004
|
"tasks:read",
|
|
39004
39005
|
"tasks:write",
|
|
39005
39006
|
"task_management:write",
|
|
@@ -42868,6 +42869,10 @@ var PROJECT_MEMBER_CAPABILITY_LEVELS = ["none", "read"];
|
|
|
42868
42869
|
var ProjectMemberCapabilityLevelSchema = external_exports.enum(
|
|
42869
42870
|
PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
42870
42871
|
);
|
|
42872
|
+
var WAITLIST_REPORTING_CAPABILITY_LEVELS = ["none", "read"];
|
|
42873
|
+
var WaitlistReportingCapabilityLevelSchema = external_exports.enum(
|
|
42874
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS
|
|
42875
|
+
);
|
|
42871
42876
|
var RUNTIME_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
42872
42877
|
var RuntimeCapabilityLevelSchema = external_exports.enum(RUNTIME_CAPABILITY_LEVELS);
|
|
42873
42878
|
var TASK_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
@@ -42913,6 +42918,7 @@ var ProjectMemberCapabilitySchema = attenuatedCapabilitySchema({
|
|
|
42913
42918
|
levelSchema: ProjectMemberCapabilityLevelSchema,
|
|
42914
42919
|
levels: PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
42915
42920
|
});
|
|
42921
|
+
var WaitlistReportingCapabilitySchema = external_exports.literal("read");
|
|
42916
42922
|
var RuntimeCapabilitySchema = attenuatedCapabilitySchema({
|
|
42917
42923
|
levelSchema: RuntimeCapabilityLevelSchema,
|
|
42918
42924
|
levels: RUNTIME_CAPABILITY_LEVELS
|
|
@@ -42936,6 +42942,9 @@ var WebhookCapabilitySchema = attenuatedCapabilitySchema({
|
|
|
42936
42942
|
var LocalAutoToolCapabilitiesSchema = external_exports.object({
|
|
42937
42943
|
billing: BillingCapabilitySchema.default("none"),
|
|
42938
42944
|
projectMembers: ProjectMemberCapabilitySchema.default("none"),
|
|
42945
|
+
// Optional preserves legacy persisted tool snapshots byte-for-byte while
|
|
42946
|
+
// making absence an explicit deny at every read site.
|
|
42947
|
+
waitlistReporting: WaitlistReportingCapabilitySchema.optional(),
|
|
42939
42948
|
runtimes: RuntimeCapabilitySchema.default("none"),
|
|
42940
42949
|
tasks: TaskCapabilitySchema.default("none"),
|
|
42941
42950
|
// Project-wide coordination is an explicit session-snapshot grant, not a
|
|
@@ -94487,6 +94496,7 @@ function renderCodexConfigToml(config2) {
|
|
|
94487
94496
|
const selectedProvider = codexProviderIdForModel(config2);
|
|
94488
94497
|
lines.push(`model = ${tomlString(config2.model?.id ?? CODEX_DEFAULT_MODEL)}`);
|
|
94489
94498
|
lines.push(`model_provider = ${tomlString(selectedProvider)}`);
|
|
94499
|
+
lines.push('web_search = "live"');
|
|
94490
94500
|
if (config2.reasoningEffort) {
|
|
94491
94501
|
lines.push(
|
|
94492
94502
|
`model_reasoning_effort = ${tomlString(config2.reasoningEffort)}`
|
|
@@ -94960,7 +94970,8 @@ var CODEX_ITEM_SETTLE_TIMEOUT_MS = 1e4;
|
|
|
94960
94970
|
var CODEX_TOOL_ITEM_TYPES = /* @__PURE__ */ new Set([
|
|
94961
94971
|
"commandExecution",
|
|
94962
94972
|
"fileChange",
|
|
94963
|
-
"mcpToolCall"
|
|
94973
|
+
"mcpToolCall",
|
|
94974
|
+
"webSearch"
|
|
94964
94975
|
]);
|
|
94965
94976
|
var CODEX_RETRYABLE_ERROR_PAIRING_WINDOW_MS = 1e3;
|
|
94966
94977
|
function startCodexAgentBridgeSession(input) {
|
package/dist/index.js
CHANGED
|
@@ -15486,6 +15486,7 @@ var init_auth = __esm({
|
|
|
15486
15486
|
"provider_grants:use",
|
|
15487
15487
|
"members:read",
|
|
15488
15488
|
"project_members:read",
|
|
15489
|
+
"waitlist_reporting:read",
|
|
15489
15490
|
"tasks:read",
|
|
15490
15491
|
"tasks:write",
|
|
15491
15492
|
"task_management:write",
|
|
@@ -19696,7 +19697,7 @@ function remoteMcpToolSchema(input) {
|
|
|
19696
19697
|
]).default({ kind: "none" })
|
|
19697
19698
|
});
|
|
19698
19699
|
}
|
|
19699
|
-
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, TASK_CAPABILITY_LEVELS, TaskCapabilityLevelSchema, TASK_MANAGEMENT_CAPABILITY_LEVELS, TaskManagementCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, RuntimeCapabilitySchema, TaskCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
19700
|
+
var REMOTE_MCP_TRANSPORTS, LOCAL_TOOL_IMPLEMENTATIONS, BILLING_CAPABILITY_LEVELS, BillingCapabilityLevelSchema, PROJECT_MEMBER_CAPABILITY_LEVELS, ProjectMemberCapabilityLevelSchema, WAITLIST_REPORTING_CAPABILITY_LEVELS, WaitlistReportingCapabilityLevelSchema, RUNTIME_CAPABILITY_LEVELS, RuntimeCapabilityLevelSchema, TASK_CAPABILITY_LEVELS, TaskCapabilityLevelSchema, TASK_MANAGEMENT_CAPABILITY_LEVELS, TaskManagementCapabilityLevelSchema, CONNECTION_CAPABILITY_LEVELS, ConnectionCapabilityLevelSchema, SECRET_CAPABILITY_LEVELS, SecretCapabilityLevelSchema, WEBHOOK_CAPABILITY_LEVELS, WebhookCapabilityLevelSchema, BillingCapabilitySchema, ProjectMemberCapabilitySchema, WaitlistReportingCapabilitySchema, RuntimeCapabilitySchema, TaskCapabilitySchema, ConnectionCapabilitySchema, SecretCapabilitySchema, WebhookCapabilitySchema, LocalAutoToolCapabilitiesSchema, SecretReferenceSchema, NoToolAuthSchema, OptionalConnectionField, McpOAuthToolAuthSchema, ConnectionToolAuthSchema, ConnectionsToolAuthSchema, ConnectionBackedToolSchema, ToolAliasSchema, RemoteMcpToolSchema, LocalAutoToolSchema, LocalPingToolSchema, LocalChatToolSchema, LocalToolSchema, GithubToolSchema, ToolSpecSchema, AgentToolConnectRequestSchema, AgentToolConnectResponseSchema, AgentToolConnectCompleteResponseSchema, InlineAgentToolSchema, AgentToolRefSchema, AgentToolsSchema;
|
|
19700
19701
|
var init_tools = __esm({
|
|
19701
19702
|
"../../packages/schemas/src/tools.ts"() {
|
|
19702
19703
|
"use strict";
|
|
@@ -19714,6 +19715,10 @@ var init_tools = __esm({
|
|
|
19714
19715
|
ProjectMemberCapabilityLevelSchema = external_exports.enum(
|
|
19715
19716
|
PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
19716
19717
|
);
|
|
19718
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS = ["none", "read"];
|
|
19719
|
+
WaitlistReportingCapabilityLevelSchema = external_exports.enum(
|
|
19720
|
+
WAITLIST_REPORTING_CAPABILITY_LEVELS
|
|
19721
|
+
);
|
|
19717
19722
|
RUNTIME_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
19718
19723
|
RuntimeCapabilityLevelSchema = external_exports.enum(RUNTIME_CAPABILITY_LEVELS);
|
|
19719
19724
|
TASK_CAPABILITY_LEVELS = ["none", "read", "write"];
|
|
@@ -19738,6 +19743,7 @@ var init_tools = __esm({
|
|
|
19738
19743
|
levelSchema: ProjectMemberCapabilityLevelSchema,
|
|
19739
19744
|
levels: PROJECT_MEMBER_CAPABILITY_LEVELS
|
|
19740
19745
|
});
|
|
19746
|
+
WaitlistReportingCapabilitySchema = external_exports.literal("read");
|
|
19741
19747
|
RuntimeCapabilitySchema = attenuatedCapabilitySchema({
|
|
19742
19748
|
levelSchema: RuntimeCapabilityLevelSchema,
|
|
19743
19749
|
levels: RUNTIME_CAPABILITY_LEVELS
|
|
@@ -19761,6 +19767,9 @@ var init_tools = __esm({
|
|
|
19761
19767
|
LocalAutoToolCapabilitiesSchema = external_exports.object({
|
|
19762
19768
|
billing: BillingCapabilitySchema.default("none"),
|
|
19763
19769
|
projectMembers: ProjectMemberCapabilitySchema.default("none"),
|
|
19770
|
+
// Optional preserves legacy persisted tool snapshots byte-for-byte while
|
|
19771
|
+
// making absence an explicit deny at every read site.
|
|
19772
|
+
waitlistReporting: WaitlistReportingCapabilitySchema.optional(),
|
|
19764
19773
|
runtimes: RuntimeCapabilitySchema.default("none"),
|
|
19765
19774
|
tasks: TaskCapabilitySchema.default("none"),
|
|
19766
19775
|
// Project-wide coordination is an explicit session-snapshot grant, not a
|
|
@@ -93750,7 +93759,7 @@ var init_package = __esm({
|
|
|
93750
93759
|
"package.json"() {
|
|
93751
93760
|
package_default = {
|
|
93752
93761
|
name: "@autohq/cli",
|
|
93753
|
-
version: "0.1.
|
|
93762
|
+
version: "0.1.619",
|
|
93754
93763
|
license: "SEE LICENSE IN README.md",
|
|
93755
93764
|
publishConfig: {
|
|
93756
93765
|
access: "public"
|
|
@@ -112859,6 +112868,7 @@ function renderCodexConfigToml(config2) {
|
|
|
112859
112868
|
const selectedProvider = codexProviderIdForModel(config2);
|
|
112860
112869
|
lines.push(`model = ${tomlString(config2.model?.id ?? CODEX_DEFAULT_MODEL)}`);
|
|
112861
112870
|
lines.push(`model_provider = ${tomlString(selectedProvider)}`);
|
|
112871
|
+
lines.push('web_search = "live"');
|
|
112862
112872
|
if (config2.reasoningEffort) {
|
|
112863
112873
|
lines.push(
|
|
112864
112874
|
`model_reasoning_effort = ${tomlString(config2.reasoningEffort)}`
|
|
@@ -113332,7 +113342,8 @@ var CODEX_ITEM_SETTLE_TIMEOUT_MS = 1e4;
|
|
|
113332
113342
|
var CODEX_TOOL_ITEM_TYPES = /* @__PURE__ */ new Set([
|
|
113333
113343
|
"commandExecution",
|
|
113334
113344
|
"fileChange",
|
|
113335
|
-
"mcpToolCall"
|
|
113345
|
+
"mcpToolCall",
|
|
113346
|
+
"webSearch"
|
|
113336
113347
|
]);
|
|
113337
113348
|
var CODEX_RETRYABLE_ERROR_PAIRING_WINDOW_MS = 1e3;
|
|
113338
113349
|
function startCodexAgentBridgeSession(input) {
|