These pages document master, which is unreleased and in development. The Quick Start installs the latest stable release; anything newer than that tag is marked in the text.
Alignment Maintenance Checklist
Lightweight routine to keep this repo aligned with agentic coding principles over time.
Cadence
Section titled “Cadence”- Run after any rule/skill/agent/template change
- Run before each release
- Run a monthly health pass even if no major changes landed
Required Verification
Section titled “Required Verification”Run from repo root:
bash tests/test-generate.shbash tests/test-hooks.shbash adapters/claude-code/setup.shbash tests/test-shared-structure.shRecord the result counts in release notes or PR summary.
Source of truth:
tests/test-counts.envdefines expected PASS totals for each top-level suite..github/workflows/sync-check.ymlmust run all three suites and executeadapters/claude-code/setup.shbefore structure checks using isolatedHOME.
Alignment Gates
Section titled “Alignment Gates”-
Instruction Layer Integrity
- Always rules remain concise and enforceable.
- On-demand rule mappings are accurate for each adapter.
- No stale references to removed docs/skills/tools.
-
Verification Contract
verify-appdefinitions include:type,lint,tests,ui-smoke,console,network,visual.- Output format includes explicit PASS/FAIL/SKIP statuses.
-
Codex Build Mode Clarity
- Single-agent flow remains the default.
- Optional team-mode behavior is documented as capability-dependent fallback.
-
Template Quality
- Every template has architecture rules and a
team-review.mdcommand. - Web templates require runtime observability statuses in review output.
- Every template has architecture rules and a
-
Documentation Drift
- README test-count claims match current test outputs.
- CONTRIBUTING test instructions remain current.
- README and CONTRIBUTING community standards links stay complete and in sync.
- Governance hardening docs (for example
docs/github-hardening-playbook.md) stay discoverable.
-
CI Gate Integrity
sync-check.ymlrunstest-generate,test-hooks, andtest-shared-structure.- CI structure checks run against a fresh install path (isolated
HOME). - CI triggers include governance/hardening files so protection drift is gated.
Release Checklist
Section titled “Release Checklist”- All three test suites pass with zero failures
- README test counts are accurate
-
tests/test-counts.envexpected totals match current suite outputs - CONTRIBUTING reflects current contributor workflow
- No adapter drift (
scripts/generate.shproduces no unexpected diffs) - Capability registry valid + docs current (
scripts/validate-capabilities.sh;scripts/generate-capability-docs.sh --check— the generatedshared/capabilities/COMPATIBILITY.mdmatches the registry) - README enforcement-tier table stays high-level;
COMPATIBILITY.mdremains the per-capability authority -
sync-check.ymlstill enforces full gate coverage (all suites + setup before structure test) - README and CONTRIBUTING community standards links remain complete and synchronized
- Governance hardening docs/scripts remain current and referenced (
docs/github-hardening-playbook.md,scripts/harden-github.sh) - At least one manual verification run performed for changed behavior
Failure Handling
Section titled “Failure Handling”When a gate fails:
- Capture exact failing assertion and file path.
- Decide if failure is:
- product regression
- test expectation drift
- stale local install data
- Fix source of truth first (
shared/, adapter, or setup script). - Re-run all three test suites before merging.