@agentskit/harness 0.10.0 → 0.11.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 +12 -0
- package/README.md +1 -1
- package/capabilities/public-surface.json +105 -84
- package/dist/cli.js +353 -64
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +192 -56
- package/dist/index.js +325 -76
- package/dist/index.js.map +1 -1
- package/docs/ADR-0003-doc-bridge-context-binding.md +10 -3
- package/docs/ADR-0031-loop-observability.md +36 -0
- package/docs/LOOP.md +7 -0
- package/docs/MODULE-BOUNDARIES.md +1 -0
- package/loop.config.example.yaml +1 -1
- package/package.json +2 -2
- package/release/manifest.json +2 -2
- package/release/notes.md +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.0] - 2026-09-13
|
|
4
|
+
|
|
5
|
+
- **Read-only loop observability**: added `ak-harness loop observe` plus the public `runObservability` and
|
|
6
|
+
`assessObservability` APIs. The report combines doctor/debrief/event-log data with Orca terminal/worktree
|
|
7
|
+
inspection and exposes queue, delivery, machine, provider, memory, cache, review, fix-round, lead-time, and
|
|
8
|
+
observed-token metrics.
|
|
9
|
+
- **Deterministic anomaly detection**: flags connected terminals without output, active claims without
|
|
10
|
+
`delivery.json`, finalized dirty worktrees, ready queues with idle slots but no recent dispatch, and stalled
|
|
11
|
+
in-flight workers/reviews. `--precheck` returns scheduler-friendly exit codes without mutating state.
|
|
12
|
+
- **Operator documentation and coverage**: added ADR-0031, module-boundary documentation, and focused regression
|
|
13
|
+
tests for the observability rules.
|
|
14
|
+
|
|
3
15
|
## [0.10.0] - 2026-09-12
|
|
4
16
|
|
|
5
17
|
Closes the gaps found comparing this harness against LangChain's "custom agent harness" article. The structural
|
package/README.md
CHANGED
|
@@ -605,7 +605,7 @@ Releases are published by `.github/workflows/release-harness.yml` after a merge
|
|
|
605
605
|
or require an `NPM_TOKEN`. Configure the npm trusted publisher once for
|
|
606
606
|
`AgentsKit-io/harness`, workflow `release-harness.yml`, and package
|
|
607
607
|
`@agentskit/harness`; version changes remain the release trigger.
|
|
608
|
-
The
|
|
608
|
+
The current release candidate checklist and explicit blockers live in
|
|
609
609
|
[`release/manifest.json`](release/manifest.json) and
|
|
610
610
|
[`release/notes.md`](release/notes.md).
|
|
611
611
|
|