jonah-fleet 1.5.0 → 1.6.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.
- package/CHANGELOG.md +51 -0
- package/dist/index.js +431 -108
- package/dist/lib/daemon.d.ts +33 -0
- package/dist/lib/daemon.d.ts.map +1 -1
- package/dist/lib/evals.d.ts +56 -1
- package/dist/lib/evals.d.ts.map +1 -1
- package/dist/lib/presets.d.ts +1 -1
- package/dist/lib/telemetry.d.ts +13 -0
- package/dist/lib/telemetry.d.ts.map +1 -1
- package/dist/lib/terminal-card.d.ts +14 -0
- package/dist/lib/terminal-card.d.ts.map +1 -1
- package/package.json +4 -4
- package/templates/evals/ambiguity-benchmark.json +92 -0
- package/templates/prompts/ORCHESTRATION.md +25 -9
- package/templates/prompts/_prompt-template.md +13 -1
- package/templates/prompts/autowork.md +33 -7
- package/templates/prompts/optimizer.md +3 -0
- package/templates/workflows/autowork-cron.yml +33 -0
- package/templates/workflows/trigger-autowork-manual.yml +2 -0
- package/templates/workflows/trigger-autowork-on-bug.yml +2 -0
- package/templates/workflows/trigger-autowork-on-merge.yml +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,12 +5,63 @@ 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.6.0](https://github.com/juliendurandeu/jonah-fleet/compare/jonah-fleet-v1.5.0...jonah-fleet-v1.6.0) (2026-09-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **autowork:** single-flight PR claim protocol in Phase 1 convergence ([#59](https://github.com/juliendurandeu/jonah-fleet/issues/59)) ([991e3f6](https://github.com/juliendurandeu/jonah-fleet/commit/991e3f6d3848bbb8dda7e6b8667533dc0ffef56d))
|
|
14
|
+
* **daemon:** display target PR/issue ID & title and wrap terminal card lines without cropping ([#60](https://github.com/juliendurandeu/jonah-fleet/issues/60)) ([43a3abb](https://github.com/juliendurandeu/jonah-fleet/commit/43a3abb51f86b5f0368ea2fdfc0f26e38f833ab9))
|
|
15
|
+
* **daemon:** drain reviewable PR backlog before moving to autowork ([#62](https://github.com/juliendurandeu/jonah-fleet/issues/62)) ([eeb9d57](https://github.com/juliendurandeu/jonah-fleet/commit/eeb9d57e5df4d00fa0b9f824ff231b7df9625386))
|
|
16
|
+
* **evals:** add fleet ambiguity telemetry, optimizer anomaly heuristics, and automated benchmark evals ([#68](https://github.com/juliendurandeu/jonah-fleet/issues/68)) ([a377ea5](https://github.com/juliendurandeu/jonah-fleet/commit/a377ea5ffd0ff21898a8f921f8738fa2b886448c))
|
|
17
|
+
* **prompts:** enforce log delivery protocol with [skip ci] and branch invariants ([#74](https://github.com/juliendurandeu/jonah-fleet/issues/74)) ([23b033f](https://github.com/juliendurandeu/jonah-fleet/commit/23b033fc06aaa2ed5cca292be16f6db70a194465))
|
|
18
|
+
* **prompts:** guard orphaned ready PR recovery against unstable and unapproved CI ([#75](https://github.com/juliendurandeu/jonah-fleet/issues/75)) ([8a0868b](https://github.com/juliendurandeu/jonah-fleet/commit/8a0868bde2ceab909b9bc01a30046818947a0f3a))
|
|
19
|
+
* **workflow:** authenticate checkout with GH_PAT token in autowork workflows ([#73](https://github.com/juliendurandeu/jonah-fleet/issues/73)) ([7a276a6](https://github.com/juliendurandeu/jonah-fleet/commit/7a276a60cc3dc3f1f31514efd657a0f714fa12cf))
|
|
20
|
+
* **workflow:** automate run log delivery to main with [skip ci] ([#72](https://github.com/juliendurandeu/jonah-fleet/issues/72)) ([0dc1b3b](https://github.com/juliendurandeu/jonah-fleet/commit/0dc1b3b8bbe626fbce0f5d73fa67e98df165339f))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **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
|
+
|
|
27
|
+
## [Unreleased] - 2026-09-07
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- **deps:** update `vitest` devDependency from `4.1.11` to `^5.0.0` ([#78](https://github.com/juliendurandeu/jonah-fleet/issues/78))
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- **workflows:** Automate run log delivery directly to main with `[skip ci]` ([#72](https://github.com/juliendurandeu/jonah-fleet/pull/72)):
|
|
34
|
+
- Adds deterministic post-step in `autowork-cron.yml` and `templates/workflows/autowork-cron.yml` to safely preserve and push operational execution logs directly to `main` with `[skip ci]`.
|
|
35
|
+
- Adds workflow invariant tests in `tests/workflows-validation.test.ts`.
|
|
36
|
+
- **prompts:** Guard orphaned ready PR recovery against unstable and unapproved CI ([#75](https://github.com/juliendurandeu/jonah-fleet/pull/75)):
|
|
37
|
+
- Adds Passing CI Verification Gate requiring `conclusion: "SUCCESS"` and `mergeStateStatus: "CLEAN"` in Step 3c of `autowork.md` and `ORCHESTRATION.md`.
|
|
38
|
+
- Prohibits review re-triggering and draft toggles when checks are in-progress, failing, or in `ACTION_REQUIRED` awaiting permissions to prevent comment loops.
|
|
39
|
+
- Adds validation test in `tests/prompts-validation.test.ts`.
|
|
40
|
+
- **workflows:** Authenticate checkout with `GH_PAT` token in autowork workflows ([#73](https://github.com/juliendurandeu/jonah-fleet/pull/73)):
|
|
41
|
+
- Configures `actions/checkout@v4` with `token: ${{ secrets.GH_PAT || github.token }}` across all autowork workflow templates to attribute Git pushes to a write-permission token and avoid stalled approval checks.
|
|
42
|
+
- Added workflow validation tests in `tests/workflows-validation.test.ts`.
|
|
43
|
+
- **telemetry:** Ambiguity Gate telemetry tracking and terminal dashboard integration:
|
|
44
|
+
- Parses Ambiguity Gate triggers (`ambiguityGateTriggered`), count of clarifying questions asked (`questionsAskedCount`), and `needs-info` labels applied.
|
|
45
|
+
- Aggregates fleet-wide inquisitive stance metrics and calculates estimated wasted tokens averted (~50k tokens per averted runaway run).
|
|
46
|
+
- Terminal telemetry dashboard presents `❓ Inquisitive Stance & Ambiguity Gate Signals`.
|
|
47
|
+
- **optimizer & orchestration:** Passive Order-Taking Anomaly and Speculative Runaway Waste heuristics:
|
|
48
|
+
- Documents the "Passive Order-Taking Anomaly (\"Yes-Man Blindspot\")" when agents default to compliance over inquiry, resulting in high iterations and PR review bounces.
|
|
49
|
+
- Added "Ambiguity Gate & Benchmark Eval Feeding" remediation trigger in `optimizer.md` and `ORCHESTRATION.md`.
|
|
50
|
+
- **evals & benchmark:** Automated Ambiguity Benchmark engine and optimizer-fed test suite:
|
|
51
|
+
- Created baseline dataset (`templates/evals/ambiguity-benchmark.json`) containing 10 calibrated issues (5 ambiguous requiring questions, 5 well-specified ready for implementation).
|
|
52
|
+
- Implemented `evaluateIssueAmbiguity()`, `runAmbiguityBenchmark()`, `extractBenchmarkCaseFromLog()`, and `feedOptimizerCaseToBenchmark()` in `src/lib/evals.ts`.
|
|
53
|
+
- Added unit tests in `tests/evals.test.ts` verifying 100% benchmark accuracy, 0% false compliance rate (yes-man error), question generation, and dynamic optimizer case feeding.
|
|
54
|
+
|
|
8
55
|
## [1.5.0](https://github.com/juliendurandeu/jonah-fleet/compare/jonah-fleet-v1.4.2...jonah-fleet-v1.5.0) (2026-09-03)
|
|
9
56
|
|
|
10
57
|
|
|
11
58
|
### Features
|
|
12
59
|
|
|
60
|
+
* **daemon:** extract reviewable PR filter helper and add unit tests for queue draining ([#66](https://github.com/juliendurandeu/jonah-fleet/issues/66))
|
|
61
|
+
* **daemon:** display target PR/issue ID & title and wrap terminal card lines without cropping
|
|
62
|
+
* **autowork:** single-flight PR claim protocol in Phase 1 convergence to prevent daemon race conditions on bounced PRs
|
|
13
63
|
* **autowork:** add selective server-side issue querying to prevent tool buffer truncation ([#54](https://github.com/juliendurandeu/jonah-fleet/issues/54)) ([e85958b](https://github.com/juliendurandeu/jonah-fleet/commit/e85958bc9129b16af170961a0ae85ff91211ec85))
|
|
64
|
+
* **daemon:** drain reviewable PR backlog via sequential peer review sessions before moving to autowork ([#61](https://github.com/juliendurandeu/jonah-fleet/issues/61)) ([#62](https://github.com/juliendurandeu/jonah-fleet/pull/62))
|
|
14
65
|
* **cli:** add multi-repo fleet monitoring command (jonah-fleet monitor) ([#6](https://github.com/juliendurandeu/jonah-fleet/issues/6)) ([0093c0f](https://github.com/juliendurandeu/jonah-fleet/commit/0093c0f2bdeb0d48d952119b96e541be73c59a03))
|
|
15
66
|
* **cli:** add per-agent token breakdown to jonah-fleet status and monitor commands ([#16](https://github.com/juliendurandeu/jonah-fleet/issues/16)) ([7e51d0c](https://github.com/juliendurandeu/jonah-fleet/commit/7e51d0cb6bdf8fef127cac7f13f8320821cb4391))
|
|
16
67
|
* **cli:** enhance jonah-fleet init with smart tech-stack auto-detection ([#37](https://github.com/juliendurandeu/jonah-fleet/issues/37)) ([b1b028a](https://github.com/juliendurandeu/jonah-fleet/commit/b1b028a5cc145aeb6a0a9b0df2e4ab010c1fa104))
|