@autohq/cli 0.1.386 → 0.1.388
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 +19 -4
- package/dist/index.js +28 -5
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23492,7 +23492,7 @@ Object.assign(lookup, {
|
|
|
23492
23492
|
// package.json
|
|
23493
23493
|
var package_default = {
|
|
23494
23494
|
name: "@autohq/cli",
|
|
23495
|
-
version: "0.1.
|
|
23495
|
+
version: "0.1.388",
|
|
23496
23496
|
license: "SEE LICENSE IN README.md",
|
|
23497
23497
|
publishConfig: {
|
|
23498
23498
|
access: "public"
|
|
@@ -26136,6 +26136,7 @@ var GITHUB_MCP_TOOL_NAMES = [
|
|
|
26136
26136
|
var GITHUB_MCP_PROXY_TOOL_NAMES = [
|
|
26137
26137
|
"actions_secret_list",
|
|
26138
26138
|
"actions_secret_write",
|
|
26139
|
+
"delete_issue_comment",
|
|
26139
26140
|
"enable_pull_request_auto_merge",
|
|
26140
26141
|
"upsert_issue_comment"
|
|
26141
26142
|
];
|
|
@@ -26179,7 +26180,7 @@ var githubMcpToolNameSet = new Set(
|
|
|
26179
26180
|
var githubMcpWriteToolSet = /* @__PURE__ */ new Set([
|
|
26180
26181
|
...GITHUB_MCP_WRITE_TOOLS,
|
|
26181
26182
|
...GITHUB_MCP_PROXY_TOOL_NAMES.filter(
|
|
26182
|
-
(name23) => name23 !== "actions_secret_list"
|
|
26183
|
+
(name23) => name23 !== "actions_secret_list" && name23 !== "delete_issue_comment"
|
|
26183
26184
|
)
|
|
26184
26185
|
]);
|
|
26185
26186
|
var githubMcpProxyToolSet = new Set(
|
|
@@ -29042,7 +29043,14 @@ var SetupOnboardingPullRequestCreateRequestSchema = external_exports.object({
|
|
|
29042
29043
|
githubConnection: external_exports.string().trim().min(1).optional(),
|
|
29043
29044
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
29044
29045
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
29045
|
-
baseBranch: GithubSyncProductionBranchSchema.optional()
|
|
29046
|
+
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
29047
|
+
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
29048
|
+
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
29049
|
+
// server-side when no Slack connection exists yet).
|
|
29050
|
+
roster: external_exports.object({
|
|
29051
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
29052
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
29053
|
+
}).optional()
|
|
29046
29054
|
});
|
|
29047
29055
|
var SetupOnboardingPullRequestSchema = external_exports.object({
|
|
29048
29056
|
number: external_exports.number().int().positive(),
|
|
@@ -29114,11 +29122,17 @@ var SetupOnboardingPullRequestSnapshotSchema = external_exports.discriminatedUni
|
|
|
29114
29122
|
})
|
|
29115
29123
|
]
|
|
29116
29124
|
);
|
|
29125
|
+
var SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
29126
|
+
scope: SetupOnboardingScopeSchema,
|
|
29127
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
29128
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
29129
|
+
});
|
|
29117
29130
|
var SetupOnboardingStateSchema = external_exports.object({
|
|
29118
29131
|
introSeen: external_exports.boolean(),
|
|
29119
29132
|
completed: external_exports.boolean(),
|
|
29120
29133
|
skipped: external_exports.boolean(),
|
|
29121
|
-
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable()
|
|
29134
|
+
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable(),
|
|
29135
|
+
roster: SetupOnboardingRosterSnapshotSchema.nullable().default(null)
|
|
29122
29136
|
});
|
|
29123
29137
|
|
|
29124
29138
|
// ../../packages/schemas/src/runtime-log.ts
|
|
@@ -29185,6 +29199,7 @@ var RuntimeRecordSchema = external_exports.object({
|
|
|
29185
29199
|
id: RuntimeIdSchema2,
|
|
29186
29200
|
sandboxId: external_exports.string().trim().min(1).nullable(),
|
|
29187
29201
|
logTailOffset: external_exports.number().int().nonnegative(),
|
|
29202
|
+
sandboxTimeoutRefreshedAt: external_exports.string().datetime().nullable(),
|
|
29188
29203
|
createdAt: external_exports.string().datetime(),
|
|
29189
29204
|
updatedAt: external_exports.string().datetime()
|
|
29190
29205
|
});
|
package/dist/index.js
CHANGED
|
@@ -17553,6 +17553,7 @@ var init_github_mcp_catalog = __esm({
|
|
|
17553
17553
|
GITHUB_MCP_PROXY_TOOL_NAMES = [
|
|
17554
17554
|
"actions_secret_list",
|
|
17555
17555
|
"actions_secret_write",
|
|
17556
|
+
"delete_issue_comment",
|
|
17556
17557
|
"enable_pull_request_auto_merge",
|
|
17557
17558
|
"upsert_issue_comment"
|
|
17558
17559
|
];
|
|
@@ -17596,7 +17597,7 @@ var init_github_mcp_catalog = __esm({
|
|
|
17596
17597
|
githubMcpWriteToolSet = /* @__PURE__ */ new Set([
|
|
17597
17598
|
...GITHUB_MCP_WRITE_TOOLS,
|
|
17598
17599
|
...GITHUB_MCP_PROXY_TOOL_NAMES.filter(
|
|
17599
|
-
(name) => name !== "actions_secret_list"
|
|
17600
|
+
(name) => name !== "actions_secret_list" && name !== "delete_issue_comment"
|
|
17600
17601
|
)
|
|
17601
17602
|
]);
|
|
17602
17603
|
githubMcpProxyToolSet = new Set(
|
|
@@ -20773,7 +20774,7 @@ var init_session_turns = __esm({
|
|
|
20773
20774
|
});
|
|
20774
20775
|
|
|
20775
20776
|
// ../../packages/schemas/src/setup.ts
|
|
20776
|
-
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingStateSchema;
|
|
20777
|
+
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingRosterSnapshotSchema, SetupOnboardingStateSchema;
|
|
20777
20778
|
var init_setup = __esm({
|
|
20778
20779
|
"../../packages/schemas/src/setup.ts"() {
|
|
20779
20780
|
"use strict";
|
|
@@ -20783,7 +20784,14 @@ var init_setup = __esm({
|
|
|
20783
20784
|
githubConnection: external_exports.string().trim().min(1).optional(),
|
|
20784
20785
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
20785
20786
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
20786
|
-
baseBranch: GithubSyncProductionBranchSchema.optional()
|
|
20787
|
+
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
20788
|
+
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
20789
|
+
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
20790
|
+
// server-side when no Slack connection exists yet).
|
|
20791
|
+
roster: external_exports.object({
|
|
20792
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
20793
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
20794
|
+
}).optional()
|
|
20787
20795
|
});
|
|
20788
20796
|
SetupOnboardingPullRequestSchema = external_exports.object({
|
|
20789
20797
|
number: external_exports.number().int().positive(),
|
|
@@ -20855,11 +20863,17 @@ var init_setup = __esm({
|
|
|
20855
20863
|
})
|
|
20856
20864
|
]
|
|
20857
20865
|
);
|
|
20866
|
+
SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
20867
|
+
scope: SetupOnboardingScopeSchema,
|
|
20868
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
20869
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
20870
|
+
});
|
|
20858
20871
|
SetupOnboardingStateSchema = external_exports.object({
|
|
20859
20872
|
introSeen: external_exports.boolean(),
|
|
20860
20873
|
completed: external_exports.boolean(),
|
|
20861
20874
|
skipped: external_exports.boolean(),
|
|
20862
|
-
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable()
|
|
20875
|
+
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable(),
|
|
20876
|
+
roster: SetupOnboardingRosterSnapshotSchema.nullable().default(null)
|
|
20863
20877
|
});
|
|
20864
20878
|
}
|
|
20865
20879
|
});
|
|
@@ -20949,6 +20963,7 @@ var init_runtimes = __esm({
|
|
|
20949
20963
|
id: RuntimeIdSchema,
|
|
20950
20964
|
sandboxId: external_exports.string().trim().min(1).nullable(),
|
|
20951
20965
|
logTailOffset: external_exports.number().int().nonnegative(),
|
|
20966
|
+
sandboxTimeoutRefreshedAt: external_exports.string().datetime().nullable(),
|
|
20952
20967
|
createdAt: external_exports.string().datetime(),
|
|
20953
20968
|
updatedAt: external_exports.string().datetime()
|
|
20954
20969
|
});
|
|
@@ -30999,6 +31014,13 @@ var init_subscription = __esm({
|
|
|
30999
31014
|
}
|
|
31000
31015
|
});
|
|
31001
31016
|
|
|
31017
|
+
// ../../packages/schemas/src/templates/catalog.ts
|
|
31018
|
+
var init_catalog = __esm({
|
|
31019
|
+
"../../packages/schemas/src/templates/catalog.ts"() {
|
|
31020
|
+
"use strict";
|
|
31021
|
+
}
|
|
31022
|
+
});
|
|
31023
|
+
|
|
31002
31024
|
// ../../packages/schemas/src/templates/index.ts
|
|
31003
31025
|
var init_templates = __esm({
|
|
31004
31026
|
"../../packages/schemas/src/templates/index.ts"() {
|
|
@@ -31009,6 +31031,7 @@ var init_templates = __esm({
|
|
|
31009
31031
|
init_registry();
|
|
31010
31032
|
init_hardcoded();
|
|
31011
31033
|
init_subscription();
|
|
31034
|
+
init_catalog();
|
|
31012
31035
|
}
|
|
31013
31036
|
});
|
|
31014
31037
|
|
|
@@ -33971,7 +33994,7 @@ var init_package = __esm({
|
|
|
33971
33994
|
"package.json"() {
|
|
33972
33995
|
package_default = {
|
|
33973
33996
|
name: "@autohq/cli",
|
|
33974
|
-
version: "0.1.
|
|
33997
|
+
version: "0.1.388",
|
|
33975
33998
|
license: "SEE LICENSE IN README.md",
|
|
33976
33999
|
publishConfig: {
|
|
33977
34000
|
access: "public"
|