원클릭으로
audit-codex-config
Analyze .Codex configuration for gaps, improvements, and needed updates
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze .Codex configuration for gaps, improvements, and needed updates
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze build errors and categorize them by type for planning fixes
Build, test, group changes logically, commit with Conventional Commits format, and push
Create a GitHub issue for a modernization task with proper template
Run tests and verify code coverage meets 80% minimum requirement
Analyze .claude configuration for gaps, improvements, and needed updates
Build, test, group changes logically, commit with Conventional Commits format, and push
| name | audit-Codex-config |
| description | Analyze .Codex configuration for gaps, improvements, and needed updates |
| user-invocable | true |
| argument-hint |
Performs comprehensive analysis of the .Codex/ directory and related configuration files, identifying gaps, suggesting improvements, and proposing updates based on project evolution.
/audit-Codex-config
.Codex/rules/).Codex/skills/).Codex/agents/).Codex/settings.json).mcp.json)# 🔍 Codex Configuration Audit Report
Generated: [Date]
## 📊 Summary
- Rules: X active, Y need updates
- Skills: X available, Y suggestions
- Agents: X defined, Y utilized, Z suggestions
- Overall Health: ✅ Excellent | ⚠️ Good | ❌ Needs Attention
---
## ✅ What's Working Well
- [Strengths in current configuration]
---
## ⚠️ Identified Gaps
### Rules
1. **Missing Pattern Documentation**
- Gap: We've fixed nullable warnings 10 times with same pattern
- Recommendation: Add to `.Codex/rules/modernization.md`
- Priority: Medium
### Skills
1. **Repeated Workflow**
- Gap: Manually running build → test → coverage check frequently
- Recommendation: Create `/pre-commit` skill
- Priority: High
### Agents
1. **Underutilized Agent**
- Gap: test-writer agent only used 2 times
- Recommendation: Delegate more test writing tasks
- Priority: Low
---
## 💡 Suggested Improvements
### High Priority
1. **Add nullable pattern to modernization.md**
```markdown
Pattern: private readonly IConfig _config = null!;
Reason: Constructor initialization, guaranteed non-null
Update code-reviewer agent Add: Check for var keyword usage
Enable GitHub MCP server Use case: Automating issue creation
Run /audit-Codex-config again:
## Analysis Process
I will:
1. **Read all configuration files**
- Rules, skills, agents, memory
- Settings, MCP, editorconfig
2. **Analyze git history**
- Look for repeated patterns
- Identify manual workflows
- Check commit frequency
3. **Review agent memory**
- What patterns have been learned?
- Is learning transferring to rules?
4. **Check for gaps**
- Missing documentation
- Underutilized features
- Automation opportunities
5. **Compare to best practices**
- Are we following our own standards?
- Are configurations optimal?
6. **Generate recommendations**
- Prioritized by impact
- Specific, actionable
- With examples
## Use Cases
### Weekly Review
User: /audit-Codex-config → Review what's changed → Update configurations → Plan improvements
### After Major Milestone
User: "We just finished nullable fixes. /audit-Codex-config" → Document patterns learned → Update rules with discoveries → Archive completed work notes
### New Team Member Onboarding
User: /audit-Codex-config → Shows current state → Explains why things are configured this way → Identifies what's actively used
### Feeling Lost
User: "Configuration feels messy. /audit-Codex-config" → Identifies what's stale → Suggests cleanup → Proposes reorganization
## Output Saved To
Report saved to: `.Codex/audits/audit-{timestamp}.md`
## Related Skills
- `/verify-coverage` - Check test coverage
- `/audit-build` - Analyze build errors
- `/create-modernization-issue` - Create issues from findings
## Important Notes
- This skill is **read-only analysis** - I suggest changes but don't apply them
- You review recommendations and approve updates
- Agent memory is referenced but not modified
- Safe to run anytime - no side effects
## Implementation
When invoked, I will:
1. Read all `.Codex/` files
2. Analyze patterns and usage
3. Compare to best practices
4. Generate comprehensive report
5. Save report to `.Codex/audits/`
6. Present findings with recommendations
7. Ask: "Which improvements should I implement?"