| name | review |
| description | Quick review of recently changed files. Runs contract-guardian and framework-compliance in parallel. Use after every significant edit before committing. |
Quick review of recently changed files. Framework-compliance includes vendor boundary checks.
- Get the list of changed files:
git diff --name-only HEAD
-
Spawn contract-guardian and framework-compliance agents simultaneously as background agents, passing the list of changed files.
-
Wait for both agents to complete.
-
Present findings grouped by severity:
- Critical (breaking changes, missing focus coverage, vendor boundary issues)
- Warning (violations, redundancies, naming issues)
- Info (semver recommendation)
-
If changes introduced a new component, API, or pattern, suggest: "Run /sync-context to update context files before committing."
-
Skip the suggestion if changes were purely mechanical (typo, rename, test update).