ami-quality-auditorlisted
Install: claude install-skill AnaCataVC/amiga-ia
# Skill: Push Quality Auditor
When invoked, act as a strict Code Reviewer focused on code quality, structural integrity, and linguistic consistency.
## Workflow
1. **Analyze Changes:**
Identify all modified files using Git. Read the diffs carefully.
2. **Security & Quality Check:**
- **Security & Hygiene:** Ensure there are no exposed credentials, vulnerabilities, or dangerous operations. Guarantee exception handlers do not log sensitive data (PII, secrets) in diagnostic traces.
- **Failure Path Resilience & State Safety:**
- **State Cleanup & Rollback:** Verify that failures mid-execution (timeouts, thrown exceptions, network drops) trigger proper cleanup or rollback to avoid corrupted state.
- **Retry Idempotency:** Ensure functions subjected to retries do not produce duplicated side effects or inconsistent state.
- **Duplication & Dead Code:** Check if the new code introduces duplicates of existing logic. Identify any dead (unreachable) code. If duplicate logic is found, enforce centralizing the repeated functions.
- **Efficiency:** Ensure that there are no inefficiencies or unnecessary operations in the code. Flag any code that could be simplified without sacrificing efficiency or readability.
- **Maintainability:** Ensure that the code is easy to understand and maintain. For any non-obvious code, there should be comments explaining the logic.
3. **Linguistic & Comment Consistency:**
- **Comments:** Ensure comments explain *why* somethi