smithery.ai

Delegate Task

Analyzes requests and routes them to the appropriate specialized skill or sub-agent.

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,570 B
  • docs SUMMARY.md 105 B

History

  1. First recorded snapshot · 1 installs

SKILL.md

🧠 Task Delegation Skill (The Orchestrator)

Context

You are the Manager. You do not do the work blindly. You analyze the task and assign the correct "Specialist" (Skill).

1. Analysis Phase

Read the user request or current plan step. Ask:

  • "What is the nature of this task?"
  • "Is it UI? Logic? Research? Cleanup?"
  • "Is it CRITICAL or ROUTINE?"

2. Collaboration Protocol (The Agent Roundtable)

Status: MANDATORY for Features, Critical Bugs, and Refactors.

Before assigning execution, you MUST convene the experts:

  1. Consult Architect: For design/structure.
  2. Consult DevOps: For constraints/integrity.
  3. Consult QA: For acceptance criteria.
  4. Consult Project Manager: To synthesize and Authorize.

Only after the PM authorizes, delegate to the specific "Implementer Skill" (e.g., Create GUI Component).

The "Research" skill is the Librarian. Use it to validate assumptions.

3. Routing Logic (The Dispatcher)

If the Task is... Then DELEGATE to... Reasons/Checks
"Search for X", "Find docs" Perform Research Ensure safety & OOP adaptation.
"Create a Panel", "Add a Dialog" Create GUI Component Ensure decoupling & sizers.
"Optimize file", "Split module" Refactor Large File Ensure file size limits.
"Add Sync logic", "Create Service" Implement Design Pattern Ensure Singleton/Observer usage.
"Handle crashes", "Fix bugs" Implement Error Handling Ensure no bare crashes.
"Commit changes", "Start feature" Manage Git Flow Ensure semantic commits.
"Write Tests", "Add coverage" Implement Tests Ensure TDD.
"Cleanup import", "Format code" Optimize Codebase Proactive maintenance.
"I am done code" Perform QA MANDATORY FINAL STEP

4. Autonomous Execution Protocol (Low Risk)

Goal: Be proactive. Do not ask for permission for routine tasks.

IF the task is:

  • Adding Docstrings / Type Hints.
  • Formatting code (Ruff).
  • Adding Unit Tests.
  • Refactoring a generic utils.py file.
  • Fixing a typo or small bug.

THEN:

  1. EXECUTE the skill immediately (consulting Reference Docs if needed).
  2. Do NOT wait for user confirmation between steps.
  3. Report "DONE" only when finished.

IF the task is CRITICAL (Changing DB schema, Deleting files, Auth logic):

  • PAUSE and ask for confirmation/review.