بنقرة واحدة
ultrathink-orchestrator
Auto-invokes ultrathink workflow for any work request (default orchestrator)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Auto-invokes ultrathink workflow for any work request (default orchestrator)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Orchestrate large-scale changes across a codebase in parallel
Review changed code for reuse, quality, and efficiency, then fix any issues found
Consolidated Claude Code sync and parity tracking for RustyClawd. Fetches latest Claude Code features from official sources, compares against the local feature inventory, identifies gaps, and optionally creates GitHub issues. Also supports deep analysis by deminifying the installed Claude Code cli.js.
Track and report agent invocation metrics including usage counts, success/failure rates, and completion times. Use for understanding which agents are utilized, identifying underused agents, and optimizing agent delegation patterns.
Automated dependency conflict detection and resolution. Detects local vs CI environment mismatches, compares versions, and generates pinning recommendations. Run as pre-push check to catch issues early.
Auto-discovers and configures Language Server Protocol (LSP) servers for your project's languages
| name | ultrathink-orchestrator |
| version | 1.0.0 |
| description | Auto-invokes ultrathink workflow for any work request (default orchestrator) |
| auto_activate | true |
| priority | 5 |
| triggers | ["implement","create","build","add","fix","update","refactor","design"] |
This skill provides automatic orchestration for development and investigation tasks. It detects the task type from keywords and delegates to the appropriate workflow skill (investigation-workflow or default-workflow).
Auto-activation priority is LOW (5) to allow more specific skills to match first. When activated, this orchestrator selects between investigation-workflow and default-workflow based on the user's request keywords.
This skill acts as a thin wrapper around the canonical ultrathink command, following the amplihack pattern of single-source-of-truth for command logic.
This skill is a thin wrapper that references canonical sources:
.claude/commands/amplihack/ultrathink.md (278 lines).claude/workflow/DEFAULT_WORKFLOW.md.claude/workflow/INVESTIGATION_WORKFLOW.mdThe canonical command contains complete task detection logic, complexity estimation, and orchestration patterns for both investigation and development workflows.
When this skill is activated, you MUST:
Read the canonical command for task detection logic:
Read(file_path=".claude/commands/amplihack/ultrathink.md")
Note: Path is relative to project root. Claude Code resolves this automatically.
Detect task type using keywords from the canonical command:
Invoke appropriate workflow skill:
Skill(skill="investigation-workflow")Skill(skill="default-workflow")Fallback if skill not found:
.claude/workflow/INVESTIGATION_WORKFLOW.md.claude/workflow/DEFAULT_WORKFLOW.mdBenefits:
Trade-offs:
This pattern aligns with amplihack philosophy: ruthless simplicity through elimination of duplication.
.claude/commands/amplihack/ultrathink.md.claude/skills/default-workflow/.claude/skills/investigation-workflow/.claude/workflow/DEFAULT_WORKFLOW.md.claude/workflow/INVESTIGATION_WORKFLOW.md