Skip to content

QA Intelligence

← All terms · Orbit-internal concepts

Also called QA, QA harness

Automated scripts that run after prompts ship to verify nothing broke. Per-project scripts plus universal cross-project checks; results in the QA tab.

What it is

QA Intelligence runs two tiers of scripts: per-project scripts in each project's `scripts/qa/*.mjs`, and universal scripts in Orbit's own `scripts/qa/universal/*.mjs` that run against every project. Universal scripts read from `process.cwd()` and discover entry points dynamically. Results appear in the QA tab, separated into per-project and "Cross-project checks" sections.

When you would use it

QA runs automatically after prompts ship; you check the QA tab when verifying that recent work didn't introduce regressions.

Common operations

  • Catching broken imports after AI refactors
  • Verifying type-checking and linting after changes
  • Running project-specific integration tests

Related terms

Where this is taught