Executable scripts live in this directory. This file is the entry index for the remaining repository-maintenance helpers.
- Product/API behavior (transport, protocol contracts, extension semantics):
- Security boundary and disclosure guidance:
doctor.sh: primary local development regression entrypoint with explicit fix/verify/package phases (uv sync + dependency compatibility + lint + mypy + tests + coverage + built-wheel smoke test)conformance.sh: repository-owned A2A 1.0 black-box compatibility probes; can launch a dummy-backed local SUT and preserves machine-readable artifacts underrun/conformance/live_opencode_smoke.sh: local/manual live integration smoke against a real OpenCode runtime; boots an isolated password-hardenedopencode serveplus the opencode-a2a runtime in throwaway directories and verifies upstream auth, JSON-RPC extension reads, and a streaming prompt round-tripdependency_health.sh: development dependency review entrypoint (sync/pip check+ outdated + dev audit), while blocking CI/publish audits focus on runtime dependenciescheck_coverage.py: enforces the overall coverage floor and per-file minimums for critical modulesfind_thin_wrappers.py: static analysis helper that reports local functions with low caller counts and flags likely thin forwarding wrappers for manual abstraction reviewlint.sh: lint helpersmoke_test_built_cli.sh: built-artifact smoke test for the released CLI runtime; defaults to the only local wheel, supports explicit wheel/sdist paths, and rejects ambiguous local artifact selection
doctor.shanddependency_health.shintentionally remain separate entrypoints and share common prerequisites throughhealth_common.sh.doctor.shcovers the default local validation baseline, whiledependency_health.shremains focused on standalone dependency review and audit flow.doctor.shstops early whenpre-commitrewrites files so you can review the changes and rerundoctor.shfrom the updated worktree..github/dependabot.ymlprefers a single weekly grouped Dependabot PR foruv, whiledependency_health.shremains the explicit review/audit entrypoint.- Repository-owned compatibility probes remain separate from the default regression path. See
../docs/conformance.md.