@autohq/cli 0.1.386 → 0.1.387
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 +16 -3
- package/dist/index.js +25 -4
- 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.387",
|
|
23496
23496
|
license: "SEE LICENSE IN README.md",
|
|
23497
23497
|
publishConfig: {
|
|
23498
23498
|
access: "public"
|
|
@@ -29042,7 +29042,14 @@ var SetupOnboardingPullRequestCreateRequestSchema = external_exports.object({
|
|
|
29042
29042
|
githubConnection: external_exports.string().trim().min(1).optional(),
|
|
29043
29043
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
29044
29044
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
29045
|
-
baseBranch: GithubSyncProductionBranchSchema.optional()
|
|
29045
|
+
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
29046
|
+
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
29047
|
+
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
29048
|
+
// server-side when no Slack connection exists yet).
|
|
29049
|
+
roster: external_exports.object({
|
|
29050
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
29051
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
29052
|
+
}).optional()
|
|
29046
29053
|
});
|
|
29047
29054
|
var SetupOnboardingPullRequestSchema = external_exports.object({
|
|
29048
29055
|
number: external_exports.number().int().positive(),
|
|
@@ -29114,11 +29121,17 @@ var SetupOnboardingPullRequestSnapshotSchema = external_exports.discriminatedUni
|
|
|
29114
29121
|
})
|
|
29115
29122
|
]
|
|
29116
29123
|
);
|
|
29124
|
+
var SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
29125
|
+
scope: SetupOnboardingScopeSchema,
|
|
29126
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
29127
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
29128
|
+
});
|
|
29117
29129
|
var SetupOnboardingStateSchema = external_exports.object({
|
|
29118
29130
|
introSeen: external_exports.boolean(),
|
|
29119
29131
|
completed: external_exports.boolean(),
|
|
29120
29132
|
skipped: external_exports.boolean(),
|
|
29121
|
-
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable()
|
|
29133
|
+
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable(),
|
|
29134
|
+
roster: SetupOnboardingRosterSnapshotSchema.nullable().default(null)
|
|
29122
29135
|
});
|
|
29123
29136
|
|
|
29124
29137
|
// ../../packages/schemas/src/runtime-log.ts
|
package/dist/index.js
CHANGED
|
@@ -20773,7 +20773,7 @@ var init_session_turns = __esm({
|
|
|
20773
20773
|
});
|
|
20774
20774
|
|
|
20775
20775
|
// ../../packages/schemas/src/setup.ts
|
|
20776
|
-
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingStateSchema;
|
|
20776
|
+
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingRosterSnapshotSchema, SetupOnboardingStateSchema;
|
|
20777
20777
|
var init_setup = __esm({
|
|
20778
20778
|
"../../packages/schemas/src/setup.ts"() {
|
|
20779
20779
|
"use strict";
|
|
@@ -20783,7 +20783,14 @@ var init_setup = __esm({
|
|
|
20783
20783
|
githubConnection: external_exports.string().trim().min(1).optional(),
|
|
20784
20784
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
20785
20785
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
20786
|
-
baseBranch: GithubSyncProductionBranchSchema.optional()
|
|
20786
|
+
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
20787
|
+
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
20788
|
+
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
20789
|
+
// server-side when no Slack connection exists yet).
|
|
20790
|
+
roster: external_exports.object({
|
|
20791
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
20792
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
20793
|
+
}).optional()
|
|
20787
20794
|
});
|
|
20788
20795
|
SetupOnboardingPullRequestSchema = external_exports.object({
|
|
20789
20796
|
number: external_exports.number().int().positive(),
|
|
@@ -20855,11 +20862,17 @@ var init_setup = __esm({
|
|
|
20855
20862
|
})
|
|
20856
20863
|
]
|
|
20857
20864
|
);
|
|
20865
|
+
SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
20866
|
+
scope: SetupOnboardingScopeSchema,
|
|
20867
|
+
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
20868
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
20869
|
+
});
|
|
20858
20870
|
SetupOnboardingStateSchema = external_exports.object({
|
|
20859
20871
|
introSeen: external_exports.boolean(),
|
|
20860
20872
|
completed: external_exports.boolean(),
|
|
20861
20873
|
skipped: external_exports.boolean(),
|
|
20862
|
-
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable()
|
|
20874
|
+
pullRequest: SetupOnboardingPullRequestSnapshotSchema.nullable(),
|
|
20875
|
+
roster: SetupOnboardingRosterSnapshotSchema.nullable().default(null)
|
|
20863
20876
|
});
|
|
20864
20877
|
}
|
|
20865
20878
|
});
|
|
@@ -30999,6 +31012,13 @@ var init_subscription = __esm({
|
|
|
30999
31012
|
}
|
|
31000
31013
|
});
|
|
31001
31014
|
|
|
31015
|
+
// ../../packages/schemas/src/templates/catalog.ts
|
|
31016
|
+
var init_catalog = __esm({
|
|
31017
|
+
"../../packages/schemas/src/templates/catalog.ts"() {
|
|
31018
|
+
"use strict";
|
|
31019
|
+
}
|
|
31020
|
+
});
|
|
31021
|
+
|
|
31002
31022
|
// ../../packages/schemas/src/templates/index.ts
|
|
31003
31023
|
var init_templates = __esm({
|
|
31004
31024
|
"../../packages/schemas/src/templates/index.ts"() {
|
|
@@ -31009,6 +31029,7 @@ var init_templates = __esm({
|
|
|
31009
31029
|
init_registry();
|
|
31010
31030
|
init_hardcoded();
|
|
31011
31031
|
init_subscription();
|
|
31032
|
+
init_catalog();
|
|
31012
31033
|
}
|
|
31013
31034
|
});
|
|
31014
31035
|
|
|
@@ -33971,7 +33992,7 @@ var init_package = __esm({
|
|
|
33971
33992
|
"package.json"() {
|
|
33972
33993
|
package_default = {
|
|
33973
33994
|
name: "@autohq/cli",
|
|
33974
|
-
version: "0.1.
|
|
33995
|
+
version: "0.1.387",
|
|
33975
33996
|
license: "SEE LICENSE IN README.md",
|
|
33976
33997
|
publishConfig: {
|
|
33977
33998
|
access: "public"
|