@autohq/cli 0.1.579 → 0.1.581

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.
@@ -30880,7 +30880,7 @@ Object.assign(lookup, {
30880
30880
  // package.json
30881
30881
  var package_default = {
30882
30882
  name: "@autohq/cli",
30883
- version: "0.1.579",
30883
+ version: "0.1.581",
30884
30884
  license: "SEE LICENSE IN README.md",
30885
30885
  publishConfig: {
30886
30886
  access: "public"
@@ -40052,6 +40052,241 @@ var ProjectTemplateSubscriptionSchema = external_exports.object({
40052
40052
 
40053
40053
  // ../../packages/schemas/src/templates/catalog.ts
40054
40054
  var import_yaml2 = __toESM(require_dist(), 1);
40055
+ function onboardingProgressManifest(magicMomentStep) {
40056
+ return {
40057
+ steps: ["Set up environment", magicMomentStep, "Enter payment info"]
40058
+ };
40059
+ }
40060
+ var SELF_IMPROVEMENT = {
40061
+ id: "self-improvement",
40062
+ roleLine: "Examines recent sessions and feedback from you and suggests changes to improve the fleet."
40063
+ };
40064
+ var TEAM_TEMPLATES = [
40065
+ {
40066
+ id: "accelerator",
40067
+ name: "The Accelerator",
40068
+ template: "@auto/agent-fleet",
40069
+ tagline: "You set the goal. It shepherds every PR through review\u2014and gets better over time.",
40070
+ pitch: "Hand this team a goal and step out of the operational loop. It breaks down the work, dispatches the right agents, opens the PRs, shepherds every change through CI and review, responds to feedback, resolves conflicts, and keeps the whole queue moving until a decision genuinely needs you. Along the way, it reviews its own performance and proposes improvements so your software factory gets faster, sharper, and more efficient over time.",
40071
+ backdrop: "accelerator.mp4",
40072
+ frontOfHouse: "chief-of-staff",
40073
+ frontOfHouseOnboardingSubpath: "agents/chief-of-staff-onboarding.yaml",
40074
+ onboardingProgress: onboardingProgressManifest(
40075
+ "Ship first set of changes from factory"
40076
+ ),
40077
+ members: [
40078
+ {
40079
+ id: "chief-of-staff",
40080
+ roleLine: "Front of house. Turns a task list into owned, review-ready pull requests."
40081
+ },
40082
+ {
40083
+ id: "staff-engineer",
40084
+ roleLine: "Owns each task end to end through CI and review."
40085
+ },
40086
+ {
40087
+ id: "senior-engineer",
40088
+ roleLine: "Handles complex scoped implementation work."
40089
+ },
40090
+ {
40091
+ id: "junior-engineer",
40092
+ roleLine: "Takes mechanical and batch coding work."
40093
+ },
40094
+ {
40095
+ id: "designer",
40096
+ roleLine: "Iterates on live UI and graduates it to a production PR."
40097
+ },
40098
+ {
40099
+ id: "pr-review",
40100
+ roleLine: "Reviews every pull request against the current head."
40101
+ },
40102
+ {
40103
+ id: "intern",
40104
+ roleLine: "Handles quick questions, small fixes, and grunt work."
40105
+ },
40106
+ {
40107
+ id: "ship-digest",
40108
+ roleLine: "Summarizes what shipped and what needs attention."
40109
+ },
40110
+ {
40111
+ id: "workforce-optimization-consultant",
40112
+ roleLine: "Produces weekly evidence-based team scorecards."
40113
+ },
40114
+ SELF_IMPROVEMENT
40115
+ ],
40116
+ availability: "available",
40117
+ legacyKits: [
40118
+ {
40119
+ id: "startup",
40120
+ name: "Startup Kit",
40121
+ agents: [
40122
+ "chief-of-staff",
40123
+ "senior-engineer",
40124
+ "junior-engineer",
40125
+ "pr-review",
40126
+ "issue-triage",
40127
+ "ship-digest",
40128
+ "chatterbox"
40129
+ ]
40130
+ },
40131
+ {
40132
+ id: "engineering",
40133
+ name: "Engineering Kit",
40134
+ agents: [
40135
+ "senior-engineer",
40136
+ "junior-engineer",
40137
+ "designer",
40138
+ "introspector"
40139
+ ]
40140
+ },
40141
+ {
40142
+ id: "growth",
40143
+ name: "Growth Kit",
40144
+ agents: ["lead-researcher", "research-coordinator", "ship-digest"]
40145
+ }
40146
+ ]
40147
+ },
40148
+ {
40149
+ id: "slopbusters",
40150
+ name: "The Slopbusters",
40151
+ template: "@auto/slopbusters",
40152
+ tagline: "Continuously simplifies and documents your codebase as it changes.",
40153
+ pitch: "The Slopbusters are a standing maintenance crew, not a cleanup command. They regularly inspect the codebase for dead code, flaky tests, stale branches, expired TODOs, risky patterns, structural clutter, and missing context. They investigate unusual behavior before touching it, turn what they find into small, reviewable PRs, and shepherd each change through CI and review. As the code evolves, they keep simplifying tangled areas and documenting confusing behavior and architectural decisions, so knowledge does not disappear into people's heads or old threads. The result is a codebase that stays smaller, clearer, and easier for both people and agents to understand, change, and trust.",
40154
+ backdrop: "slopbusters.mp4",
40155
+ frontOfHouse: "renovator",
40156
+ frontOfHouseOnboardingSubpath: "agents/renovator-onboarding.yaml",
40157
+ onboardingProgress: onboardingProgressManifest(
40158
+ "Review your first automated cleanup PR"
40159
+ ),
40160
+ members: [
40161
+ {
40162
+ id: "renovator",
40163
+ roleLine: "Front of house. Walks the property, writes the punch list, and schedules the crew."
40164
+ },
40165
+ {
40166
+ id: "reaper",
40167
+ roleLine: "Warns on stale pull requests, stuck sessions, and zombie branches before cleanup."
40168
+ },
40169
+ {
40170
+ id: "butcher",
40171
+ roleLine: "Removes dead code in small, reviewable negative diffs."
40172
+ },
40173
+ {
40174
+ id: "janitor",
40175
+ roleLine: "Sweeps merged branches, dead labels, expired TODOs, and artifact bloat."
40176
+ },
40177
+ {
40178
+ id: "exorcist",
40179
+ roleLine: "Hunts flaky tests and explains each quarantine or repair."
40180
+ },
40181
+ {
40182
+ id: "inspector",
40183
+ roleLine: "Root-causes unusual behavior before anyone changes it."
40184
+ },
40185
+ {
40186
+ id: "senior-engineer",
40187
+ roleLine: "Executes the report's structural refactors."
40188
+ },
40189
+ {
40190
+ id: "junior-engineer",
40191
+ roleLine: "Handles mechanical deletions and renames."
40192
+ },
40193
+ {
40194
+ id: "pr-review",
40195
+ roleLine: "Checks every cleanup so the cure is not worse than the disease."
40196
+ },
40197
+ SELF_IMPROVEMENT
40198
+ ],
40199
+ availability: "available",
40200
+ legacyKits: [
40201
+ {
40202
+ id: "code-quality",
40203
+ name: "Code Quality Kit",
40204
+ agents: ["pr-review", "handoff", "self-improvement"]
40205
+ }
40206
+ ]
40207
+ },
40208
+ {
40209
+ id: "war-room",
40210
+ name: "The War Room",
40211
+ template: "@auto/war-room",
40212
+ tagline: "Triages incidents, investigates causes, and drives fixes through resolution.",
40213
+ pitch: "This team triages alerts, investigates causes, dispatches fixes, and follows every incident through resolution.",
40214
+ backdrop: "war-room.mp4",
40215
+ frontOfHouse: "admiral",
40216
+ frontOfHouseOnboardingSubpath: "agents/admiral-onboarding.yaml",
40217
+ onboardingProgress: onboardingProgressManifest(
40218
+ "Run your first incident drill"
40219
+ ),
40220
+ members: [
40221
+ {
40222
+ id: "admiral",
40223
+ roleLine: "Front of house. Owns the threat board, dispatches the fleet, and briefs you."
40224
+ },
40225
+ {
40226
+ id: "incident-response",
40227
+ roleLine: "Correlates incidents with evidence and recent changes."
40228
+ },
40229
+ {
40230
+ id: "watchdog",
40231
+ roleLine: "Checks connected signals on a standing heartbeat."
40232
+ },
40233
+ {
40234
+ id: "issue-triage",
40235
+ roleLine: "Classifies and routes every inbound report."
40236
+ },
40237
+ {
40238
+ id: "inspector",
40239
+ roleLine: "Builds the reproduction, bisect, and case file."
40240
+ },
40241
+ {
40242
+ id: "staff-engineer",
40243
+ roleLine: "Implements scoped fixes and owns their pull requests."
40244
+ },
40245
+ {
40246
+ id: "bouncer",
40247
+ roleLine: "Applies a dedicated security lens to every pull request."
40248
+ },
40249
+ {
40250
+ id: "pentester",
40251
+ roleLine: "Runs read-only red-team campaigns and records findings."
40252
+ },
40253
+ {
40254
+ id: "coroner",
40255
+ roleLine: "Writes blameless postmortems with owned follow-up actions."
40256
+ },
40257
+ SELF_IMPROVEMENT
40258
+ ],
40259
+ availability: "available",
40260
+ legacyKits: [
40261
+ {
40262
+ id: "ops",
40263
+ name: "Ops / On-Call Kit",
40264
+ agents: ["incident-response", "issue-triage", "ship-digest"]
40265
+ }
40266
+ ]
40267
+ },
40268
+ {
40269
+ id: "blank-canvas",
40270
+ name: "The Blank Canvas",
40271
+ template: "@auto/blank-canvas",
40272
+ tagline: "Builds any automation from a plain-language idea.",
40273
+ pitch: "Describe what you want to happen, when it should run, and which tools it can use. The Patron will help you shape the workflow, build the agents and triggers behind it, and open a setup PR for your approval.",
40274
+ backdrop: "blank-canvas.mp4",
40275
+ frontOfHouse: "patron",
40276
+ frontOfHouseOnboardingSubpath: "agents/patron-onboarding.yaml",
40277
+ onboardingProgress: onboardingProgressManifest(
40278
+ "Smoke test your automation"
40279
+ ),
40280
+ members: [
40281
+ {
40282
+ id: "patron",
40283
+ roleLine: "Front of house. Takes the commission, staffs the workshop, and authors every hire through a reviewable PR."
40284
+ }
40285
+ ],
40286
+ availability: "available",
40287
+ legacyKits: [{ id: "custom", name: "Custom", agents: [] }]
40288
+ }
40289
+ ];
40055
40290
 
40056
40291
  // ../../packages/schemas/src/temporal.ts
40057
40292
  var RUNTIME_ESCALATION_LEASE_STATES = [