This skill should be used when evaluating implementation quality before submission, checking correctness, security, and simplicity.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add dean0x/devflow --skill quality-gates --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quality Gates?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dean0x-quality-gates)More formats (shields.io, HTML) on the badges page.
---
name: quality-gates
description: This skill should be used when evaluating implementation quality before submission, checking correctness, security, and simplicity.
user-invocable: false
allowed-tools: Read, Grep, Glob, Edit, Write, Bash
---
# Self-Review Framework
Systematic self-review for the Scrutinize agent. Evaluate implementation against 9 pillars. **Fix issues, don't just report them.**
Based on [Google Engineering Practices](https://google.github.io/eng-practices/review/reviewer/looking-for.html).
## Iron Law
> **FIX BEFORE RETURNING**
>
> Self-review is not a report generator. It's a quality gate. If you find a P0 or P1 issue,
> you fix it. You only return when all critical issues are resolved. Pride in craftsmanship.
---
## The 9 Pillars
| Priority | Action | Pillars |
|----------|--------|---------|
| **P0** | MUST fix | Design, Functionality, Security |
| **P1** | SHOULD fix | Complexity, Error Handling, Tests |
| **P2** | FIX if time | Naming, Consistency, Documentation |
### P0 - Design
Does the implementation fit the architecture? Follows existing patterns, respects layer boundaries, dependencies injected.
If `FEATURE_KNOWLEDGE` is provided, verify implementation respects the feature area's documented architecture and anti-patterns. Flag deviations as P0-Design issues when the documented pattern is clearly intentional.
### P0 - Functionality
Does the code work? Happy path, edge cases (null, empty, boundary), no race conditions.
### P0 - Security
Any vulnerabilities? No injection, input validated, no hardcoded secrets, auth checked.
### P1 - Complexity
Understandable in 5 minutes? Functions < 50 lines, nesting < 4 levels, no magic numbers.
### P1 - Error Handling
Errors handled explicitly? No swallowed exceptions, helpful messages, resources cleaned up.
### P1 - Tests
New code tested? Covers happy path, errors, edges. Tests behavior, not implementation.
### P2 - Naming
Names clear and descriptive? No cryptic abbreviations, consistent style.
### P2 - Consistency
Matches existing patterns? Same style, same conventions, no unnecessary divergence.
### P2 - Documentation
Will others understand? Complex logic commented, public APIs documented, no outdated comments.
---
## Quick Examples
### Design Red Flag
```typescript
// BAD: Direct DB in controller (violates layers)
class UserController {
async getUser(req, res) {
const user = await db.query('SELECT * FROM users WHERE id = ?', [req.params.id]);
}
}
```
### Security Red Flag
```typescript
// BAD: SQL injection
const query = `SELECT * FROM users WHERE email = '${email}'`;
// BAD: Missing auth
app.delete('/api/users/:id', async (req, res) => {
await deleteUser(req.params.id); // No auth check!
});
```
---
## Self-Review Process
### Step 1: Gather Changes
```bash
git diff --name-only HEAD~1
git diff HEAD~1
```
### Step 2: Evaluate P0 Pillars
Check Design, Functionality, Security. If issues found and fixable, fix immediately. If unfixable, STOP and report blocker.
### Step 3: Evaluate P1 Pillars
Check Complexity, Error Handling, Tests. Fix issues found.
### Step 4: Evaluate P2 Pillars
Check Naming, Consistency, Documentation. Fix if time permits.
### Step 5: Generate Report
Document status of each pillar, fixes applied, and overall readiness.
---
## Output Format
```markdown
## Self-Review Report
### P0 Pillars
- Design: PASS/FIXED
- Functionality: PASS/FIXED
- Security: PASS/FIXED
### P1 Pillars
- Complexity: PASS/FIXED
- Error Handling: PASS/FIXED
- Tests: PASS/FIXED
### P2 Pillars
- Naming: PASS/FIXED/SKIP
- Consistency: PASS/FIXED/SKIP
- Documentation: PASS/FIXED/SKIP
### Summary
Issues Found: {n}, Fixed: {n}
Status: READY / BLOCKED
```
---
## Extended References
For detailed checklists, examples, and red flags for each pillar:
- See `references/patterns.md` (9-pillar evaluation patterns and issue classification)
- See `references/violations.md` (pillar-organized anti-patterns and P0/P1 red flags)
For complete report templates and examples:
- See `references/report-template.md`
---
## Integration
Used by:
- **Scrutinize agent**: Dedicated self-review in fresh context after the Code agent completes
The self-review ensures implementations meet quality standards before external review, catching issues early.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!