スキル一覧に戻る
jiamingkong

delegation

by jiamingkong

A minimalist python implementation of CLI coding agents, using interleaved thinking (think with tools) and dynamic skill loading. The whole core mechanism implemented in two Python files.

4🍴 2📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: delegation description: Agent delegation and orchestration capabilities to split tasks and run them in parallel. allowed-tools:

  • list_available_skills
  • delegate_task
  • check_task_status

Delegation & Orchestration Skill

This skill allows the main agent to act as an orchestrator, dispatching sub-tasks to independent sub-agents. This is useful for parallelizing work or isolating complex sub-problems.

Tools

list_available_skills

View which skills (servers) can be assigned to sub-agents.

  • returns: A list of available skills.

delegate_task

Spawns a new autonomous sub-agent process to handle a specific task. The sub-agent runs asynchronously.

  • task_description: Clear instructions for the sub-agent.
  • skills_needed: List of skill names the sub-agent requires (e.g., ["web_fetch", "office_reader"]).
  • returns: A task_id for tracking.

check_task_status

Retrieves the status (RUNNING/COMPLETED) and the final output of a delegated task.

  • task_id: The ID returned by delegate_task.
  • returns: Status message and result content if finished.

Usage Pattern

  1. Analyze the user's complex request.
  2. Break down the request into sub-tasks.
  3. List skills to see what's available for sub-agents.
  4. Delegate each sub-task using delegate_task.
  5. Monitor progress using check_task_status.
  6. Integrate the results from sub-agents into a final answer.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です