com um clique
plan-refactoring
Identify highest-ROI refactoring targets
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Identify highest-ROI refactoring targets
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Analyze blast radius before changing specific files. Use before refactoring core components, making breaking API changes, or modifying shared code to identify affected files and stakeholders.
Get complexity and debt metrics before editing code
Focus code review on high-risk changes
Generate onboarding guide with key symbols, architecture overview, and subject matter experts. Use when joining a new project, onboarding teammates, or creating project documentation.
Analyze a repository and generate an intelligent omen.toml with project-specific defaults. Use when starting Omen in a new project.
Audit module coupling, cohesion, hidden dependencies, and design smells. Use when conducting architecture reviews, evaluating design decisions, or identifying structural tech debt.
| name | plan-refactoring |
| description | Identify highest-ROI refactoring targets |
| usage | /plan-refactoring [path] |
| arguments | [{"name":"paths","description":"Paths to analyze","required":false,"default":"."}] |
Find refactoring targets in: {{.paths}}
# Get a quick structural overview before deciding what to refactor
omen -f json outline --compact --top 50
# Find hotspots (high churn + complexity)
omen -f json hotspot -n 10
# Find code clones
omen -f json clones --min-tokens 50
# Find acknowledged debt
omen -f json satd | jq '.items[] | select(.category == "design")'
# Assess blast radius before refactoring a specific symbol
omen -f json impact --symbol <symbol-name> --depth 2
| Finding | Effort | ROI |
|---|---|---|
| Hotspot with clones | Medium | High |
| God component | High | High |
| Isolated clone | Low | Medium |
| Low-churn debt | Low | Low |