enhance-orchestrator

Featured

Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report.

AI & Automation 967 stars 111 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
99
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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)) { console.error(`Invalid --focus: "${flags.focus}". Valid: ${VALID_FOCUS.join(', ')}`); return; } ``` ### Phase 2: Discovery Detect what exists in target path: ```javascript const discovery = { plugins: await Glob({ pattern: 'plugins/*/.claude-plugin/plugin.json', path: targe...

Details

Author
agent-sh
Repository
agent-sh/agentsys
Created
7 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category