enhance-orchestrator
Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report.
npx skills add agent-sh/agentsys --skill enhance-orchestrator --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 ```javascript const args = '$ARGUMENTS'.split(' ').filter(Boolean); const targetPath = args.find(a => !a.startsWith('--')) || '.'; const flags = { apply: args.includes('--apply'), focus: args.find(a => a.startsWith('--focus='))?.split('=')[1], verbose: args.includes('--verbose'), showSuppressed: args.includes('--show-suppressed'), resetLearned: args.includes('--reset-learned'), noLearn: args.includes('--no-learn'), exportLearned: args.includes('--export-learned') }; // Validate focus type const VALID_FOCUS = ['plugin', 'agent', 'claudemd', 'claude-memory', 'docs', 'prompt', 'hooks', 'skills', 'cross-file']; if (flags.focus && !VALID_FOCUS.includes(flags.focus)) { conso
- Critical Rules
- Workflow
- Phase 1: Parse Arguments
- Phase 2: Discovery
- Phase 3: Load Suppressions
- Phase 4: Launch Enhancers in Parallel
- Phase 5: Aggregate Results
- Phase 6: Generate Report
- Phase 7: Auto-Learning
- Phase 8: Apply Fixes
- Output Format
- Constraints
What does the enhance-orchestrator skill do?
Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report.
How do I install it?
Run `npx skills add agent-sh/agentsys --skill enhance-orchestrator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From agent-sh/agentsys, a repository with 923 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.