mit einem Klick
review
Code review and security audit
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Code review and security audit
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Explore codebase structure, entry points, tech stack, hotspots, and call graphs
Search code symbols, find function calls, and analyze codebase
Run the instinct parser catalogue against this session's observe events to surface candidate patterns for promotion to memories. Two-pass: gather candidates, judge intent, write proposals.
Parallel agents with SDLC pipeline per story
Inspect a running swarm — show the agent tree, current tools, halts/pauses, and recent task/message activity for the orchestrator's own swarm.
Systematic debugging workflow for tracking down bugs and issues
| name | review |
| description | Code review and security audit |
| triggers | ["review this","review the","code review","security audit","audit this"] |
Recommended model tier: smart (opus) - this skill requires complex reasoning
Comprehensive code review covering quality, security, and maintainability.
Prefer lightweight tools first, then read in detail where needed:
code_outline -- Collapsed skeleton with signatures and line ranges. Great first step for unfamiliar files.code_symbols -- Quick symbol list when you only need names and kinds.code_search / code_references -- Find symbol definitions or callers across the codebase.Read with offset/limit -- Read specific functions using line numbers from the outline.For reviews spanning many files, consider using Task sub-agents (explore type) which run in their
own context and return summaries.
code_outline on each changed file to understand structure.
Identify areas of concern from signatures and line ranges.Read with offset/limit to read only the specific
functions/sections that need detailed review (use line numbers from the outline).code_search, code_references, and Grep:
code_search — Find related function/class/type definitions by namecode_references — Find all callers/usages of a modified symbol (exact name match)Use these tools during review:
mcp__plugin_aide_aide__code_outline - Start here. Get collapsed file skeleton with signatures and line rangesmcp__plugin_aide_aide__code_search - Find symbols related to changes (e.g., code_search query="getUserById")mcp__plugin_aide_aide__code_symbols - List all symbols in a file being reviewedmcp__plugin_aide_aide__code_references - Find all callers/usages of a modified symbolmcp__plugin_aide_aide__memory_search - Check for related past decisions or issuesmcp__plugin_aide_aide__findings_search - Search static analysis findings (complexity, secrets, clones) related to changed codemcp__plugin_aide_aide__findings_list - List findings filtered by file, severity, or analyzermcp__plugin_aide_aide__findings_stats - Overview of finding counts by analyzer and severity## Code Review: [Feature/PR Name]
### Summary
[1-2 sentence overview]
### Findings
#### 🔴 Critical (must fix)
- **[Issue]** `file:line`
- Problem: [description]
- Fix: [recommendation]
#### 🟡 Warning (should fix)
- **[Issue]** `file:line`
- Problem: [description]
- Fix: [recommendation]
#### 🔵 Suggestion (consider)
- **[Issue]** `file:line`
- Suggestion: [recommendation]
### Security Notes
- [Any security-specific observations]
### Verdict
[ ] ✅ Approve
[ ] ⚠️ Approve with comments
[ ] ❌ Request changes
| Level | Criteria |
|---|---|
| Critical | Security vulnerability, data loss risk, crash |
| Warning | Bug potential, maintainability issue, performance |
| Suggestion | Style, minor improvement, optional |
## Review Status: Incomplete
### Blockers
- Could not access: `path/to/file.ts` (permission denied)
- Missing context: Need to understand `AuthService` implementation
### Partial Findings
[Include any findings from files that were reviewed]
A complete code review must:
code_outline on every file in scopeRead with offset/limit on flagged areascode_search and code_references to find callers/callees