enhance-orchestrator

Installation
SKILL.md

enhance-orchestrator

Coordinate all enhancement analyzers in parallel and produce a unified report.

Critical Rules

  1. MUST run enhancers in parallel - Use Promise.all for efficiency
  2. MUST only run enhancers for existing content - Skip if no files found
  3. MUST report HIGH certainty first - Priority order: HIGH → MEDIUM → LOW
  4. NEVER auto-fix without --apply flag - Explicit consent required
  5. 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('--')) || '.';
Related skills
Installs
48
GitHub Stars
796
First Seen
Feb 20, 2026