@autohq/cli 0.1.428 → 0.1.429
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 +31 -17
- package/dist/index.js +32 -18
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -30825,7 +30825,7 @@ Object.assign(lookup, {
|
|
|
30825
30825
|
// package.json
|
|
30826
30826
|
var package_default = {
|
|
30827
30827
|
name: "@autohq/cli",
|
|
30828
|
-
version: "0.1.
|
|
30828
|
+
version: "0.1.429",
|
|
30829
30829
|
license: "SEE LICENSE IN README.md",
|
|
30830
30830
|
publishConfig: {
|
|
30831
30831
|
access: "public"
|
|
@@ -36203,6 +36203,7 @@ var OnboardingRunEvidenceSchema = JsonObjectSchema;
|
|
|
36203
36203
|
var ProjectOnboardingRunSnapshotSchema = external_exports.object({
|
|
36204
36204
|
id: external_exports.string().min(1),
|
|
36205
36205
|
teamId: OnboardingRunTeamIdSchema,
|
|
36206
|
+
commission: external_exports.string().max(2e3).nullable(),
|
|
36206
36207
|
phase: OnboardingRunPhaseSchema,
|
|
36207
36208
|
evidence: OnboardingRunEvidenceSchema,
|
|
36208
36209
|
/** Monotonic per-run write counter; also the phase_changed dedup clock. */
|
|
@@ -37224,6 +37225,10 @@ var SetupOnboardingPullRequestCreateRequestSchema = external_exports.object({
|
|
|
37224
37225
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
37225
37226
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
37226
37227
|
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
37228
|
+
team: external_exports.object({
|
|
37229
|
+
id: external_exports.string().trim().min(1),
|
|
37230
|
+
commission: external_exports.string().trim().min(1).max(2e3).optional()
|
|
37231
|
+
}).optional(),
|
|
37227
37232
|
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
37228
37233
|
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
37229
37234
|
// server-side when no Slack connection exists yet).
|
|
@@ -37243,6 +37248,10 @@ var SetupOnboardingPullRequestSchema = external_exports.object({
|
|
|
37243
37248
|
baseBranch: GithubSyncProductionBranchSchema,
|
|
37244
37249
|
headSha: external_exports.string().trim().min(1)
|
|
37245
37250
|
});
|
|
37251
|
+
var SetupOnboardingRunReferenceSchema = external_exports.object({
|
|
37252
|
+
id: external_exports.string().trim().min(1),
|
|
37253
|
+
teamId: external_exports.string().trim().min(1)
|
|
37254
|
+
});
|
|
37246
37255
|
var SetupOnboardingSyncSchema = external_exports.object({
|
|
37247
37256
|
branch: GithubSyncProductionBranchSchema,
|
|
37248
37257
|
headSha: external_exports.string().trim().min(1).optional(),
|
|
@@ -37251,11 +37260,13 @@ var SetupOnboardingSyncSchema = external_exports.object({
|
|
|
37251
37260
|
var SetupOnboardingPullRequestCreateResponseSchema = external_exports.discriminatedUnion("mode", [
|
|
37252
37261
|
external_exports.object({
|
|
37253
37262
|
mode: external_exports.literal("pull_request"),
|
|
37254
|
-
pullRequest: SetupOnboardingPullRequestSchema
|
|
37263
|
+
pullRequest: SetupOnboardingPullRequestSchema,
|
|
37264
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
37255
37265
|
}),
|
|
37256
37266
|
external_exports.object({
|
|
37257
37267
|
mode: external_exports.literal("sync"),
|
|
37258
|
-
sync: SetupOnboardingSyncSchema
|
|
37268
|
+
sync: SetupOnboardingSyncSchema,
|
|
37269
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
37259
37270
|
})
|
|
37260
37271
|
]);
|
|
37261
37272
|
var SetupOnboardingPullRequestStatusRequestSchema = external_exports.object({
|
|
@@ -37294,7 +37305,8 @@ var SetupOnboardingPullRequestSnapshotSchema = external_exports.discriminatedUni
|
|
|
37294
37305
|
githubConnection: external_exports.string().trim().min(1),
|
|
37295
37306
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
37296
37307
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
37297
|
-
pullRequest: SetupOnboardingPullRequestSchema
|
|
37308
|
+
pullRequest: SetupOnboardingPullRequestSchema,
|
|
37309
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
37298
37310
|
}),
|
|
37299
37311
|
external_exports.object({
|
|
37300
37312
|
mode: external_exports.literal("sync"),
|
|
@@ -37302,14 +37314,16 @@ var SetupOnboardingPullRequestSnapshotSchema = external_exports.discriminatedUni
|
|
|
37302
37314
|
githubConnection: external_exports.string().trim().min(1),
|
|
37303
37315
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
37304
37316
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
37305
|
-
sync: SetupOnboardingSyncSchema
|
|
37317
|
+
sync: SetupOnboardingSyncSchema,
|
|
37318
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
37306
37319
|
})
|
|
37307
37320
|
]
|
|
37308
37321
|
);
|
|
37309
37322
|
var SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
37310
37323
|
scope: SetupOnboardingScopeSchema,
|
|
37311
37324
|
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
37312
|
-
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
37325
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null),
|
|
37326
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
37313
37327
|
});
|
|
37314
37328
|
var SetupOnboardingStateSchema = external_exports.object({
|
|
37315
37329
|
introSeen: external_exports.boolean(),
|
|
@@ -40169,11 +40183,8 @@ triggers:
|
|
|
40169
40183
|
# chief-of-staff FOH contract (@auto/agent-fleet) plus the onboarding
|
|
40170
40184
|
# concierge's agent-authoring role, which the Patron absorbs for this preset.
|
|
40171
40185
|
# Source plan: docs/plans/2026-07-12-front-of-house-team-rollout-plan.md.
|
|
40172
|
-
# Commission intake: the blank-text-box brief threads into the install as
|
|
40173
|
-
# template variable
|
|
40174
|
-
# then the commission arrives in the Patron's first conversation, and the
|
|
40175
|
-
# doctrine below reads it from the intake surface plus the onboarding run
|
|
40176
|
-
# record rather than a variable.
|
|
40186
|
+
# Commission intake: the blank-text-box brief threads into the install as the
|
|
40187
|
+
# \`commission\` template variable and is repeated in the one-shot kickoff.
|
|
40177
40188
|
name: patron
|
|
40178
40189
|
model:
|
|
40179
40190
|
provider: anthropic
|
|
@@ -40201,11 +40212,10 @@ systemPrompt: |
|
|
|
40201
40212
|
blank-canvas users you ARE the onboarding concierge, in character from the
|
|
40202
40213
|
first hello \u2014 there is no separate onboarding agent.
|
|
40203
40214
|
|
|
40204
|
-
The commission is the user's own words:
|
|
40205
|
-
|
|
40206
|
-
|
|
40207
|
-
|
|
40208
|
-
blank canvas, never as a form.
|
|
40215
|
+
The commission is the user's own words: {{ $commission }}. The one-shot
|
|
40216
|
+
kickoff repeats it and names the onboarding run record you must resume. If
|
|
40217
|
+
an older standalone install leaves the commission blank, your first move is
|
|
40218
|
+
to ask for one \u2014 warmly, as a blank canvas, never as a form.
|
|
40209
40219
|
|
|
40210
40220
|
You never impose your own vision and you never write product code. Your
|
|
40211
40221
|
taste is real \u2014 say plainly when the composition is unbalanced, when a
|
|
@@ -55779,7 +55789,7 @@ var ROSTER_CATALOG_ENTRIES = [
|
|
|
55779
55789
|
],
|
|
55780
55790
|
requires: ["github"],
|
|
55781
55791
|
optionalConnections: ["slack"],
|
|
55782
|
-
variables: ["repoFullName", "githubConnection"],
|
|
55792
|
+
variables: ["repoFullName", "githubConnection", "commission"],
|
|
55783
55793
|
trustNotes: [
|
|
55784
55794
|
"Authors agent resources, but every hire arrives as a setup PR the user must merge.",
|
|
55785
55795
|
"Can merge only after a user delegates the merge and the readiness bar passes."
|
|
@@ -55840,6 +55850,7 @@ var TEAM_TEMPLATES = [
|
|
|
55840
55850
|
pitch: "You've got a big idea and you want it to happen quickly and efficiently. Your software factory boots up and gets to work, anticipating your next move and improving itself as it goes.",
|
|
55841
55851
|
backdrop: "accelerator.mp4",
|
|
55842
55852
|
frontOfHouse: "chief-of-staff",
|
|
55853
|
+
onboardingDocument: "docs/plans/2026-07-12-front-of-house-team-rollout-plan.md#5-onboarding-integration-who-hosts-what-when",
|
|
55843
55854
|
members: [
|
|
55844
55855
|
{
|
|
55845
55856
|
id: "chief-of-staff",
|
|
@@ -55919,6 +55930,7 @@ var TEAM_TEMPLATES = [
|
|
|
55919
55930
|
pitch: "Your agent swarm got ahead of itself. The machine works, but nobody knows how and every new feature digs the hole deeper. Send in the squad to recover a workable codebase and shake out the haunts.",
|
|
55920
55931
|
backdrop: "slopbusters.mp4",
|
|
55921
55932
|
frontOfHouse: "renovator",
|
|
55933
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/slopbusters-onboarding.md",
|
|
55922
55934
|
members: [
|
|
55923
55935
|
{
|
|
55924
55936
|
id: "renovator",
|
|
@@ -55975,6 +55987,7 @@ var TEAM_TEMPLATES = [
|
|
|
55975
55987
|
pitch: "Every emergent threat gets an owner, a status, and a follow-up. The room proves itself on a synthetic drill before anything real is burning, then keeps watch around the clock.",
|
|
55976
55988
|
backdrop: "war-room.mp4",
|
|
55977
55989
|
frontOfHouse: "admiral",
|
|
55990
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/war-room-onboarding.md",
|
|
55978
55991
|
members: [
|
|
55979
55992
|
{
|
|
55980
55993
|
id: "admiral",
|
|
@@ -56031,6 +56044,7 @@ var TEAM_TEMPLATES = [
|
|
|
56031
56044
|
pitch: "Describe the automations you want in plain language. The Patron turns that commission into the smallest useful team and drives it to your definition of a magic moment.",
|
|
56032
56045
|
backdrop: "blank-canvas.mp4",
|
|
56033
56046
|
frontOfHouse: "patron",
|
|
56047
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/blank-canvas-onboarding.md",
|
|
56034
56048
|
members: [
|
|
56035
56049
|
{
|
|
56036
56050
|
id: "patron",
|
package/dist/index.js
CHANGED
|
@@ -20393,6 +20393,7 @@ var init_onboarding_runs = __esm({
|
|
|
20393
20393
|
ProjectOnboardingRunSnapshotSchema = external_exports.object({
|
|
20394
20394
|
id: external_exports.string().min(1),
|
|
20395
20395
|
teamId: OnboardingRunTeamIdSchema,
|
|
20396
|
+
commission: external_exports.string().max(2e3).nullable(),
|
|
20396
20397
|
phase: OnboardingRunPhaseSchema,
|
|
20397
20398
|
evidence: OnboardingRunEvidenceSchema,
|
|
20398
20399
|
/** Monotonic per-run write counter; also the phase_changed dedup clock. */
|
|
@@ -21528,7 +21529,7 @@ var init_session_turns = __esm({
|
|
|
21528
21529
|
});
|
|
21529
21530
|
|
|
21530
21531
|
// ../../packages/schemas/src/setup.ts
|
|
21531
|
-
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingRosterSnapshotSchema, SetupOnboardingStateSchema;
|
|
21532
|
+
var SetupOnboardingPullRequestCreateRequestSchema, SetupOnboardingPullRequestSchema, SetupOnboardingRunReferenceSchema, SetupOnboardingSyncSchema, SetupOnboardingPullRequestCreateResponseSchema, SetupOnboardingPullRequestStatusRequestSchema, SetupOnboardingPullRequestStatusResponseSchema, SetupOnboardingScopeSchema, SetupOnboardingPullRequestSnapshotSchema, SetupOnboardingRosterSnapshotSchema, SetupOnboardingStateSchema;
|
|
21532
21533
|
var init_setup = __esm({
|
|
21533
21534
|
"../../packages/schemas/src/setup.ts"() {
|
|
21534
21535
|
"use strict";
|
|
@@ -21539,6 +21540,10 @@ var init_setup = __esm({
|
|
|
21539
21540
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
21540
21541
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
21541
21542
|
baseBranch: GithubSyncProductionBranchSchema.optional(),
|
|
21543
|
+
team: external_exports.object({
|
|
21544
|
+
id: external_exports.string().trim().min(1),
|
|
21545
|
+
commission: external_exports.string().trim().min(1).max(2e3).optional()
|
|
21546
|
+
}).optional(),
|
|
21542
21547
|
// The picked roster from the assemble-your-team step: catalog agent ids
|
|
21543
21548
|
// whose importing files join the PR (Slack-requiring picks are deferred
|
|
21544
21549
|
// server-side when no Slack connection exists yet).
|
|
@@ -21558,6 +21563,10 @@ var init_setup = __esm({
|
|
|
21558
21563
|
baseBranch: GithubSyncProductionBranchSchema,
|
|
21559
21564
|
headSha: external_exports.string().trim().min(1)
|
|
21560
21565
|
});
|
|
21566
|
+
SetupOnboardingRunReferenceSchema = external_exports.object({
|
|
21567
|
+
id: external_exports.string().trim().min(1),
|
|
21568
|
+
teamId: external_exports.string().trim().min(1)
|
|
21569
|
+
});
|
|
21561
21570
|
SetupOnboardingSyncSchema = external_exports.object({
|
|
21562
21571
|
branch: GithubSyncProductionBranchSchema,
|
|
21563
21572
|
headSha: external_exports.string().trim().min(1).optional(),
|
|
@@ -21566,11 +21575,13 @@ var init_setup = __esm({
|
|
|
21566
21575
|
SetupOnboardingPullRequestCreateResponseSchema = external_exports.discriminatedUnion("mode", [
|
|
21567
21576
|
external_exports.object({
|
|
21568
21577
|
mode: external_exports.literal("pull_request"),
|
|
21569
|
-
pullRequest: SetupOnboardingPullRequestSchema
|
|
21578
|
+
pullRequest: SetupOnboardingPullRequestSchema,
|
|
21579
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
21570
21580
|
}),
|
|
21571
21581
|
external_exports.object({
|
|
21572
21582
|
mode: external_exports.literal("sync"),
|
|
21573
|
-
sync: SetupOnboardingSyncSchema
|
|
21583
|
+
sync: SetupOnboardingSyncSchema,
|
|
21584
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
21574
21585
|
})
|
|
21575
21586
|
]);
|
|
21576
21587
|
SetupOnboardingPullRequestStatusRequestSchema = external_exports.object({
|
|
@@ -21609,7 +21620,8 @@ var init_setup = __esm({
|
|
|
21609
21620
|
githubConnection: external_exports.string().trim().min(1),
|
|
21610
21621
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
21611
21622
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
21612
|
-
pullRequest: SetupOnboardingPullRequestSchema
|
|
21623
|
+
pullRequest: SetupOnboardingPullRequestSchema,
|
|
21624
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
21613
21625
|
}),
|
|
21614
21626
|
external_exports.object({
|
|
21615
21627
|
mode: external_exports.literal("sync"),
|
|
@@ -21617,14 +21629,16 @@ var init_setup = __esm({
|
|
|
21617
21629
|
githubConnection: external_exports.string().trim().min(1),
|
|
21618
21630
|
slackConnection: external_exports.string().trim().min(1).optional(),
|
|
21619
21631
|
repo: GithubSyncRepositoryFullNameSchema,
|
|
21620
|
-
sync: SetupOnboardingSyncSchema
|
|
21632
|
+
sync: SetupOnboardingSyncSchema,
|
|
21633
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
21621
21634
|
})
|
|
21622
21635
|
]
|
|
21623
21636
|
);
|
|
21624
21637
|
SetupOnboardingRosterSnapshotSchema = external_exports.object({
|
|
21625
21638
|
scope: SetupOnboardingScopeSchema,
|
|
21626
21639
|
agents: external_exports.array(external_exports.string().trim().min(1)),
|
|
21627
|
-
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null)
|
|
21640
|
+
customBrief: external_exports.string().trim().min(1).max(500).nullable().default(null),
|
|
21641
|
+
onboardingRun: SetupOnboardingRunReferenceSchema.optional()
|
|
21628
21642
|
});
|
|
21629
21643
|
SetupOnboardingStateSchema = external_exports.object({
|
|
21630
21644
|
introSeen: external_exports.boolean(),
|
|
@@ -24563,11 +24577,8 @@ triggers:
|
|
|
24563
24577
|
# chief-of-staff FOH contract (@auto/agent-fleet) plus the onboarding
|
|
24564
24578
|
# concierge's agent-authoring role, which the Patron absorbs for this preset.
|
|
24565
24579
|
# Source plan: docs/plans/2026-07-12-front-of-house-team-rollout-plan.md.
|
|
24566
|
-
# Commission intake: the blank-text-box brief threads into the install as
|
|
24567
|
-
# template variable
|
|
24568
|
-
# then the commission arrives in the Patron's first conversation, and the
|
|
24569
|
-
# doctrine below reads it from the intake surface plus the onboarding run
|
|
24570
|
-
# record rather than a variable.
|
|
24580
|
+
# Commission intake: the blank-text-box brief threads into the install as the
|
|
24581
|
+
# \`commission\` template variable and is repeated in the one-shot kickoff.
|
|
24571
24582
|
name: patron
|
|
24572
24583
|
model:
|
|
24573
24584
|
provider: anthropic
|
|
@@ -24595,11 +24606,10 @@ systemPrompt: |
|
|
|
24595
24606
|
blank-canvas users you ARE the onboarding concierge, in character from the
|
|
24596
24607
|
first hello \u2014 there is no separate onboarding agent.
|
|
24597
24608
|
|
|
24598
|
-
The commission is the user's own words:
|
|
24599
|
-
|
|
24600
|
-
|
|
24601
|
-
|
|
24602
|
-
blank canvas, never as a form.
|
|
24609
|
+
The commission is the user's own words: {{ $commission }}. The one-shot
|
|
24610
|
+
kickoff repeats it and names the onboarding run record you must resume. If
|
|
24611
|
+
an older standalone install leaves the commission blank, your first move is
|
|
24612
|
+
to ask for one \u2014 warmly, as a blank canvas, never as a form.
|
|
24603
24613
|
|
|
24604
24614
|
You never impose your own vision and you never write product code. Your
|
|
24605
24615
|
taste is real \u2014 say plainly when the composition is unbalanced, when a
|
|
@@ -40228,7 +40238,7 @@ var init_catalog = __esm({
|
|
|
40228
40238
|
],
|
|
40229
40239
|
requires: ["github"],
|
|
40230
40240
|
optionalConnections: ["slack"],
|
|
40231
|
-
variables: ["repoFullName", "githubConnection"],
|
|
40241
|
+
variables: ["repoFullName", "githubConnection", "commission"],
|
|
40232
40242
|
trustNotes: [
|
|
40233
40243
|
"Authors agent resources, but every hire arrives as a setup PR the user must merge.",
|
|
40234
40244
|
"Can merge only after a user delegates the merge and the readiness bar passes."
|
|
@@ -40257,6 +40267,7 @@ var init_catalog = __esm({
|
|
|
40257
40267
|
pitch: "You've got a big idea and you want it to happen quickly and efficiently. Your software factory boots up and gets to work, anticipating your next move and improving itself as it goes.",
|
|
40258
40268
|
backdrop: "accelerator.mp4",
|
|
40259
40269
|
frontOfHouse: "chief-of-staff",
|
|
40270
|
+
onboardingDocument: "docs/plans/2026-07-12-front-of-house-team-rollout-plan.md#5-onboarding-integration-who-hosts-what-when",
|
|
40260
40271
|
members: [
|
|
40261
40272
|
{
|
|
40262
40273
|
id: "chief-of-staff",
|
|
@@ -40336,6 +40347,7 @@ var init_catalog = __esm({
|
|
|
40336
40347
|
pitch: "Your agent swarm got ahead of itself. The machine works, but nobody knows how and every new feature digs the hole deeper. Send in the squad to recover a workable codebase and shake out the haunts.",
|
|
40337
40348
|
backdrop: "slopbusters.mp4",
|
|
40338
40349
|
frontOfHouse: "renovator",
|
|
40350
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/slopbusters-onboarding.md",
|
|
40339
40351
|
members: [
|
|
40340
40352
|
{
|
|
40341
40353
|
id: "renovator",
|
|
@@ -40392,6 +40404,7 @@ var init_catalog = __esm({
|
|
|
40392
40404
|
pitch: "Every emergent threat gets an owner, a status, and a follow-up. The room proves itself on a synthetic drill before anything real is burning, then keeps watch around the clock.",
|
|
40393
40405
|
backdrop: "war-room.mp4",
|
|
40394
40406
|
frontOfHouse: "admiral",
|
|
40407
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/war-room-onboarding.md",
|
|
40395
40408
|
members: [
|
|
40396
40409
|
{
|
|
40397
40410
|
id: "admiral",
|
|
@@ -40448,6 +40461,7 @@ var init_catalog = __esm({
|
|
|
40448
40461
|
pitch: "Describe the automations you want in plain language. The Patron turns that commission into the smallest useful team and drives it to your definition of a magic moment.",
|
|
40449
40462
|
backdrop: "blank-canvas.mp4",
|
|
40450
40463
|
frontOfHouse: "patron",
|
|
40464
|
+
onboardingDocument: "docs/plans/drafts/front-of-house/onboarding/blank-canvas-onboarding.md",
|
|
40451
40465
|
members: [
|
|
40452
40466
|
{
|
|
40453
40467
|
id: "patron",
|
|
@@ -43442,7 +43456,7 @@ var init_package = __esm({
|
|
|
43442
43456
|
"package.json"() {
|
|
43443
43457
|
package_default = {
|
|
43444
43458
|
name: "@autohq/cli",
|
|
43445
|
-
version: "0.1.
|
|
43459
|
+
version: "0.1.429",
|
|
43446
43460
|
license: "SEE LICENSE IN README.md",
|
|
43447
43461
|
publishConfig: {
|
|
43448
43462
|
access: "public"
|