User Story
As an adopter running /handover on an external project, I want the skill to score the project's harnessability and warn me about adoption blast-radius before I commit, so that I know upfront whether Rex's architecture handbooks will be advisory-only on this codebase (and adjust expectations accordingly).
Acceptance Criteria
Design Notes
industry harness-engineering "ambient affordances" framing: structural properties of the codebase make it more or less governable by an inferential agent. A Spring app abstracts away details Rex doesn't have to worry about; a tangle of scripts forces Rex to reason about everything. We're already detecting some of this implicitly during /handover; this ticket makes it explicit, persistent, and tied to expectations about what Rex can confidently enforce.
The score is advisory to the operator, not a blocking gate. Even a "low" project is still adoptable; the operator just walks in with eyes open.
Risk: scoring is subjective. Mitigation: ship with conservative thresholds + iterate based on real adopter feedback. The AgDR captures the v1 thresholds explicitly so future tuning has a baseline.
Risk: legacy adopters feel judged. Mitigation: the warning language is "Rex's gates won't fire reliably here, and that's a property of the codebase, not your team. Here's the upgrade path." Not "your codebase is bad."
Out of Scope
- Auto-fixing low-harnessability issues (e.g. adding TS strict mode for the adopter)
- Per-team or per-stack scoring weights — v1 ships with one global weighting
- Tracking harnessability score over time (interesting for v2.0 — "this project went from low → moderate after the typescript-strict migration")
Glossary
| Term |
Definition |
| Harnessability |
The degree to which a codebase's ambient properties make it amenable to inferential-agent governance (strong types, clear boundaries, opinionated framework) |
| Ambient affordances |
industry harness-engineering's term for the structural properties that make the codebase legible/navigable to an agent |
| Blast radius |
The set of Rex's blocking gates that would fire false positives on a low-harnessability codebase, generating noise and tuning out the layer |
Surfaced 2026-05-19 reading industry harness-engineering article. v1.5.
User Story
As an adopter running
/handoveron an external project, I want the skill to score the project's harnessability and warn me about adoption blast-radius before I commit, so that I know upfront whether Rex's architecture handbooks will be advisory-only on this codebase (and adjust expectations accordingly).Acceptance Criteria
/handoveradds a "Harnessability assessment" step early in its flow (after static discovery, before the registry write)mypyconfigured? → strong / partial / nonepre-commithooks? → present / absenttsconfig.json:6 strict:true")ENFORCEMENT: blocking) will generate false positives. Recommended: adopt as advisory-only, plan a follow-up to add the missing scaffolding (typescript strict, lint baseline, etc.)"projects/<name>/handover-assessment.mdso the assessment travels with the project recordDesign Notes
industry harness-engineering "ambient affordances" framing: structural properties of the codebase make it more or less governable by an inferential agent. A Spring app abstracts away details Rex doesn't have to worry about; a tangle of scripts forces Rex to reason about everything. We're already detecting some of this implicitly during
/handover; this ticket makes it explicit, persistent, and tied to expectations about what Rex can confidently enforce.The score is advisory to the operator, not a blocking gate. Even a "low" project is still adoptable; the operator just walks in with eyes open.
Risk: scoring is subjective. Mitigation: ship with conservative thresholds + iterate based on real adopter feedback. The AgDR captures the v1 thresholds explicitly so future tuning has a baseline.
Risk: legacy adopters feel judged. Mitigation: the warning language is "Rex's gates won't fire reliably here, and that's a property of the codebase, not your team. Here's the upgrade path." Not "your codebase is bad."
Out of Scope
Glossary
Surfaced 2026-05-19 reading industry harness-engineering article. v1.5.