Skip to content

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.

  • Run after any rule/skill/agent/template change
  • Run before each release
  • Run a monthly health pass even if no major changes landed

Run from repo root:

Terminal window
bash tests/test-generate.sh
bash tests/test-hooks.sh
bash adapters/claude-code/setup.sh
bash tests/test-shared-structure.sh

Record the result counts in release notes or PR summary.

Source of truth:

  • tests/test-counts.env defines expected PASS totals for each top-level suite.
  • .github/workflows/sync-check.yml must run all three suites and execute adapters/claude-code/setup.sh before structure checks using isolated HOME.
  1. 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.
  2. Verification Contract

    • verify-app definitions include: type, lint, tests, ui-smoke, console, network, visual.
    • Output format includes explicit PASS/FAIL/SKIP statuses.
  3. Codex Build Mode Clarity

    • Single-agent flow remains the default.
    • Optional team-mode behavior is documented as capability-dependent fallback.
  4. Template Quality

    • Every template has architecture rules and a team-review.md command.
    • Web templates require runtime observability statuses in review output.
  5. 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.
  6. CI Gate Integrity

    • sync-check.yml runs test-generate, test-hooks, and test-shared-structure.
    • CI structure checks run against a fresh install path (isolated HOME).
    • CI triggers include governance/hardening files so protection drift is gated.
  • All three test suites pass with zero failures
  • README test counts are accurate
  • tests/test-counts.env expected totals match current suite outputs
  • CONTRIBUTING reflects current contributor workflow
  • No adapter drift (scripts/generate.sh produces no unexpected diffs)
  • Capability registry valid + docs current (scripts/validate-capabilities.sh; scripts/generate-capability-docs.sh --check — the generated shared/capabilities/COMPATIBILITY.md matches the registry)
  • README enforcement-tier table stays high-level; COMPATIBILITY.md remains the per-capability authority
  • sync-check.yml still 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

When a gate fails:

  1. Capture exact failing assertion and file path.
  2. Decide if failure is:
    • product regression
    • test expectation drift
    • stale local install data
  3. Fix source of truth first (shared/, adapter, or setup script).
  4. Re-run all three test suites before merging.