@agentskit/harness 0.5.0 → 0.7.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 +17 -0
- package/README.md +2 -1
- package/capabilities/public-surface.json +203 -72
- package/dist/cli.js +1357 -249
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +526 -126
- package/dist/index.js +1503 -375
- package/dist/index.js.map +1 -1
- package/docs/ADR-0028-mcp-adapter-boundary.md +45 -0
- package/docs/LOOP.md +95 -0
- package/docs/MODULE-BOUNDARIES.md +8 -3
- package/loop.config.example.yaml +47 -2
- package/package.json +1 -1
- package/release/manifest.json +1 -1
- package/release/notes.md +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0] - 2026-09-12
|
|
4
|
+
|
|
5
|
+
- Dynamic model routing: `models.routing.mode` (`tiers` | `hybrid` | `dynamic` | `catalog`). Default `tiers` preserves 0.6 behaviour.
|
|
6
|
+
- `hybrid`/`dynamic` rank available providers by **remaining Orca usage** (most-constrained window) so work follows quota instead of fixed YAML order.
|
|
7
|
+
- Living model catalog (`catalog` mode): CLI discovery (`grok models`), builtin catalog, optional Artificial Analysis cache (`ARTIFICIAL_ANALYSIS_API_KEY`), role quality bands (`frontier`/`balanced`/`fast`).
|
|
8
|
+
- Doctor reports remaining usage, why a model was chosen, and Orca integrations missing from `models.providers`.
|
|
9
|
+
|
|
10
|
+
## [0.6.0] - 2026-09-12
|
|
11
|
+
|
|
12
|
+
- Loop **approved memory** for token reduction and continuous improvement: file store under `stateDir`, recall into contract/brief with `preferOverDocBridge` + issue-char shrink, human-only `ak-harness loop learning promote`, `memory.recalled` events.
|
|
13
|
+
- Doctor: Doc Bridge index/freshness checks; review CLI PATH/`--help` probe (warning when missing).
|
|
14
|
+
- Worker brief lists Doc Bridge `playbook` / `for-agents` guidance paths (`contract.briefScopes`).
|
|
15
|
+
- Optional deliver smoke gate (`delivery.smoke.verify-argv`) before auto-merge.
|
|
16
|
+
- Optional `agents.registry.yaml` role overlay; RAG `ContextProvider` via argv (no hard dep); MCP tool bridge behind policy ([ADR-0028](docs/ADR-0028-mcp-adapter-boundary.md), not loop-wired).
|
|
17
|
+
- Optional weekly Linear retro automation (`schedule.retro` + `schedule.retroIssue` → `loop stage retro`).
|
|
18
|
+
- Config knobs default off / fail-soft so existing `loop.config.yaml` behaviour is unchanged.
|
|
19
|
+
|
|
3
20
|
## [0.5.0] - 2026-09-11
|
|
4
21
|
|
|
5
22
|
- Added the keep-pushing SDLC loop foundation (`ak-harness loop validate|doctor`): `loop.config.yaml` schema (zod), provider detection with Orca usage/rate-limit awareness and cooldowns, role-based tiered model routing, machine slot assessment, Orca CLI and Linear-via-Orca adapters, and the loop doctor report.
|
package/README.md
CHANGED
|
@@ -13,7 +13,8 @@ Portable, evidence-backed development protocol for coding agents. The harness fr
|
|
|
13
13
|
`ak-harness loop …` drains one person's Linear queue through Orca worktrees 24/7 — tiered model routing with
|
|
14
14
|
usage-aware fallback, orchestrator-frozen contracts, adversarial review, squash-merge, and one deduplicated
|
|
15
15
|
escalation when a ticket cannot be verified. Everything project-specific lives in `loop.config.yaml`
|
|
16
|
-
(start from [`loop.config.example.yaml`](loop.config.example.yaml)). Guide: [`docs/LOOP.md`](docs/LOOP.md)
|
|
16
|
+
(start from [`loop.config.example.yaml`](loop.config.example.yaml)). Guide: [`docs/LOOP.md`](docs/LOOP.md)
|
|
17
|
+
(setup, Orca automations, Doc Bridge + `agentskit-review` wiring, AgentsKit ecosystem map, SDLC extension ideas) ·
|
|
17
18
|
decision record: [`docs/ADR-0027-keep-pushing-loop.md`](docs/ADR-0027-keep-pushing-loop.md).
|
|
18
19
|
|
|
19
20
|
## Install
|