원클릭으로
sub-audit
Run a code review and documentation audit on recent changes. Finds bugs, edge cases, missing docs, and type safety issues.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run a code review and documentation audit on recent changes. Finds bugs, edge cases, missing docs, and type safety issues.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a new release with version bump, release notes, commit, and tag
Analyze project intelligence files and bootstrap SubFrame's STRUCTURE.json, PROJECT_NOTES.md, and initial sub-tasks from existing codebase context.
Sync all SubFrame documentation after feature work. Updates AGENTS.md lists, changelog, PROJECT_NOTES decisions, and STRUCTURE.json.
View and manage SubFrame Sub-Tasks. Use when starting work, completing tasks, checking what's pending, or creating new tasks from conversation.
Create a new release with version bump, release notes, commit, and tag
Regenerate the IPC channel reference documentation from ipcChannels.ts type maps.
| name | sub-audit |
| description | Run a code review and documentation audit on recent changes. Finds bugs, edge cases, missing docs, and type safety issues. |
| argument-hint | ["scope - e.g.","auth feature","last 5 commits"] |
| disable-model-invocation | false |
| allowed-tools | Bash, Read, Grep, Glob, Agent |
Run a thorough audit on recent changes, combining code review and documentation checks.
Recent commits (last 15):
!git log --oneline --no-decorate -15 2>/dev/null || echo "No git history"
Files changed vs main:
!git diff --name-only main...HEAD 2>/dev/null | head -40
Argument: $ARGUMENTS
The argument should describe the scope to audit. If empty, audit all changes since the last merge to main.
Determine which files to audit:
git diff --name-only main...HEAD to find all changed filesSpawn a code review agent (feature-dev:code-reviewer subagent type) to review the changed files. The agent should check for:
as any casts, missing type imports, loose typing where strict types existSpawn an explore agent (Explore subagent type) to check documentation completeness:
Present findings in this format:
## Audit Report
### Critical Issues (must fix)
1. [FILE:LINE] Description — severity, impact
### Important Issues (should fix)
1. [FILE:LINE] Description — severity, impact
### Documentation Gaps
1. [FILE] What's missing
### Suggestions (nice to have)
1. Description
Confidence filtering: Only report issues you are confident about. Skip speculative concerns or style preferences. Each reported issue should include:
After presenting the report, ask the user if they want to fix any of the reported issues. If yes, apply fixes starting with Critical → Important → Documentation.