jonah-fleet 1.6.0 → 1.9.0

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.
Files changed (49) hide show
  1. package/CHANGELOG.md +130 -0
  2. package/README.md +25 -2
  3. package/dist/commands/daemon.d.ts.map +1 -1
  4. package/dist/commands/init.d.ts +3 -0
  5. package/dist/commands/init.d.ts.map +1 -1
  6. package/dist/commands/labels.d.ts +11 -0
  7. package/dist/commands/labels.d.ts.map +1 -0
  8. package/dist/commands/status.d.ts.map +1 -1
  9. package/dist/commands/sync.d.ts.map +1 -1
  10. package/dist/commands/telemetry.d.ts.map +1 -1
  11. package/dist/index.js +2527 -519
  12. package/dist/lib/daemon-keys.d.ts +103 -0
  13. package/dist/lib/daemon-keys.d.ts.map +1 -0
  14. package/dist/lib/daemon.d.ts +8 -2
  15. package/dist/lib/daemon.d.ts.map +1 -1
  16. package/dist/lib/fleet-query.d.ts.map +1 -1
  17. package/dist/lib/labels.d.ts +68 -0
  18. package/dist/lib/labels.d.ts.map +1 -0
  19. package/dist/lib/manifest.d.ts +6 -0
  20. package/dist/lib/manifest.d.ts.map +1 -1
  21. package/dist/lib/presets.d.ts +52 -1
  22. package/dist/lib/presets.d.ts.map +1 -1
  23. package/dist/lib/runner.d.ts +114 -0
  24. package/dist/lib/runner.d.ts.map +1 -1
  25. package/dist/lib/telemetry.d.ts.map +1 -1
  26. package/dist/lib/terminal-card.d.ts +24 -1
  27. package/dist/lib/terminal-card.d.ts.map +1 -1
  28. package/package.json +1 -1
  29. package/schema.json +74 -1
  30. package/templates/prompts/ORCHESTRATION.md +84 -41
  31. package/templates/prompts/_prompt-template.md +10 -13
  32. package/templates/prompts/analytics-review.md +4 -2
  33. package/templates/prompts/autowork.md +76 -35
  34. package/templates/prompts/dependency-update-security-check.md +4 -2
  35. package/templates/prompts/design-review.md +125 -0
  36. package/templates/prompts/issues-housekeeping.md +10 -8
  37. package/templates/prompts/optimizer.md +31 -12
  38. package/templates/prompts/peer-review.md +42 -7
  39. package/templates/prompts/product-planning.md +14 -10
  40. package/templates/workflows/autowork-cron.yml +137 -38
  41. package/templates/workflows/dependency-check-cron.yml +127 -2
  42. package/templates/workflows/design-review-cron.yml +221 -0
  43. package/templates/workflows/issues-housekeeping-cron.yml +127 -2
  44. package/templates/workflows/prompt-optimizer-cron.yml +134 -9
  45. package/templates/workflows/sync-fleet.yml +4 -0
  46. package/templates/workflows/trigger-autowork-manual.yml +154 -11
  47. package/templates/workflows/trigger-autowork-on-bug.yml +177 -9
  48. package/templates/workflows/trigger-autowork-on-merge.yml +178 -9
  49. package/templates/workflows/trigger-review-routine.yml +162 -22
