원클릭으로
audit
Run a comprehensive codebase audit across architecture, quality, security, and performance dimensions. Dispatches specialized agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run a comprehensive codebase audit across architecture, quality, security, and performance dimensions. Dispatches specialized agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | audit |
| description | Run a comprehensive codebase audit across architecture, quality, security, and performance dimensions. Dispatches specialized agents. |
| argument-hint | [all|12factor|patterns|rust|security|smells|efficiency] |
Run a codebase audit on the Gorilla Coach project. Scope: $ARGUMENTS (default: all).
Map the requested scope to agent(s):
| Argument | Agent(s) | Scope passed to agent |
|---|---|---|
all (or empty) | audit-architecture, audit-quality, audit-security-perf | all dimensions |
12factor | audit-architecture | 12-Factor only |
patterns | audit-architecture | GoF patterns only |
rust | audit-quality | Rust best practices only |
smells | audit-quality | Code smells and dead code only |
security | audit-security-perf | Security only |
efficiency | audit-security-perf | Efficiency only |
Preparation: Read CLAUDE.md to pass project context to agents.
Dispatch: Launch the appropriate agent(s) based on the argument. CRITICAL: When multiple agents are needed (e.g., all), you MUST launch ALL of them in parallel by including multiple Agent tool calls in a single message. Do NOT run them sequentially. Pass each agent a prompt that includes:
/home/mo/data/Documents/git/gorilla_coachAggregation: Wait for all parallel agents to complete, then produce a consolidated report:
# Codebase Audit Report
**Scope:** [dimensions audited]
**Date:** [today]
## Summary
| Severity | Count |
|----------|-------|
| CRITICAL | N |
| HIGH | N |
| MEDIUM | N |
| LOW | N |
## Findings
### CRITICAL
[findings sorted by dimension]
### HIGH
[findings sorted by dimension]
### MEDIUM
[findings sorted by dimension]
### LOW
[findings sorted by dimension]
## Positive Observations
[well-implemented patterns worth preserving]
file:line referenceRun cargo check and clippy on the Rust workspace. Quick code quality gate.
Build and deploy garmin_api backend and/or frontend. Rebuilds WASM, Docker images, and restarts containers.
Run a Python tool via pipx (auto-installs if needed). Use for Playwright, black, ruff, etc. ALWAYS use this instead of pip install or direct python tool invocation.
Review uncommitted or staged changes for bugs, security issues, and code quality. Use before committing.