@alphazede/bearing-lite 0.1.11 → 0.2.1
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/CONTRIBUTING.md +25 -0
- package/README.md +46 -14
- package/hooks/assurance-budget.cjs +149 -0
- package/hooks/closeout.cjs +16 -0
- package/hooks/com.anthropic.claude-code/mapping.md +72 -0
- package/hooks/com.cursor/hooks.json +11 -1
- package/hooks/hooks.json +45 -1
- package/hooks/plan-package.cjs +177 -0
- package/hooks/planning-review.cjs +9 -14
- package/hooks/policy.cjs +45 -0
- package/hooks/reconcile.cjs +145 -0
- package/hooks/te-capability.cjs +137 -0
- package/hooks/te-host.cjs +644 -0
- package/hooks/transition-order.cjs +32 -2
- package/lineups.json +1 -0
- package/package.json +4 -2
- package/plugin.json +1 -1
- package/schemas/authority.schema.json +75 -0
- package/schemas/event.schema.json +59 -0
- package/schemas/implementation.schema.json +150 -0
- package/schemas/journey.schema.json +101 -0
- package/schemas/lineups.schema.json +145 -0
- package/schemas/seit.schema.json +108 -0
- package/skills/bearing-lite/SKILL.md +20 -21
- package/skills/bearing-lite/references/assurance-policy.md +66 -0
- package/skills/bearing-lite/references/lineups.md +107 -0
- package/skills/bearing-lite/references/peer-synthesis.md +7 -3
- package/skills/bearing-lite/references/role-routing.mmd +2 -2
- package/skills/bearing-lite/references/task-state.md +4 -4
- package/skills/bearing-lite/references/task-state.mmd +1 -1
- package/skills/bearing-lite/templates/task.md +20 -11
- package/skills/crewmate/SKILL.md +3 -0
- package/skills/explorer/SKILL.md +7 -6
- package/skills/gather-supplies/SKILL.md +7 -1
- package/skills/integration-engineer/SKILL.md +41 -0
- package/skills/light-implementer/SKILL.md +53 -0
- package/skills/map-the-route/SKILL.md +9 -7
- package/skills/map-the-route/references/artifact-grammar.md +67 -32
- package/skills/park-ranger/SKILL.md +14 -9
- package/skills/plan-integrator/SKILL.md +46 -0
- package/skills/requirements-engineer/SKILL.md +57 -0
- package/skills/scribe/SKILL.md +34 -0
- package/skills/set-bearings/SKILL.md +16 -7
- package/skills/set-bearings/templates/workspace.md +28 -0
- package/skills/surveyor/SKILL.md +15 -9
- package/skills/systems-modeler/SKILL.md +35 -0
- package/skills/test-engineer/SKILL.md +48 -0
- package/skills/validator/SKILL.md +20 -27
- package/skills/validator/references/grading-rubric.md +5 -4
- package/skills/bearing-lite/templates/default-role-lineup.md +0 -26
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Bearing Lite global defaults
|
|
2
|
-
|
|
3
|
-
Store the user-owned copy at
|
|
4
|
-
`~/.agents/bearing-lite/default-role-lineup.md`. The Router displays it before
|
|
5
|
-
implementation and asks whether it is good for the current Journey. Never fill
|
|
6
|
-
agent, model, or reasoning values on the user's behalf.
|
|
7
|
-
|
|
8
|
-
```markdown
|
|
9
|
-
review_cadence: at-end
|
|
10
|
-
|
|
11
|
-
| Role | Primary agent/harness | Primary model | Primary reasoning | Fallback agent/harness | Fallback model | Fallback reasoning |
|
|
12
|
-
| --- | --- | --- | --- | --- | --- | --- |
|
|
13
|
-
| Router | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
14
|
-
| Explorer | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
15
|
-
| Crewmate | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
16
|
-
| Validator | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
17
|
-
| Park Ranger | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
18
|
-
| Surveyor | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET | OWNER_TO_SET |
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Navigator is not a normal lineup role. Existing plans that still assign it use
|
|
22
|
-
the Navigator compatibility diagnostic; treat the assignment as unused.
|
|
23
|
-
|
|
24
|
-
Journey artifacts copy the confirmed values and mark named instances active,
|
|
25
|
-
standby, or unused. Only verified primary unavailability activates its approved
|
|
26
|
-
fallback. If both are unavailable, return `OWNER_DECISION_REQUIRED`.
|