بنقرة واحدة
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 المهني
Generates agentic outside-in tests using gadugi-agentic-test framework for CLI, TUI, Web, and Electron apps. Use when you need behavior-driven tests that verify external interfaces without internal implementation knowledge. Creates YAML test scenarios that AI agents execute, observe, and validate against expected outcomes. Supports progressive complexity from simple smoke tests to advanced multi-step workflows.
Comprehensive knowledge of Claude Agent SDK architecture, tools, hooks, skills, and production patterns. Auto-activates for agent building, SDK integration, tool design, and MCP server tasks.
Complete Azure DevOps automation - boards, repos, pipelines, artifacts
Expert backlog manager that prioritizes work using multi-criteria scoring, analyzes dependencies, and recommends optimal next tasks. Activates when managing backlogs, prioritizing work, adding items, or analyzing what to work on next.
Auto-generates code flow diagrams from Python module analysis. Detects when architecture diagrams become stale (code changed, diagram didn't). Use when: creating new modules, reviewing PRs for architecture impact, or checking diagram freshness. Generates mermaid diagrams showing imports, dependencies, and module relationships.
Proactive context window management via token monitoring, intelligent extraction, and selective rehydration. Features predictive budget monitoring, context health indicators, and priority-based retention. Use when approaching token limits or needing to preserve essential context. Complements /transcripts and PreCompact hook with proactive optimization.
| 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:
~/.amplihack/.claude/commands/amplihack/ultrathink.md (278 lines)~/.amplihack/.claude/workflow/DEFAULT_WORKFLOW.md~/.amplihack/.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 follow this exact 5-step process:
Read(file_path="~/.amplihack/.claude/commands/amplihack/ultrathink.md")
Validation Checkpoint: Confirm ultrathink.md content is loaded before proceeding.
Analyze user request using keywords from canonical command:
Validation Checkpoint: Task type must be determined (Q&A, Investigation, Development, or Hybrid).
⛔ THIS IS A BLOCKING REQUIREMENT - Session will be terminated if skipped.
For Q&A tasks:
Read(file_path="~/.amplihack/.claude/workflow/Q&A_WORKFLOW.md")
For Investigation tasks:
Skill(skill="investigation-workflow")
For Development tasks:
Skill(skill="default-workflow")
For Hybrid tasks:
Skill(skill="investigation-workflow")
# After investigation completes:
Skill(skill="default-workflow")
Validation Checkpoint: Confirm Skill tool was invoked OR proceed to Step 4.
Only if skill invocation fails, use Read tool as fallback:
Investigation fallback:
Read(file_path="~/.amplihack/.claude/workflow/INVESTIGATION_WORKFLOW.md")
Development fallback:
Read(file_path="~/.amplihack/.claude/workflow/DEFAULT_WORKFLOW.md")
Validation Checkpoint: Confirm workflow content is loaded in context.
Follow all steps from loaded workflow without skipping.
Validation Checkpoint: All workflow steps must be completed.
Power-Steering Detection:
Self-Check Protocol: Before proceeding past Step 3, verify:
No Shortcuts:
Benefits:
Trade-offs:
This pattern aligns with amplihack philosophy: ruthless simplicity through elimination of duplication.
~/.amplihack/.claude/commands/amplihack/ultrathink.md~/.amplihack/.claude/skills/default-workflow/~/.amplihack/.claude/skills/investigation-workflow/~/.amplihack/.claude/workflow/DEFAULT_WORKFLOW.md~/.amplihack/.claude/workflow/INVESTIGATION_WORKFLOW.md