jonah-fleet 1.9.1 → 1.9.2
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 +7 -0
- package/package.json +3 -2
- package/templates/workflows/autowork-cron.yml +9 -8
- package/templates/workflows/dependency-check-cron.yml +9 -8
- package/templates/workflows/design-review-cron.yml +9 -8
- package/templates/workflows/issues-housekeeping-cron.yml +9 -8
- package/templates/workflows/prompt-optimizer-cron.yml +9 -8
- package/templates/workflows/sync-fleet.yml +2 -2
- package/templates/workflows/trigger-autowork-manual.yml +9 -8
- package/templates/workflows/trigger-autowork-on-bug.yml +9 -8
- package/templates/workflows/trigger-autowork-on-merge.yml +9 -8
- package/templates/workflows/trigger-review-routine.yml +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.2](https://github.com/juliendurandeu/jonah-fleet/compare/v1.9.1...v1.9.2) (2026-09-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workflows:** resolve indentation syntax error in interruption card and add yaml validator test ([b312a20](https://github.com/juliendurandeu/jonah-fleet/commit/b312a2056da850876ee3daa2d952ffe299687b7e))
|
|
14
|
+
|
|
8
15
|
## [1.9.1](https://github.com/juliendurandeu/jonah-fleet/compare/v1.9.0...v1.9.1) (2026-09-16)
|
|
9
16
|
|
|
10
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jonah-fleet",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "Standalone autonomous agent fleet with Symphony orchestration, claim protocols, and continuous improvement loops",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"@types/node": "^26.4.0",
|
|
45
45
|
"tsup": "^8.3.5",
|
|
46
46
|
"typescript": "^7.0.2",
|
|
47
|
-
"vitest": "^5.0.0"
|
|
47
|
+
"vitest": "^5.0.0",
|
|
48
|
+
"yaml": "^2.9.1"
|
|
48
49
|
},
|
|
49
50
|
"overrides": {
|
|
50
51
|
"esbuild": "^0.28.2"
|
|
@@ -289,14 +289,15 @@ jobs:
|
|
|
289
289
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
290
290
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
291
291
|
else
|
|
292
|
-
INTERRUPTION_BODY
|
|
293
|
-
|
|
294
|
-
- **
|
|
295
|
-
- **
|
|
296
|
-
- **
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
292
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
293
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
294
|
+
"- **Routine**: \`autowork\`" \
|
|
295
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
296
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
297
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
298
|
+
"" \
|
|
299
|
+
"---" \
|
|
300
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
300
301
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
301
302
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
302
303
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -196,14 +196,15 @@ jobs:
|
|
|
196
196
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
197
197
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
198
198
|
else
|
|
199
|
-
INTERRUPTION_BODY
|
|
200
|
-
|
|
201
|
-
- **
|
|
202
|
-
- **
|
|
203
|
-
- **
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
199
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
200
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
201
|
+
"- **Routine**: \`dependency-check\`" \
|
|
202
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
203
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
204
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
205
|
+
"" \
|
|
206
|
+
"---" \
|
|
207
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
207
208
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
208
209
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
209
210
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -207,14 +207,15 @@ jobs:
|
|
|
207
207
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
208
208
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
209
209
|
else
|
|
210
|
-
INTERRUPTION_BODY
|
|
211
|
-
|
|
212
|
-
- **
|
|
213
|
-
- **
|
|
214
|
-
- **
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
210
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
211
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
212
|
+
"- **Routine**: \`design-review\`" \
|
|
213
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
214
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
215
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
216
|
+
"" \
|
|
217
|
+
"---" \
|
|
218
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
218
219
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
219
220
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
220
221
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -196,14 +196,15 @@ jobs:
|
|
|
196
196
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
197
197
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
198
198
|
else
|
|
199
|
-
INTERRUPTION_BODY
|
|
200
|
-
|
|
201
|
-
- **
|
|
202
|
-
- **
|
|
203
|
-
- **
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
199
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
200
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
201
|
+
"- **Routine**: \`issues-housekeeping\`" \
|
|
202
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
203
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
204
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
205
|
+
"" \
|
|
206
|
+
"---" \
|
|
207
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
207
208
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
208
209
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
209
210
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -218,14 +218,15 @@ jobs:
|
|
|
218
218
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
219
219
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
220
220
|
else
|
|
221
|
-
INTERRUPTION_BODY
|
|
222
|
-
|
|
223
|
-
- **
|
|
224
|
-
- **
|
|
225
|
-
- **
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
221
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
222
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
223
|
+
"- **Routine**: \`optimizer\`" \
|
|
224
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
225
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
226
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
227
|
+
"" \
|
|
228
|
+
"---" \
|
|
229
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
229
230
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
230
231
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
231
232
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -37,8 +37,8 @@ jobs:
|
|
|
37
37
|
- name: Run jonah-fleet sync
|
|
38
38
|
id: sync
|
|
39
39
|
run: |
|
|
40
|
-
npx jonah-fleet sync --check || true
|
|
41
|
-
npx jonah-fleet sync --force
|
|
40
|
+
npx --yes jonah-fleet sync --check || true
|
|
41
|
+
npx --yes jonah-fleet sync --force
|
|
42
42
|
|
|
43
43
|
- name: Check for changes
|
|
44
44
|
id: git-check
|
|
@@ -300,14 +300,15 @@ jobs:
|
|
|
300
300
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
301
301
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
302
302
|
else
|
|
303
|
-
INTERRUPTION_BODY
|
|
304
|
-
|
|
305
|
-
- **
|
|
306
|
-
- **
|
|
307
|
-
- **
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
303
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
304
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
305
|
+
"- **Routine**: \`autowork\`" \
|
|
306
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
307
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
308
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
309
|
+
"" \
|
|
310
|
+
"---" \
|
|
311
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
311
312
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
312
313
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
313
314
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -257,14 +257,15 @@ jobs:
|
|
|
257
257
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
258
258
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
259
259
|
else
|
|
260
|
-
INTERRUPTION_BODY
|
|
261
|
-
|
|
262
|
-
- **
|
|
263
|
-
- **
|
|
264
|
-
- **
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
260
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
261
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
262
|
+
"- **Routine**: \`autowork\`" \
|
|
263
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
264
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
265
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
266
|
+
"" \
|
|
267
|
+
"---" \
|
|
268
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
268
269
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
269
270
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
270
271
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -287,14 +287,15 @@ jobs:
|
|
|
287
287
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
288
288
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
289
289
|
else
|
|
290
|
-
INTERRUPTION_BODY
|
|
291
|
-
|
|
292
|
-
- **
|
|
293
|
-
- **
|
|
294
|
-
- **
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
290
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
291
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
292
|
+
"- **Routine**: \`autowork\`" \
|
|
293
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
294
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
295
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
296
|
+
"" \
|
|
297
|
+
"---" \
|
|
298
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
298
299
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
299
300
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
300
301
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|
|
@@ -364,14 +364,15 @@ jobs:
|
|
|
364
364
|
gh issue close "$ISSUE_NUMBER" --reason completed
|
|
365
365
|
echo "✓ Routine run issue #$ISSUE_NUMBER closed as completed."
|
|
366
366
|
else
|
|
367
|
-
INTERRUPTION_BODY
|
|
368
|
-
|
|
369
|
-
- **
|
|
370
|
-
- **
|
|
371
|
-
- **
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
367
|
+
INTERRUPTION_BODY=$(printf '%s\n' \
|
|
368
|
+
"### ❌ Milestone: Run Interrupted / Failed" \
|
|
369
|
+
"- **Routine**: \`peer-review\`" \
|
|
370
|
+
"- **Status**: Workflow job failed or timed out (\`${JOB_STATUS}\`)" \
|
|
371
|
+
"- **Step**: Actions execution halted before normal completion" \
|
|
372
|
+
"- **Action Log**: [View GitHub Actions Run](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})" \
|
|
373
|
+
"" \
|
|
374
|
+
"---" \
|
|
375
|
+
"_Generated by [Antigravity](${SERVER_URL}/${REPOSITORY}/actions/runs/${RUN_ID})_")
|
|
375
376
|
gh issue comment "$ISSUE_NUMBER" --body "$INTERRUPTION_BODY" || true
|
|
376
377
|
gh issue edit "$ISSUE_NUMBER" --add-label "status:failure,needs-attention" --remove-label "status:running"
|
|
377
378
|
echo "⚠️ Routine run issue #$ISSUE_NUMBER left open for triage (status: $JOB_STATUS)."
|