@alphazede/bearing-lite 0.1.0 → 0.1.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/README.md +70 -60
- package/hooks/activation.cjs +2 -1
- package/hooks/com.anthropic.claude-code/host.cjs +401 -0
- package/hooks/com.anthropic.claude-code/mapping.md +63 -0
- package/hooks/com.cursor/hooks.json +15 -0
- package/hooks/hooks.json +35 -0
- package/package.json +7 -4
- package/plugin.json +34 -2
- package/skills/bearing-lite/SKILL.md +45 -33
- package/skills/bearing-lite/agents/openai.yaml +7 -0
- package/skills/bearing-lite/assets/role-routing.png +0 -0
- package/skills/bearing-lite/references/peer-synthesis.md +21 -0
- package/skills/bearing-lite/references/role-routing.mmd +21 -28
- package/skills/bearing-lite/templates/default-role-lineup.md +26 -0
- package/skills/bearing-lite/templates/task.md +17 -0
- package/skills/crewmate/SKILL.md +26 -23
- package/skills/explorer/SKILL.md +28 -24
- package/skills/gather-supplies/SKILL.md +31 -19
- package/skills/map-the-route/SKILL.md +36 -26
- package/skills/map-the-route/references/artifact-grammar.md +10 -10
- package/skills/navigator/SKILL.md +28 -30
- package/skills/park-ranger/SKILL.md +25 -24
- package/skills/repository-fit/SKILL.md +25 -19
- package/skills/set-bearings/SKILL.md +25 -19
- package/skills/sub-explorer/SKILL.md +26 -24
- package/skills/surveyor/SKILL.md +26 -24
- package/skills/trail-boss/SKILL.md +26 -24
- package/skills/validator/SKILL.md +26 -27
- package/guide/migration.md +0 -168
- package/skills/delegate-authority/SKILL.md +0 -38
|
@@ -1,33 +1,43 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: map-the-route
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
models, self-
|
|
4
|
+
Create or resume Bearing's topic-specific specification, design, SEIT,
|
|
5
|
+
implementation graph, and self-contained review HTML after decisions are
|
|
6
|
+
resolved. Use for Map the Route or missing planning artifacts. Do not use to
|
|
7
|
+
implement, select agents/models, self-approve, or bypass owner review.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
10
|
# Map the Route
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
##
|
|
15
|
-
|
|
16
|
-
- **
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
3.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
12
|
+
Fresh planning node. The Router remains the plan-state writer and user contact.
|
|
13
|
+
|
|
14
|
+
## Inputs and match
|
|
15
|
+
|
|
16
|
+
- **Inputs:** confirmed decisions, repository map, artifact status, requirements,
|
|
17
|
+
owner-selected lineup/cadence, repository rules, and return schema.
|
|
18
|
+
- **Match:** first specification gate or post-approval planning package is missing.
|
|
19
|
+
- **Non-match:** executable tasks already map to current approved artifacts.
|
|
20
|
+
|
|
21
|
+
## Algorithm
|
|
22
|
+
|
|
23
|
+
1. Derive `<journey-topic>-spec.md` from the confirmed title and return the name
|
|
24
|
+
for owner verification before first write. Never require generic `plan-spec.md`.
|
|
25
|
+
2. Write the testable specification and self-contained offline `review.html`.
|
|
26
|
+
Open the exact HTML in the user's browser and verify the launcher/process.
|
|
27
|
+
3. After specification approval, select and record suitable design lenses
|
|
28
|
+
without asking unless owner intent changes. Write `design.md`, then `seit.md`;
|
|
29
|
+
draft `implementation.md` only after both prospective gates are complete.
|
|
30
|
+
4. Give every slice stable requirement/design/SEIT IDs, dependencies, exact
|
|
31
|
+
write set, authority, fresh-session role, evidence, recovery, and stop rule.
|
|
32
|
+
5. Copy the confirmed lineup and review cadence into implementation and HTML.
|
|
33
|
+
Show named active, standby, and unused role instances.
|
|
34
|
+
6. Generate the final HTML with deep zoomable diagrams for architecture, state,
|
|
35
|
+
interactions, failures, dependencies, and ownership. Put the recommended
|
|
36
|
+
Journey path in Implementation, open it, and request owner approval.
|
|
37
|
+
|
|
38
|
+
## Return and recovery
|
|
39
|
+
|
|
40
|
+
Return `SPEC_REVIEW_READY`, `PLAN_REVIEW_READY`, `NEEDS_OWNER_DECISION`, or
|
|
41
|
+
`VALIDATION_FAILED` with artifact paths, evidence, blocker, and next action.
|
|
42
|
+
After final approval, `review.html` is authoritative. At most three
|
|
43
|
+
evidence-changing correction rounds; never invent approval or implement.
|
|
@@ -10,13 +10,13 @@ Bearing rejects deviations with typed findings.
|
|
|
10
10
|
2. Requirement IDs use `AC-*` or `RISK-*`; design IDs use `DES-*` or
|
|
11
11
|
`CONTRACT-*`; SEIT rows use `SEIT-*`; commands use `CMD-*` or `PROC-*`.
|
|
12
12
|
Suffixes contain only uppercase letters, digits, dots, or hyphens.
|
|
13
|
-
3.
|
|
13
|
+
3. `<journey-topic>-spec.md` declares requirements, Entry criteria, Exit criteria,
|
|
14
14
|
Rollback or repair, and Accountable controller. `design.md` declares design
|
|
15
15
|
IDs. `seit.md` declares SEIT rows and commands.
|
|
16
16
|
4. Preserve stable IDs. Every implementation reference resolves to a declared
|
|
17
17
|
requirement, design contract, SEIT row, and command.
|
|
18
|
-
5. The
|
|
19
|
-
|
|
18
|
+
5. The owner-confirmed lineup and review cadence supply named active, standby,
|
|
19
|
+
and unused instances. Missing values block implementation drafting.
|
|
20
20
|
|
|
21
21
|
## SEIT rules
|
|
22
22
|
|
|
@@ -38,8 +38,8 @@ Bearing rejects deviations with typed findings.
|
|
|
38
38
|
`### <id> execution manifest`. IDs are a letter-run plus an integer or
|
|
39
39
|
dotted integer. Every slice has exactly one matching manifest.
|
|
40
40
|
2. Every slice declares Goal, Requirement IDs, Design IDs, SEIT proof rows,
|
|
41
|
-
Type, Design lenses,
|
|
42
|
-
level, and
|
|
41
|
+
Type, Design lenses, named implementation role, owner-selected model route,
|
|
42
|
+
reasoning level, and review path. Goals are at most 512 characters.
|
|
43
43
|
3. Every manifest declares Write set, Command IDs, Stop condition, and Human
|
|
44
44
|
decision. Optional fields are Shared interfaces (`path#Symbol`), Integration
|
|
45
45
|
boundary, and Parallel safe (`yes` or `no` plus reason).
|
|
@@ -76,8 +76,8 @@ placeholders, bare negations, or deferral language.
|
|
|
76
76
|
|
|
77
77
|
## Completion boundary
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
79
|
+
The first review gate needs the topic-specific specification and `review.html`.
|
|
80
|
+
After approval, complete-route work remains incomplete until that specification,
|
|
81
|
+
`design.md`, `seit.md`, and `implementation.md` are current. Bearing then
|
|
82
|
+
generates and opens the complete `review.html`; it becomes authoritative only
|
|
83
|
+
after owner approval.
|
|
@@ -1,44 +1,42 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: navigator
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
identity, or independent assurance of own corrections.
|
|
4
|
+
Sequence dependency-connected Expedition waves, fresh-session coordinators,
|
|
5
|
+
and integration boundaries. Use for Navigator, Expedition, or multi-wave
|
|
6
|
+
execution control. Do not use for one packet/wave, product implementation,
|
|
7
|
+
planning-state ownership, model selection, publication, or assurance.
|
|
9
8
|
---
|
|
10
9
|
|
|
11
10
|
# Navigator
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
Highest execution authority below Router; performs the least hands-on execution.
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
- **Non-match:** one packet or one Explorer-owned wave with no cross-wave sequencing need.
|
|
14
|
+
## Inputs and match
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
- **Inputs:** approved artifacts, wave graph, dependencies, repository scope,
|
|
17
|
+
authority, lineup, review cadence, acceptance, and return schema.
|
|
18
|
+
- **Match:** an Expedition has multiple dependency-connected waves or phases.
|
|
19
|
+
- **Non-match:** one Explorer wave or Crewmate packet is sufficient.
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
## Algorithm
|
|
21
22
|
|
|
22
|
-
|
|
23
|
+
1. Start fresh and reread the approved specification, design, SEIT,
|
|
24
|
+
implementation, and review baseline. Verify snapshot lineup and cadence.
|
|
25
|
+
2. Sequence fresh Explorer sessions. Add Trail Boss only for simultaneous waves
|
|
26
|
+
with shared-interface or dependency conflicts.
|
|
27
|
+
3. Integrate typed wave returns and correct only sequencing/coverage gaps inside
|
|
28
|
+
approved authority; never perform implementation.
|
|
29
|
+
4. Dispatch independent assurance at the confirmed cadence: every slice, every
|
|
30
|
+
integrated execution/correction round, or only the final integrated outcome.
|
|
31
|
+
5. Return to the Router after the bounded Expedition outcome; do not silently
|
|
32
|
+
continue into another Journey or protected action.
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
## Return and recovery
|
|
25
35
|
|
|
26
|
-
|
|
36
|
+
Return `READY`, `REROUTED`, `WAITING_ON`, or `OWNER_DECISION_REQUIRED` with
|
|
37
|
+
plan ref, role, subject, dependencies, scope, authority, evidence, blocker, next
|
|
38
|
+
action, and receiver. Attempts 1–3 require new evidence or strategy; a material
|
|
39
|
+
design, intent, scope, security, destructive, remote, or publication change
|
|
40
|
+
returns to Owner Authority.
|
|
27
41
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
Before any `OWNER_DECISION_REQUIRED` return, seek and attempt a safer in-authority workaround when one exists. Ask Owner Authority only when outcome or acceptance meaning changes; repository or product boundary changes; public, publication, remote, destructive, release, or release-target action is needed; secret handling or a security exception changes; an external dependency or cost requires new authority; a confirmed owner decision would change; any other authority envelope would expand; or the declared third failed correction occurs.
|
|
31
|
-
|
|
32
|
-
## Return
|
|
33
|
-
|
|
34
|
-
Handoff fields: `plan_ref`, `role`, `subject`, `depends_on`, `scope`, `authority`, `outcome`, `evidence`, `blocker`, `next_action`, `receiving_role`.
|
|
35
|
-
|
|
36
|
-
Outcomes: `READY`, `REROUTED`, `WAITING_ON`, `OWNER_DECISION_REQUIRED`. Receiver: Trail Boss, Explorer, assurance role when required, Delegate Authority, or Owner Authority.
|
|
37
|
-
|
|
38
|
-
## Independence
|
|
39
|
-
|
|
40
|
-
Writes only coordinator sequencing and task blocks it owns. Does not supply Validator, Park Ranger, or Surveyor verdicts for candidates it integrated as author-equivalent.
|
|
41
|
-
|
|
42
|
-
## Correction
|
|
43
|
-
|
|
44
|
-
Attempts 1–2 need new hypothesis and evidence. Third failure or out-of-authority change → `OWNER_DECISION_REQUIRED`.
|
|
42
|
+
Never implement, self-assure, select models, or mutate remotes.
|
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: park-ranger
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
sufficiency scoring, or user-facing acceptance.
|
|
4
|
+
Independently review one exact stable candidate for introduced actionable
|
|
5
|
+
defects in a fresh session at the selected review boundary. Use for Park
|
|
6
|
+
Ranger, code review, or defect adjudication. Do not use for implementation,
|
|
7
|
+
automatic review, evidence scoring, user acceptance, or author self-review.
|
|
9
8
|
---
|
|
10
9
|
|
|
11
10
|
# Park Ranger
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
Independent defect assurance, outside the mutation-authority ladder.
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
- **Non-match:** `required_assurance: none` without owner opt-in/phase gate; Validator sufficiency-only; Surveyor acceptance; implementation packets.
|
|
14
|
+
## Inputs and match
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
- **Inputs:** approved baseline, exact candidate ref and diff, author identity,
|
|
17
|
+
relevant evidence, cadence boundary, review focus, and return schema.
|
|
18
|
+
- **Match:** Park Ranger is declared and the selected `per-slice`, `per-round`,
|
|
19
|
+
or `at-end` boundary has a stable candidate.
|
|
20
|
+
- **Non-match:** boundary is not reached, candidate is unstable/unchanged, or
|
|
21
|
+
Validator/Surveyor work is requested.
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
## Algorithm
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
1. Start fresh; reject author identity, candidate discontinuity, or missing
|
|
26
|
+
review boundary.
|
|
27
|
+
2. Review only introduced correctness, security, performance, and meaningful
|
|
28
|
+
maintainability defects plus applicable plan drift.
|
|
29
|
+
3. Prove reachability and affected code, assign P0–P3, and cite precise changed
|
|
30
|
+
locations. Avoid speculation and nits.
|
|
31
|
+
4. Return a patch verdict and repair targets. Never implement a finding.
|
|
23
32
|
|
|
24
|
-
|
|
33
|
+
## Return and recovery
|
|
25
34
|
|
|
26
|
-
|
|
35
|
+
Return `BLOCK`, `REPAIR_REQUIRED`, `ACCEPT_WITH_FINDINGS`, or `ACCEPT` with
|
|
36
|
+
candidate ref, findings, evidence, verdict, blocker, next action, and receiver.
|
|
37
|
+
Review again only after candidate-changing repairs, at most three rounds.
|
|
27
38
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
Outcomes: `BLOCK`, `REPAIR_REQUIRED`, `ACCEPT_WITH_FINDINGS`, `ACCEPT`. Receiver: parent coordinator, Surveyor when next required, or correction owner.
|
|
31
|
-
|
|
32
|
-
## Independence
|
|
33
|
-
|
|
34
|
-
Fresh non-author only. Never automatic per slice. Candidate authors never supply this verdict.
|
|
35
|
-
|
|
36
|
-
## Correction
|
|
37
|
-
|
|
38
|
-
Returns repair targets only. Does not edit the candidate or re-review without new evidence.
|
|
39
|
+
Never edit, self-review, duplicate general review, or grant publication rights.
|
|
@@ -1,33 +1,39 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: repository-fit
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
is absent or ambiguous. Use for
|
|
6
|
-
|
|
7
|
-
edits, routing
|
|
4
|
+
Verify and propose one target repository and plan directory when repository
|
|
5
|
+
identity is absent or ambiguous. Use for Repository Fit before Set Bearings.
|
|
6
|
+
Do not use after owner-confirmed fit, for parent-wide exploration, planning
|
|
7
|
+
decisions, product edits, role routing, or publication.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
10
|
# Repository Fit
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Fresh planning node. It returns evidence; the Router records the decision.
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Inputs and match
|
|
15
15
|
|
|
16
|
-
- **
|
|
17
|
-
|
|
16
|
+
- **Inputs:** Journey goal, authorized candidate roots, visible prior decisions,
|
|
17
|
+
repository rules, and discovery limits.
|
|
18
|
+
- **Match:** target root, repository identity, or plan location is unresolved.
|
|
19
|
+
- **Non-match:** the owner already named and confirmed the repository and plan.
|
|
18
20
|
|
|
19
|
-
##
|
|
21
|
+
## Algorithm
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
1. Inspect the selected root only. Open one additional root only when authorized.
|
|
24
|
+
2. Cap discovery at depth 4 and 200 paths; prefer Git identity, manifests,
|
|
25
|
+
top-level instructions, and current plan conventions.
|
|
26
|
+
3. Reject nested-repository confusion, missing Git identity, or conflicting
|
|
27
|
+
owner evidence with a typed finding.
|
|
28
|
+
4. Propose exactly one repository and one plan-directory assumption with path
|
|
29
|
+
evidence and a short reason.
|
|
30
|
+
5. Ask one owner confirmation question. A recommendation is not confirmation.
|
|
22
31
|
|
|
23
|
-
##
|
|
32
|
+
## Return and recovery
|
|
24
33
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
4. Ask one concise owner confirmation question. Do not treat a recommendation as approval.
|
|
29
|
-
5. Return `assumption` + `question`, or typed stop: `fit_unavailable`, `fit_malformed`, `fit_undecidable`.
|
|
34
|
+
Return `FIT_PROPOSED`, `FIT_CONFIRMED`, `FIT_UNAVAILABLE`, `FIT_MALFORMED`, or
|
|
35
|
+
`FIT_UNDECIDABLE` with root, plan directory, evidence, blocker, and next action.
|
|
36
|
+
Retry only from new evidence, at most three attempts.
|
|
30
37
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Write files, walk parents without authority, rank alternatives after undecidable, or advance into Set Bearings.
|
|
38
|
+
Never write files, walk unapproved parents, rank endless alternatives, or
|
|
39
|
+
advance the Journey itself.
|
|
@@ -1,33 +1,39 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: set-bearings
|
|
3
3
|
description: >
|
|
4
|
-
Create or resume the
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
Create or resume the visible Journey workspace and bounded repository map
|
|
5
|
+
after Repository Fit is confirmed. Use for Set Bearings or stale project
|
|
6
|
+
context. Do not use before fit, for owner decisions, design, implementation,
|
|
7
|
+
hidden state, or deleting historical plans.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
10
|
# Set Bearings
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Fresh planning node. The Router announces `Setting Our Bearings in <repo>.`
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Inputs and match
|
|
15
15
|
|
|
16
|
-
- **
|
|
17
|
-
|
|
16
|
+
- **Inputs:** confirmed repository root, owner-confirmed plan directory, Journey
|
|
17
|
+
title, visible existing artifacts, repository rules, and return schema.
|
|
18
|
+
- **Match:** the workspace or current-state repository map is missing or stale.
|
|
19
|
+
- **Non-match:** both are current and usable by Gather Supplies or Map the Route.
|
|
18
20
|
|
|
19
|
-
##
|
|
21
|
+
## Algorithm
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
1. Re-read the exact confirmed root and plan directory; never derive a different
|
|
24
|
+
root, slug, suffix, or sibling workspace.
|
|
25
|
+
2. Preserve every existing artifact and unrelated edit. Resume rather than
|
|
26
|
+
replace an existing Journey.
|
|
27
|
+
3. Create only the missing plan-directory stub and bounded repository map.
|
|
28
|
+
4. Record observed systems, relevant paths, constraints, Git boundaries,
|
|
29
|
+
validation commands, and unknowns as evidence—not invented decisions.
|
|
30
|
+
5. Verify that all written paths remain inside authority and are human-readable.
|
|
22
31
|
|
|
23
|
-
##
|
|
32
|
+
## Return and recovery
|
|
24
33
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
4. Leave risk-profile content to Gather Supplies / owner; do not invent it.
|
|
29
|
-
5. Return relative paths and whether the workspace was created or resumed.
|
|
34
|
+
Return `WORKSPACE_READY`, `WORKSPACE_RESUMED`, `NEEDS_EVIDENCE`, or `BLOCKED`
|
|
35
|
+
with paths, map freshness, evidence, blocker, and next planning stage. Retry only
|
|
36
|
+
from corrected evidence, at most three attempts.
|
|
30
37
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Ask planning questions, design, implement, edit product code, or delete plans or hidden runtime state.
|
|
38
|
+
Never ask planning questions, write risk choices, design, implement, create
|
|
39
|
+
hidden runtime state, or delete plan content.
|
|
@@ -1,37 +1,39 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sub-explorer
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
Coordinate at least two proven-independent lanes inside one Explorer wave in
|
|
5
|
+
a fresh session. Use for Sub-Explorer or necessary in-wave lane coordination.
|
|
6
|
+
Do not use for one lane, nested Sub-Explorers, implementation, cross-wave
|
|
7
|
+
control, planning, or assurance.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
-
# Sub-
|
|
10
|
+
# Sub-Explorer
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Second mutation-authority level; coordinates more and implements less than a
|
|
13
|
+
Crewmate. Maximum one Sub-Explorer level.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
- **Non-match:** single lane; nested Sub-explorer requests; Trail Boss multi-wave work; direct Crewmate packets.
|
|
15
|
+
## Inputs and match
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
- **Inputs:** parent wave, lane boundaries, packet specs, dependencies,
|
|
18
|
+
authority, lineup identities, cadence, and return schema.
|
|
19
|
+
- **Match:** two or more disjoint lanes materially reduce context or conflict.
|
|
20
|
+
- **Non-match:** direct packets suffice, independence is unproven, or another
|
|
21
|
+
Sub-Explorer level is requested.
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
## Algorithm
|
|
20
24
|
|
|
21
|
-
|
|
25
|
+
1. Start fresh; verify parent authority, lane disjointness, dependencies, and
|
|
26
|
+
approved primary/fallback identity for each node.
|
|
27
|
+
2. Dispatch fresh Crewmate sessions with only their bounded packet and evidence.
|
|
28
|
+
3. Track returns by packet ID; preserve foreign changes and never write a packet.
|
|
29
|
+
4. Reconcile lane evidence and return conflicts to the Explorer.
|
|
30
|
+
5. Request assurance only at the recorded cadence boundary and only through the
|
|
31
|
+
parent coordinator.
|
|
22
32
|
|
|
23
|
-
|
|
33
|
+
## Return and recovery
|
|
24
34
|
|
|
25
|
-
|
|
35
|
+
Return `READY`, `REROUTED`, `WAITING_ON`, or `OWNER_DECISION_REQUIRED` with
|
|
36
|
+
plan ref, role, subject, dependencies, scope, authority, evidence, blocker, next
|
|
37
|
+
action, and receiver. Allow three evidence-changing corrections per lane.
|
|
26
38
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
Outcomes: `READY`, `REROUTED`, `WAITING_ON`, `OWNER_DECISION_REQUIRED`. Receiver: Crewmate or Explorer.
|
|
30
|
-
|
|
31
|
-
## Independence
|
|
32
|
-
|
|
33
|
-
Dormant unless independence is proven. Does not substitute for Explorer, Trail Boss, or Navigator.
|
|
34
|
-
|
|
35
|
-
## Correction
|
|
36
|
-
|
|
37
|
-
Return lane conflicts to Explorer. Out-of-wave expansion escalates to parent coordinator.
|
|
39
|
+
Never implement, add nesting, expand the wave, or provide assurance.
|
package/skills/surveyor/SKILL.md
CHANGED
|
@@ -1,38 +1,40 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: surveyor
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
introduced-defect triage as Park Ranger, or owner-only publication approval.
|
|
4
|
+
Independently compare one stable integrated candidate with the approved
|
|
5
|
+
user-facing outcome in a fresh session at the selected acceptance boundary.
|
|
6
|
+
Use for Surveyor or outcome acceptance. Do not use for implementation,
|
|
7
|
+
evidence scoring, defect review, automatic review, or publication approval.
|
|
9
8
|
---
|
|
10
9
|
|
|
11
10
|
# Surveyor
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
Independent outcome assurance, outside the mutation-authority ladder.
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
- **Non-match:** single unfinished packet; Validator-only sufficiency; Park Ranger defect pass; owner publication decisions reserved to Owner Authority.
|
|
14
|
+
## Inputs and match
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
- **Inputs:** approved specification/review baseline, exact integrated candidate,
|
|
17
|
+
author identities, user-facing evidence, cadence boundary, prior required
|
|
18
|
+
assurance, and return schema.
|
|
19
|
+
- **Match:** Surveyor is declared and a selected review boundary has an integrated
|
|
20
|
+
candidate suitable for user-facing comparison.
|
|
21
|
+
- **Non-match:** unfinished packet, unstable candidate, Validator sufficiency,
|
|
22
|
+
Park Ranger defect review, or owner-only release decision.
|
|
19
23
|
|
|
20
|
-
|
|
24
|
+
## Algorithm
|
|
21
25
|
|
|
22
|
-
|
|
26
|
+
1. Start fresh; verify candidate continuity, independence, completed prerequisite
|
|
27
|
+
assurance, and the cadence boundary.
|
|
28
|
+
2. Exercise or inspect every observable approved outcome, including failure and
|
|
29
|
+
recovery behavior relevant to the Journey.
|
|
30
|
+
3. Map each gap to an exact requirement and evidence location. Separate observed
|
|
31
|
+
behavior from inference.
|
|
32
|
+
4. Return acceptance or gaps without repairing the candidate.
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
## Return and recovery
|
|
25
35
|
|
|
26
|
-
|
|
36
|
+
Return `ACCEPT`, `GAPS`, or `OWNER_DECISION_REQUIRED` with candidate ref,
|
|
37
|
+
requirement coverage, evidence, gaps, blocker, next action, and receiver.
|
|
38
|
+
Reassess only a new integrated candidate, at most three rounds.
|
|
27
39
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
Outcomes: `ACCEPT`, `GAPS`, `OWNER_DECISION_REQUIRED`. Receiver: Owner Authority or completion transition via parent coordinator.
|
|
31
|
-
|
|
32
|
-
## Independence
|
|
33
|
-
|
|
34
|
-
Fresh non-author only. Distinct from Validator sufficiency and Park Ranger defect review. Authors never self-accept.
|
|
35
|
-
|
|
36
|
-
## Correction
|
|
37
|
-
|
|
38
|
-
Returns gaps only. Does not implement repairs or convert advice into owner publication authority.
|
|
40
|
+
Never implement, substitute for another assurance role, or approve publication.
|
|
@@ -1,38 +1,40 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: trail-boss
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
or assurance verdicts.
|
|
4
|
+
Coordinate concurrent Explorer waves that share interfaces, dependencies, or
|
|
5
|
+
integration conflicts in a fresh session. Use for Trail Boss, cross-wave
|
|
6
|
+
readiness, or integration ordering. Do not use for one wave, packet work,
|
|
7
|
+
planning, model selection, review, grading, or assurance.
|
|
9
8
|
---
|
|
10
9
|
|
|
11
10
|
# Trail Boss
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
Cross-wave authority. Coordinates more and implements less than Explorer.
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
- **Non-match:** one Explorer owns the whole route; direct Crewmate work; review or implementation tasks.
|
|
14
|
+
## Inputs and match
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
- **Inputs:** approved wave graph, lane status, shared interfaces, dependencies,
|
|
17
|
+
authority, lineup, cadence, budgets, and return schema.
|
|
18
|
+
- **Match:** at least two active Explorer waves require conflict or integration
|
|
19
|
+
control.
|
|
20
|
+
- **Non-match:** one Explorer can sequence all work or the request is execution
|
|
21
|
+
or assurance.
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
## Algorithm
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
1. Start fresh; verify every wave owner, dependency edge, shared interface, and
|
|
26
|
+
candidate boundary.
|
|
27
|
+
2. Schedule readiness and integration order. Serialize conflicting writes;
|
|
28
|
+
allow parallel waves only when independence is proven.
|
|
29
|
+
3. Dispatch fresh Explorer sessions with bounded wave packets and named lineup.
|
|
30
|
+
4. Reconcile typed returns and surface interface drift without repairing it.
|
|
31
|
+
5. Tell the Navigator when the cadence boundary is ready for assurance; never
|
|
32
|
+
create an extra review round.
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
## Return and recovery
|
|
25
35
|
|
|
26
|
-
|
|
36
|
+
Return `READY`, `REROUTED`, `WAITING_ON`, or `OWNER_DECISION_REQUIRED` with
|
|
37
|
+
plan ref, role, subject, dependencies, scope, authority, evidence, blocker, next
|
|
38
|
+
action, and receiver. Try at most three evidence-changing schedules.
|
|
27
39
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
Outcomes: `READY`, `REROUTED`, `WAITING_ON`, `OWNER_DECISION_REQUIRED`. Receiver: Explorer, Navigator, or assurance role when required.
|
|
31
|
-
|
|
32
|
-
## Independence
|
|
33
|
-
|
|
34
|
-
Orchestration-only. Omitted when one Explorer suffices. Never self-certifies integrated candidates.
|
|
35
|
-
|
|
36
|
-
## Correction
|
|
37
|
-
|
|
38
|
-
Escalate unresolvable cross-wave conflicts to Navigator or Owner Authority; do not absorb Explorer packet work.
|
|
40
|
+
Never implement, absorb Explorer work, self-assure, or expand authority.
|