@alphazede/bearing-lite 0.1.8 → 0.1.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alphazede/bearing-lite",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Skills-first Agent Plugin for planning, routing, bounded execution, and independent review of repository work—without CLI, MCP, server, or hidden runtime state.",
5
5
  "keywords": [
6
6
  "agent-plugins",
package/plugin.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
3
3
  "name": "bearing-lite",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "description": "Skills-first portable plugin that routes repository work through the smallest valid planning stages and agent roles, using project Markdown as the only task record.",
6
6
  "author": {
7
7
  "name": "William Rumph / AlphaZede",
@@ -41,7 +41,9 @@ Return `READY`, `WAITING_ON`, `OWNER_DECISION_REQUIRED`, or `COMPLETE`. Fallback
41
41
  follows primary unavailability; both failing returns to owner.
42
42
  Allow three evidence-changing corrections. `max_assurance_rounds` is 3 per
43
43
  candidate lineage; Direct route checks `assurance_rounds`; Navigator is not required. At the
44
- bound return `OWNER_DECISION_REQUIRED` naming the candidate and count; new candidate lineage resets;
44
+ bound, do not dispatch another review. If a repairable result has a remaining
45
+ `attempts` repair, spend it and close the gate; otherwise return
46
+ `OWNER_DECISION_REQUIRED` naming the candidate and count; new candidate lineage resets;
45
47
  release the checkout lease exactly once on `COMPLETE` or `CANCELLED`. Recover by
46
48
  explicit recorded generation increment that cannot steal a live lease. Process discovery
47
49
  cannot replace the lease. Never implement, self-assure, select models, or publish.
@@ -95,7 +95,10 @@ Field rules:
95
95
  in one candidate lineage against Bearing Lite `max_assurance_rounds`. A repair
96
96
  of the same work stays in the lineage. A new candidate lineage resets the count
97
97
  to 0. The parent coordinator writes the count and checks it before redispatched
98
- assurance.
98
+ assurance. Review and repair rounds are separate budgets, and the cycle ends on
99
+ a repair: `assurance_rounds` counts reviews while `attempts` counts repairs.
100
+ When the last review permits a remaining repair, spend it and close the gate
101
+ without another review.
99
102
 
100
103
  ## Waiting or correcting only
101
104
 
@@ -45,8 +45,10 @@ Wave authority. Coordinates more and implements less than Crewmate.
45
45
  its final wave once; an Expedition wave defers assurance to the Navigator's
46
46
  final Journey boundary. Deterministic checks always run. Before redispatched
47
47
  assurance, honor `max_assurance_rounds` from visible `assurance_rounds`. At
48
- the bound, return `OWNER_DECISION_REQUIRED` with candidate and count; do not
49
- dispatch another repair or review. A new candidate lineage resets the count.
48
+ the bound, do not dispatch another review. If a repairable result has a
49
+ remaining `attempts` repair, spend it and close the gate; otherwise return
50
+ `OWNER_DECISION_REQUIRED` with candidate and count. A new candidate lineage
51
+ resets the count.
50
52
 
51
53
  ## Return and recovery
52
54
 
@@ -41,9 +41,10 @@ Highest execution authority below Router; performs the least hands-on execution.
41
41
  4. Dispatch independent assurance at the confirmed cadence: every slice, every
42
42
  integrated execution/correction round, or only the final integrated outcome.
43
43
  Before redispatched assurance, honor `max_assurance_rounds` from visible
44
- `assurance_rounds`. At the bound, return `OWNER_DECISION_REQUIRED` with
45
- candidate and count; do not dispatch another repair or review. A new
46
- candidate lineage resets the count.
44
+ `assurance_rounds`. At the bound, do not dispatch another review. If a
45
+ repairable result has a remaining `attempts` repair, spend it and close the
46
+ gate; otherwise return `OWNER_DECISION_REQUIRED` with candidate and count.
47
+ A new candidate lineage resets the count.
47
48
  5. Return to the Router after the bounded Expedition outcome; do not silently
48
49
  continue into another Journey or protected action.
49
50
 
@@ -40,4 +40,12 @@ do not follow it with another repair. Coordinators enforce
40
40
  `max_assurance_rounds`. Review again only after candidate-changing repairs
41
41
  when rounds remain.
42
42
 
43
+ The gate cycle terminates on a repair, not on a review: `review → repair →
44
+ review → repair → done`. The final repair within bounds completes the gate.
45
+ Do not require an additional review to confirm the last repair — that would
46
+ make every review demand another repair and every repair another review, an
47
+ unbounded loop. A coordinator that has consumed its review rounds and has an
48
+ `attempts` repair remaining spends it and closes the gate; that is completion,
49
+ not bounds exhaustion.
50
+
43
51
  Never edit, self-review, duplicate general review, or grant publication rights.