Activation Contract
Triggered on pre-commit hook or when user says "code review", "review all", "quality check", "audit
code", "orchestrator", or similar.
Hard Rules
- MUST run Security + Quality quick scan on every pre-commit
- MUST run all 7 dimensions pre-merge
- MUST block commit on CRITICAL findings (exit code 1)
- MUST generate a report at docs/code-reviews/
- MUST classify every finding by severity
- MUST NOT modify source files during review
- MUST keep quick scan under 30 seconds
Decision Gates
| Gate |
Options |
Rule |
| Scope |
all, security, quality, testing, docs, api, git, quick, full |
quick = Security+Quality; full = all 7 |
| Severity action |
CRITICAL block, HIGH warn+review, MEDIUM info, LOW suggest |
CRITICAL always blocks (exit 1) |
| Trigger |
pre-commit auto vs manual |
Auto runs quick scope only |
Execution Steps
- Detect trigger (pre-commit hook or manual request)
- Resolve scope — quick (Security+Quality) or full (all 7)
- Load config from configs/review-config.json
- Execute scans for selected dimensions
- Classify each finding by severity
- Generate report (console + file at docs/code-reviews/)
- Block if CRITICAL found (exit 1), otherwise allow (exit 0)
Output Contract
Return severity breakdown, categorized issues (file:line, description, recommendation), report file
path, and exit code (1 if blocked).
References
references/seven-dimensions.md — Dimension descriptions and scope mapping
references/severity-matrix.md — Severity levels with actions
references/commands.md — Full command reference and performance
references/report-format.md — Console and file report templates
references/judgment-day.md — Dual review protocol
references/config-example.md — Review configuration JSON
references/integration.md — Git hooks and CI/CD setup
Source: EmmanuelOrtiz87/gentle-vanguard — distributed by TomeVault.
1---2name: code-review-orchestrator-23description: Triggered on pre-commit hook or when user says "code review", "review all", "quality check", "audit Use when this capability is needed.4---56## Activation Contract78Triggered on pre-commit hook or when user says "code review", "review all", "quality check", "audit9code", "orchestrator", or similar.1011## Hard Rules1213- MUST run Security + Quality quick scan on every pre-commit14- MUST run all 7 dimensions pre-merge15- MUST block commit on CRITICAL findings (exit code 1)16- MUST generate a report at docs/code-reviews/17- MUST classify every finding by severity18- MUST NOT modify source files during review19- MUST keep quick scan under 30 seconds2021## Decision Gates2223| Gate | Options | Rule |24| --------------- | ------------------------------------------------------------ | -------------------------------------- |25| Scope | all, security, quality, testing, docs, api, git, quick, full | quick = Security+Quality; full = all 7 |26| Severity action | CRITICAL block, HIGH warn+review, MEDIUM info, LOW suggest | CRITICAL always blocks (exit 1) |27| Trigger | pre-commit auto vs manual | Auto runs quick scope only |2829## Execution Steps30311. Detect trigger (pre-commit hook or manual request)322. Resolve scope — quick (Security+Quality) or full (all 7)333. Load config from configs/review-config.json344. Execute scans for selected dimensions355. Classify each finding by severity366. Generate report (console + file at docs/code-reviews/)377. Block if CRITICAL found (exit 1), otherwise allow (exit 0)3839## Output Contract4041Return severity breakdown, categorized issues (file:line, description, recommendation), report file42path, and exit code (1 if blocked).4344## References4546- `references/seven-dimensions.md` — Dimension descriptions and scope mapping47- `references/severity-matrix.md` — Severity levels with actions48- `references/commands.md` — Full command reference and performance49- `references/report-format.md` — Console and file report templates50- `references/judgment-day.md` — Dual review protocol51- `references/config-example.md` — Review configuration JSON52- `references/integration.md` — Git hooks and CI/CD setup5354---55> Source: [EmmanuelOrtiz87/gentle-vanguard](https://github.com/EmmanuelOrtiz87/gentle-vanguard) — distributed by [TomeVault](https://tomevault.io).56<!-- tomevault:4.0:skill_md:2026-05-22 -->