ワンクリックで
audit
Comprehensive codebase audit — security, error handling, patterns, tests, data, dependencies
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Comprehensive codebase audit — security, error handling, patterns, tests, data, dependencies
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Interactive issue design — researches the codebase and produces implementation-ready GitHub issues
Technical debt tracker — TODOs, suppressed rules, skipped tests, churn hotspots
Deep single-file analysis — bugs, security, patterns, test coverage
| name | audit |
| description | Comprehensive codebase audit — security, error handling, patterns, tests, data, dependencies |
| disable-model-invocation | true |
Run a comprehensive sweep of the codebase across multiple dimensions. Produces a prioritized report with actionable findings.
Optional scope argument: $ARGUMENTS
Supported scopes: security, errors, patterns, tests, data, dependencies, or empty for all.
Run all available tools and capture output. Do NOT stop if a tool fails.
bundle exec rubocop 2>&1 || true
For each dimension below, perform targeted searches and reads. Only run dimensions matching $ARGUMENTS (or all if no argument).
security)Search for and evaluate:
errors)patterns)tests)data)dependencies)Output findings grouped by severity. Every finding must have a specific file path and line number.
# Codebase Audit Report
**Scope**: [all | security | errors | patterns | tests | data | dependencies]
## Critical (fix immediately)
### [Finding title]
**File**: `path/to/file:42`
**Category**: [Security | Error Handling | Pattern | Test Gap | Data | Dependency]
**Issue**: [Specific description of what's wrong]
**Impact**: [What could go wrong]
**Fix**: [Exact steps to remediate]
## High (fix soon)
...
## Medium (should fix)
...
## Low (consider fixing)
...
## Summary
| Category | Critical | High | Medium | Low |
|----------|----------|------|--------|-----|
| Security | N | N | N | N |
| Error Handling | N | N | N | N |
| Patterns | N | N | N | N |
| Test Gaps | N | N | N | N |
| Data | N | N | N | N |
| Dependencies | N | N | N | N |
| **Total** | **N** | **N** | **N** | **N** |
After presenting the report, offer:
I found N critical and N high findings. Want me to generate GitHub issues for them? Each issue will follow the /design format so they can be processed by the autonomous pipeline.
If the user accepts, generate issues using the /design format and offer to create them with gh issue create --label "auto-ready".