원클릭으로
code-audit
Multi-perspective code audit. Launches parallel security, quality, performance, and architecture analysis agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Multi-perspective code audit. Launches parallel security, quality, performance, and architecture analysis agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Experiment with code changes in an isolated worktree. Changes can be reviewed and merged or discarded.
Multi-strategy parallel codebase search. Combines text search, file patterns, git history, and import tracing to find code comprehensively.
Automatically detect and understand project structure, tech stack, conventions, and key files. Provides project context as background knowledge.
5-stage quality pipeline for Agent Teams — Plan, PRD, Execute, Verify, Fix
| name | code-audit |
| description | Multi-perspective code audit. Launches parallel security, quality, performance, and architecture analysis agents. |
| user-invocable | true |
| allowed-tools | Read, Glob, Grep, Bash, Task |
You have the code-audit skill. When invoked, run a comprehensive multi-perspective code audit.
/not-my-reforge:code-audit [scope]
Scope can be: a file path, directory, or "all" for full codebase. Default: files changed since last commit.
Launch 5 parallel agents using the Task tool (all with run_in_background: true):
After all agents complete, synthesize into a unified report:
## Code Audit Report
### Critical (must fix)
- [SECURITY] file:line — description
- [BUG] file:line — description
### High (should fix)
- [QUALITY] file:line — description
- [PERFORMANCE] file:line — description
### Medium (consider)
- [ARCHITECTURE] file:line — description
### Low (nice to have)
- [STYLE] file:line — description
### Summary
- Files audited: N
- Issues found: N (critical: N, high: N, medium: N, low: N)
- Top risk areas: ...