package/CHANGELOG.md CHANGED
@@ -5,6 +5,80 @@ All notable changes to `jonah-fleet` will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.0](https://github.com/juliendurandeu/jonah-fleet/compare/v1.8.0...v1.9.0) (2026-09-16)
9
+
10
+
11
+ ### Features
12
+
13
+ * **ci:** automate release pipeline with auto-merge and tag alignment ([#105](https://github.com/juliendurandeu/jonah-fleet/issues/105)) ([2e4d34b](https://github.com/juliendurandeu/jonah-fleet/commit/2e4d34bb35a4768372232112c455bb5df6849119))
14
+ * **labels:** support auto-provisioning of fleet labels via CLI and sync ([1729473](https://github.com/juliendurandeu/jonah-fleet/commit/1729473ed9964740e4cba591cd773224c36be298))
15
+ * **logging:** migrate routine run logs to GitHub Issues ([#137](https://github.com/juliendurandeu/jonah-fleet/issues/137)) ([13bff52](https://github.com/juliendurandeu/jonah-fleet/commit/13bff5251da1cbaefc57b942d894413abed6a1a1))
16
+ * **models:** upgrade default LLM models to Gemini 3.8 Flash ([ef436fc](https://github.com/juliendurandeu/jonah-fleet/commit/ef436fc6d893cff487d9a5ae1017cb5081f3bafb))
17
+ * **peer-review:** link routine run log issue from starting review markers and PR comments ([9bac85a](https://github.com/juliendurandeu/jonah-fleet/commit/9bac85afcf9c23ea5aa46eaf9a0c4de2a37eaf20))
18
+ * **routines:** introduce autonomous Design Review routine ([#110](https://github.com/juliendurandeu/jonah-fleet/issues/110)) ([1e4f05b](https://github.com/juliendurandeu/jonah-fleet/commit/1e4f05ba55bdedadebcce8639102257930ebaf83))
19
+ * **runner:** display truncated PR and issue titles in daemon spinner ([#107](https://github.com/juliendurandeu/jonah-fleet/issues/107)) ([9b2ca79](https://github.com/juliendurandeu/jonah-fleet/commit/9b2ca796ab37872ff056dad486c9faea80d6c1a0))
20
+ * **telemetry:** live progress reporting and compact milestone cards in routine run issues ([#168](https://github.com/juliendurandeu/jonah-fleet/issues/168)) ([0899cdc](https://github.com/juliendurandeu/jonah-fleet/commit/0899cdcbdce7b7411bd85beedd1ffe8b05465cb5))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **daemon:** scope routine prompts strictly to target repository working directory ([62affb8](https://github.com/juliendurandeu/jonah-fleet/commit/62affb8b6dade15f7296e09d28a52359d1d05bb1))
26
+ * **prompts:** enforce active origin sync in autowork and conflict resolution in peer-review ([2bb1832](https://github.com/juliendurandeu/jonah-fleet/commit/2bb1832154312f78503da1e7035dc91e4247c9a8))
27
+ * **runner,daemon:** prevent stale report ghosting and fix keyboard lockup in targeted prompts ([#166](https://github.com/juliendurandeu/jonah-fleet/issues/166)) ([0de89e2](https://github.com/juliendurandeu/jonah-fleet/commit/0de89e24427f9e575f08cd721434ab5156fdcb94))
28
+ * **workflows:** harden workflow templates against shell injection, credential persistence, and timeouts ([04a0dd3](https://github.com/juliendurandeu/jonah-fleet/commit/04a0dd3a0457fd4d6db74fcd4709fcef0d28d84e))
29
+
30
+ ## [Unreleased] - 2026-09-16
31
+
32
+ ### Features
33
+
34
+ * **telemetry:** introduce live progress reporting in routine run tracking issues (`routine-log`) using bounded Compact Milestone Cards (3–5 bullet points for Intake & Strategy, Verification & Tests, Autonomous Handoff, and Run Completed) across `autowork`, `peer-review`, `optimizer`, and `ORCHESTRATION.md`.
35
+ * **workflows:** automatically post Interruption Cards to routine run issue comment streams upon failure, timeout, or cancellation, linking directly to the Actions run logs before applying `status:failure,needs-attention`.
36
+ * **runner:** add `formatMilestoneCard`, `formatInterruptionCard`, and `tryPostLocalRunMilestone` helpers to local runner `runner.ts` to post interruption cards on non-zero exit codes with offline fallback.
37
+ * **logging:** migrate routine run telemetry and execution logs from git repository files (`.github/prompts/logs/**`) to GitHub Issues with two-phase lifecycle (`routine-log`, `status:running` -> `status:success` closed / `status:failure,needs-attention` open).
38
+ * **runner:** support local runner and daemon issue lifecycle with `runner:local` and offline fallback to `.jonah-fleet/runs/*.md`.
39
+ * **telemetry:** update fleet telemetry hub, status command, and optimizer routine to query routine run issues via `gh issue list --label routine-log` and local `.jonah-fleet/runs/`.
40
+ * **housekeeping:** replace log-only PR sweep with stalled routine run issue audit (`status:running` > 6 hours).
41
+ * **routines:** introduce autonomous Design Review routine for design system purity, UI clutter audit, and feature pruning.
42
+ * **runner:** display clean, truncated PR and Issue titles in foreground daemon spinner alongside target numbers.
43
+ * **peer-review:** link routine tracking log issue directly from "Starting review (round N)" PR comments and review summaries.
44
+ * **models:** upgrade default LLM models to Gemini 3.8 Flash (`gemini-3.8-flash-high` for core reasoning routines, `gemini-3.8-flash-medium` for housekeeping, dependency check, and analytics) to ensure CLI compatibility and access to the latest model capabilities.
45
+
46
+ ### Bug Fixes
47
+
48
+ * **daemon:** prevent keyboard lockup and prompt corruption during targeted input by resuming stdin stream, restoring raw mode, and suppressing status ticker during prompt interactions.
49
+ * **runner:** prevent stale report ghosting on routine failure or timeout by cleaning up preexisting run reports before execution, validating report modification timestamps against run start, and appending trailing error output to fallback failure summaries.
50
+ * **daemon:** prevent keyboard lockup by explicitly resuming `stdin` after targeted interactive prompts (`R` and `A`) and ensure `KeyboardController.resume()` unpauses the underlying stream.
51
+ * **daemon:** suppress status-line ticker updates and interval check dispatches while waiting for targeted user input to avoid prompt visual corruption and background task collisions.
52
+
53
+ ## [1.8.0](https://github.com/juliendurandeu/jonah-fleet/compare/jonah-fleet-v1.7.0...jonah-fleet-v1.8.0) (2026-09-09)
54
+
55
+
56
+ ### Features
57
+
58
+ * **labels:** prune unused labels via CLI and housekeeping routine ([#99](https://github.com/juliendurandeu/jonah-fleet/issues/99)) ([b4a3ba2](https://github.com/juliendurandeu/jonah-fleet/commit/b4a3ba2f70bd2b899a02d33f6b3331eb6ec990c2)), closes [#97](https://github.com/juliendurandeu/jonah-fleet/issues/97)
59
+
60
+
61
+ ### Bug Fixes
62
+
63
+ * **prompts:** prevent stray issues via tracking and closure guardrails ([#102](https://github.com/juliendurandeu/jonah-fleet/issues/102)) ([6e9b1ec](https://github.com/juliendurandeu/jonah-fleet/commit/6e9b1ec12e85b5fc98f6decf43cd4f5888d790d6))
64
+ * **workflows:** move concurrency to job level to avoid self-cancelling on skipped triggers ([#100](https://github.com/juliendurandeu/jonah-fleet/issues/100)) ([#101](https://github.com/juliendurandeu/jonah-fleet/issues/101)) ([3710bac](https://github.com/juliendurandeu/jonah-fleet/commit/3710bacedffeffcd90434756f3bae1c1dd323017))
65
+
66
+ ## [1.7.0](https://github.com/juliendurandeu/jonah-fleet/compare/jonah-fleet-v1.6.0...jonah-fleet-v1.7.0) (2026-09-09)
67
+
68
+
69
+ ### Features
70
+
71
+ * **daemon:** interactive keyboard controller with idle hotkeys and execution queue ([#91](https://github.com/juliendurandeu/jonah-fleet/issues/91)) ([3536e9a](https://github.com/juliendurandeu/jonah-fleet/commit/3536e9ab38849550ad7c6d846e6a2488b187f490))
72
+ * **daemon:** rotating status-line tips and narrow-width terminal guardrails ([#90](https://github.com/juliendurandeu/jonah-fleet/issues/90)) ([#93](https://github.com/juliendurandeu/jonah-fleet/issues/93)) ([2efdfbf](https://github.com/juliendurandeu/jonah-fleet/commit/2efdfbf45c18a746ed1ce4ed7338e2b73ab9f352))
73
+ * **daemon:** targeted execution prompts ('R' and 'A') and utility hotkeys ('v', 'l', 'w') ([#92](https://github.com/juliendurandeu/jonah-fleet/issues/92)) ([00c45f4](https://github.com/juliendurandeu/jonah-fleet/commit/00c45f4563049c86f1dbe956eb4e3f8b634c7918))
74
+ * **manifest:** support model and reasoning effort profiles in agents-manifest.json ([#3](https://github.com/juliendurandeu/jonah-fleet/issues/3)) ([#85](https://github.com/juliendurandeu/jonah-fleet/issues/85)) ([ff2f654](https://github.com/juliendurandeu/jonah-fleet/commit/ff2f654d73d7d49b21379264216e98434e2f1f91))
75
+ * **radar:** expand upstream radar to track funes alongside symphony for agent memory intelligence ([#84](https://github.com/juliendurandeu/jonah-fleet/issues/84)) ([4d8e127](https://github.com/juliendurandeu/jonah-fleet/commit/4d8e1273c48895d995d792789eb4a4baef968549))
76
+
77
+
78
+ ### Bug Fixes
79
+
80
+ * **daemon:** avoid TDZ ReferenceError on graceful stop and signal handlers ([#94](https://github.com/juliendurandeu/jonah-fleet/issues/94)) ([7ca5fb7](https://github.com/juliendurandeu/jonah-fleet/commit/7ca5fb7a0849ee9babc8165253f9566c6c51963c))
81
+
8
82
  ## [1.6.0](https://github.com/juliendurandeu/jonah-fleet/compare/jonah-fleet-v1.5.0...jonah-fleet-v1.6.0) (2026-09-08)
9
83
 
10
84
 
@@ -24,6 +98,62 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
98
 
25
99
  * **ci:** avoid direct secrets reference in release-please if conditional ([#83](https://github.com/juliendurandeu/jonah-fleet/issues/83)) ([6d6dcd9](https://github.com/juliendurandeu/jonah-fleet/commit/6d6dcd9c472f76dc6026ed16cca49cf665a6ea8c))
26
100
 
101
+ ## [Unreleased] - 2026-09-09
102
+
103
+ ### Fixed
104
+ - **workflows:** Move `concurrency` from workflow root to job level across event-triggered routine workflows (`trigger-review-routine.yml`, `trigger-autowork-on-bug.yml`, `trigger-autowork-on-merge.yml`) ([#100](https://github.com/juliendurandeu/jonah-fleet/issues/100)). In GitHub Actions, workflow-level concurrency is evaluated before job `if` filters, causing skipped events (such as startup comments posted by the review routine itself, comments without review commands, non-matching issue labels, or closed unmerged PRs) to prematurely cancel in-flight routine executions.
105
+ - **daemon:** Fix `ReferenceError: Cannot access 'tickerInterval' before initialization` on graceful stop (`q`) or SIGINT / SIGTERM during initial startup checks or routine executions by declaring interval and keyboard handles in outer scope before shutdown handlers.
106
+
107
+ ### Added
108
+ - **labels:** Prune unused boilerplate labels via deterministic CLI and housekeeping routine ([#97](https://github.com/juliendurandeu/jonah-fleet/issues/97)):
109
+ - Implemented `src/lib/labels.ts` with GraphQL label queries, pagination, and classification into `active`, `protected_zero_count`, `historical`, and `prunable`.
110
+ - Added protected fleet taxonomy shields retaining `priority/*`, `type/*`, `size/*`, `needs-triage`, `ready-for-agent`, `needs-human`, `needs-info`, `needs-design`, `wontfix`, `measurement`, `blocked`, `autorelease:*`, `dependencies`, and `security` labels.
111
+ - Added support for custom user-defined protected labels in `agents-manifest.json` (`labels.protected`) and `schema.json`.
112
+ - Implemented `jonah-fleet labels audit` and `jonah-fleet labels prune [--dry-run] [--yes] [--repo <repo>] [--json]`.
113
+ - Added `--prune-labels` flag to `jonah-fleet init` to optionally clean boilerplate labels on initial workspace setup.
114
+ - Updated `issues-housekeeping.md` Step 6 to delegate label pruning to `npx --yes jonah-fleet labels prune --yes`.
115
+ - Unit tests in `tests/labels.test.ts` and prompt validation tests in `tests/prompts-validation.test.ts`.
116
+ - **runner:** Stream real-time granular activity to foreground daemon spinner ([#96](https://github.com/juliendurandeu/jonah-fleet/issues/96)):
117
+ - Updated agent invocation to run Antigravity CLI with `--output-format stream-json`.
118
+ - Added line-buffered stream-json event parser in `src/lib/runner.ts` handling `step_update`, `tool`, `agent_response`, and `result` events.
119
+ - Implemented `formatActionDescription` in `src/lib/terminal-card.ts` for readable tool verbs (`run_command`, `view_file`, `replace_file_content`, `grep_search`, `invoke_subagent`, etc.).
120
+ - Added terminal column width bounds to `TerminalSpinner` to prevent line wrapping on long commands and window resizing.
121
+ - Enhanced verbose mode with formatted, human-readable timestamped event streams.
122
+ - Preserved raw stream-json in `.jonah-fleet/daemon.log` and ensured summary card extracts final response and tokens from `result` event.
123
+ - **daemon:** Rotating status-line tips and narrow-width terminal guardrails ([#90](https://github.com/juliendurandeu/jonah-fleet/issues/90)):
124
+ - Added smooth 4-second cycling through all 11 keybinding tips in the foreground daemon's idle status line to promote frictionless hotkey discoverability.
125
+ - Added paused status UX displaying `PAUSED` indicator and resume tips.
126
+ - Added narrow terminal viewport width guardrails using ANSI-aware truncation (`truncateAnsi`), clamping ticker lines to `columns - 2` and omitting tips when columns < 55 to prevent line wrapping or scrolling artifacts.
127
+ - Comprehensive unit test suites in `tests/daemon-keys.test.ts` and `tests/terminal-card.test.ts`.
128
+ - **daemon:** Targeted execution prompts and runtime utility hotkeys ([#89](https://github.com/juliendurandeu/jonah-fleet/issues/89)):
129
+ - Added targeted execution hotkeys: `R` (prompts for PR # and runs targeted peer-review) and `A` (prompts for Issue # and runs targeted autowork).
130
+ - Pauses raw mode safely during targeted prompt input, validates numeric identifiers (`42`, `#42`, `PR #42`, `Issue #89`), and provides clean cancellation on Esc/empty Enter.
131
+ - Added runtime utility hotkeys: `v` (live verbosity mode toggling), `l` (print last 20 lines of `.jonah-fleet/daemon.log`), and `w` (inspect and clean stale worktrees on demand).
132
+ - Updated keybindings cheat-sheet and daemon status summary with verbosity mode indicators.
133
+ - Unit tests in `tests/daemon-keys.test.ts`.
134
+ - **daemon:** Interactive keyboard controller with idle hotkeys and execution queue ([#88](https://github.com/juliendurandeu/jonah-fleet/issues/88)):
135
+ - Captures single-keypress inputs in foreground daemon mode without requiring Enter (`process.stdin.setRawMode`).
136
+ - Added hotkeys: `r` (immediate peer-review scan), `a` (immediate autowork scan), `p` (pause/resume automatic polling), `s` (daemon status summary), `q` (graceful shutdown), `Ctrl+C` (force stop), and `?`/`h` (interactive cheat-sheet).
137
+ - Single-slot pending execution queue (`pendingRoutine`) when pressing triggers while busy, dispatched immediately upon completion of active routine.
138
+ - Paused state persistence in `daemon.json` (`status: 'paused'`), keeping manual sweeps functional.
139
+ - Reset countdown timers upon on-demand sweep completion to prevent duplicate interval executions.
140
+ - Unit tests in `tests/daemon-keys.test.ts`.
141
+
142
+ ## [Unreleased] - 2026-09-08
143
+
144
+ ### Added
145
+ - **manifest:** Support model profiles, reasoning effort levels, and budget controls in `agents-manifest.json` ([#85](https://github.com/juliendurandeu/jonah-fleet/pull/85)):
146
+ - Extends `schema.json` with `models` and `budgets` configuration blocks.
147
+ - Adds `resolveRoutineConfig()` helper in `src/lib/manifest.ts` with default fallback profiles in `src/lib/presets.ts`.
148
+ - Updates all workflow templates and `.github/workflows/` with dynamic routine model and timeout resolution.
149
+ - Enhances `jonah-fleet status` to render model profiles and configured budgets.
150
+ - Adds unit test coverage in `tests/manifest.test.ts`.
151
+ - **radar:** Expand Upstream Radar to track `huggingface/funes` alongside `openai/symphony` ([#70](https://github.com/juliendurandeu/jonah-fleet/issues/70)):
152
+ - Extended `.github/scripts/fetch-symphony-radar.js` into a multi-source ecosystem radar tracking Symphony (orchestration) and Funes (agent memory & session indexing).
153
+ - Added dedicated Agent Memory & Session Indexing evaluation matrix covering zero-LLM ingestion, pull-based MCP memory delivery, cross-session provenance, and multi-agent portability.
154
+ - Updated `symphony-radar.yml` workflow and `ORCHESTRATION.md` documentation.
155
+ - Added unit test suite `tests/radar.test.ts` and updated workflow validation tests.
156
+
27
157
  ## [Unreleased] - 2026-09-07
28
158
 
29
159
  ### Changed
package/README.md CHANGED
@@ -146,7 +146,7 @@ Each target project contains an `agents-manifest.json` at its root:
146
146
  ```json
147
147
  {
148
148
  "$schema": "https://raw.githubusercontent.com/juliendurandeu/jonah-fleet/main/schema.json",
149
- "version": "1.0.0",
149
+ "version": "1.6.0",
150
150
  "preset": "standard",
151
151
  "routines": {
152
152
  "autowork": true,
@@ -157,6 +157,28 @@ Each target project contains an `agents-manifest.json` at its root:
157
157
  "product-planning": false,
158
158
  "analytics-review": false
159
159
  },
160
+ "models": {
161
+ "default": "gemini-3.8-flash-high",
162
+ "issues-housekeeping": "gemini-3.8-flash-medium",
163
+ "dependency-update-security-check": "gemini-3.8-flash-medium"
164
+ },
165
+ "budgets": {
166
+ "weeklyTokens": 8750000,
167
+ "timeoutMinutes": {
168
+ "autowork": 60,
169
+ "peer-review": 55,
170
+ "optimizer": 35,
171
+ "issues-housekeeping": 40,
172
+ "dependency-update-security-check": 25
173
+ },
174
+ "maxIterations": {
175
+ "autowork": 65,
176
+ "peer-review": 40,
177
+ "optimizer": 30,
178
+ "issues-housekeeping": 30,
179
+ "dependency-update-security-check": 20
180
+ }
181
+ },
160
182
  "skills": [
161
183
  "tdd",
162
184
  "code-review",
@@ -165,7 +187,8 @@ Each target project contains an `agents-manifest.json` at its root:
165
187
  "diagnosing-bugs",
166
188
  "resolving-merge-conflicts",
167
189
  "writing-for-agents",
168
- "triage"
190
+ "triage",
191
+ "grill-me"
169
192
  ],
170
193
  "autoUpdate": {
171
194
  "enabled": true,
@@ -1 +1 @@
1
- {"version":3,"file":"daemon.d.ts","sourceRoot":"","sources":["../../src/commands/daemon.ts"],"names":[],"mappings":"AAWA,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,wBAAsB,gBAAgB,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAO,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CA6FzG"}
1
+ {"version":3,"file":"daemon.d.ts","sourceRoot":"","sources":["../../src/commands/daemon.ts"],"names":[],"mappings":"AAWA,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,wBAAsB,gBAAgB,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAO,GAAE,oBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmGzG"}
@@ -1,3 +1,4 @@
1
+ import { GhExecutor } from '../lib/fleet-query.js';
1
2
  export interface InitOptions {
2
3
  preset?: string;
3
4
  force?: boolean;
@@ -7,6 +8,8 @@ export interface InitOptions {
7
8
  testCmd?: string;
8
9
  buildCmd?: string;
9
10
  interactive?: boolean;
11
+ pruneLabels?: boolean;
12
+ executor?: GhExecutor;
10
13
  }
11
14
  export declare function promptQuestion(query: string, defaultValue: string): Promise<string>;
12
15
  export declare function runInit(options?: InitOptions): Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,WAAW;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,wBAAsB,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAYzF;AAED,wBAAsB,OAAO,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAoGtE"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAQA,OAAO,EAAqB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEtE,MAAM,WAAW,WAAW;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED,wBAAsB,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAYzF;AAED,wBAAsB,OAAO,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmHtE"}
@@ -0,0 +1,11 @@
1
+ import { GhExecutor } from '../lib/fleet-query.js';
2
+ export interface LabelsCommandOptions {
3
+ repo?: string;
4
+ dryRun?: boolean;
5
+ yes?: boolean;
6
+ json?: boolean;
7
+ cwd?: string;
8
+ executor?: GhExecutor;
9
+ }
10
+ export declare function runLabels(action?: 'audit' | 'list' | 'prune' | 'provision', options?: LabelsCommandOptions): Promise<void>;
11
+ //# sourceMappingURL=labels.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"labels.d.ts","sourceRoot":"","sources":["../../src/commands/labels.ts"],"names":[],"mappings":"AAUA,OAAO,EAAqB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEtE,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED,wBAAsB,SAAS,CAC7B,MAAM,GAAE,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,WAAqB,EAC1D,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,IAAI,CAAC,CAqIf"}
@@ -1 +1 @@
1
- {"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../src/commands/status.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,aAAa;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAsB,SAAS,CAAC,OAAO,GAAE,aAAkB,GAAG,OAAO,CAAC,IAAI,CAAC,CA2I1E"}
1
+ {"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../src/commands/status.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,aAAa;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAsB,SAAS,CAAC,OAAO,GAAE,aAAkB,GAAG,OAAO,CAAC,IAAI,CAAC,CA4K1E"}
@@ -1 +1 @@
1
- {"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../src/commands/sync.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,wBAAsB,OAAO,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CA0CtE"}
1
+ {"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../src/commands/sync.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,wBAAsB,OAAO,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmDtE"}
@@ -1 +1 @@
1
- {"version":3,"file":"telemetry.d.ts","sourceRoot":"","sources":["../../src/commands/telemetry.ts"],"names":[],"mappings":"AAeA,OAAO,EAAqB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEtE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IACzC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED,wBAAsB,YAAY,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC,CAuHhF"}
1
+ {"version":3,"file":"telemetry.d.ts","sourceRoot":"","sources":["../../src/commands/telemetry.ts"],"names":[],"mappings":"AAeA,OAAO,EAAqB,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAEtE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,QAAQ,CAAC;IACzC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED,wBAAsB,YAAY,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC,CA6HhF"}