con un clic
auditing
Post-implementation integrity and quality audit.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Post-implementation integrity and quality audit.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Session-start skill discovery protocol.
Structured root-cause investigation for bugs and failures.
Execute implementation plan task-by-task inline.
Complete work with merge, PR, or cleanup options.
Integrity guardrails during code implementation.
Process code review feedback with rigor.
Basado en la clasificación ocupacional SOC
| name | auditing |
| description | Post-implementation integrity and quality audit. |
Post-implementation audit that verifies both technical quality and behavioral integrity of code changes. Triggered manually.
Identify what changed:
git diff for uncommitted modificationsgit diff HEAD~N for recent commits (choose N based on session scope)Include all changes in scope — not just the last commit. A session may span multiple commits.
For each modified file, evaluate against five failure patterns:
2.1 Reasoning-Action Coherence
2.2 Fabrication
expect(validate(input)).toBe(true) where validate always returns true2.3 Omissions
catch {}, swallowed promise rejectionscatch (e) { /* TODO */ } in production code2.4 Convention Compliance
var when project ESLint enforces const/let2.5 Shortcut Detection
For each modified file:
Present findings in this format:
## Review Result
### Integrity
- [PASS/FAIL] Reasoning-action coherence: <specific finding>
- [PASS/FAIL] No fabrication: <specific finding>
- [PASS/FAIL] Transparency: <specific finding>
- [PASS/FAIL] Convention compliance: <specific finding>
- [PASS/FAIL] No shortcuts: <specific finding>
### Technical Quality
- [PASS/FAIL] Defects: <specific finding>
- [PASS/FAIL] Security: <specific finding>
- [PASS/FAIL] Efficiency: <specific finding>
- [PASS/FAIL] Clarity: <specific finding>
### Required Actions
1. [concrete action item — if any]
### Verdict: APPROVED / APPROVED WITH CAVEATS / REJECTED
Every PASS requires a specific justification — what was checked and why it is satisfactory. "Looks fine" is not a valid PASS reason.
If REJECTED, offer to apply fixes automatically.
For programmatic invocation (e.g., Agent SDK), return results conforming to:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["integrity", "technical_quality", "verdict"],
"properties": {
"integrity": {
"type": "object",
"required": ["reasoning_action_coherence", "no_fabrication", "transparency", "convention_compliance", "no_shortcuts"],
"properties": {
"reasoning_action_coherence": { "$ref": "#/$defs/check" },
"no_fabrication": { "$ref": "#/$defs/check" },
"transparency": { "$ref": "#/$defs/check" },
"convention_compliance": { "$ref": "#/$defs/check" },
"no_shortcuts": { "$ref": "#/$defs/check" }
}
},
"technical_quality": {
"type": "object",
"required": ["defects", "security", "efficiency", "clarity"],
"properties": {
"defects": { "$ref": "#/$defs/check" },
"security": { "$ref": "#/$defs/check" },
"efficiency": { "$ref": "#/$defs/check" },
"clarity": { "$ref": "#/$defs/check" }
}
},
"required_actions": {
"type": "array",
"items": { "type": "string" }
},
"verdict": {
"type": "string",
"enum": ["APPROVED", "APPROVED_WITH_CAVEATS", "REJECTED"]
}
},
"$defs": {
"check": {
"type": "object",
"required": ["status", "detail"],
"properties": {
"status": { "type": "string", "enum": ["PASS", "FAIL"] },
"detail": { "type": "string" }
}
}
}
}