enhance-orchestrator
Installation
SKILL.md
enhance-orchestrator
Coordinate all enhancement analyzers in parallel and produce a unified report.
Critical Rules
- MUST run enhancers in parallel - Use Promise.all for efficiency
- MUST only run enhancers for existing content - Skip if no files found
- MUST report HIGH certainty first - Priority order: HIGH → MEDIUM → LOW
- NEVER auto-fix without --apply flag - Explicit consent required
- NEVER auto-fix MEDIUM or LOW issues - Only HIGH certainty
Workflow
Phase 1: Parse Arguments
const args = '$ARGUMENTS'.split(' ').filter(Boolean);
const targetPath = args.find(a => !a.startsWith('--')) || '.';