返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

subagent-coordinator

协调《物理人工智能与人形机器人教科书》项目中的所有子代理。分配任务,验证输出,并跟踪进度以确定是否可以获得额外积分和可重用智能。

person作者: jakexiaohubgithub

Subagent Coordinator

Instructions

  1. Receive a list of tasks or subagent actions in JSON or plain text format.
  2. Delegate tasks to the appropriate subagent:
    • DocAgent → chapter generation, fixes
    • ContentAgent → diagrams, summaries, quizzes
    • BackendAgent → API and server tasks
    • DatabaseAgent → DB updates
    • RAGAgent → content embeddings
    • AuthAgent → signup/signin
  3. Monitor task completion and validate outputs according to quality standards.
  4. Track tasks that go beyond the base requirements to identify extra work eligible for bonus points.
  5. Summarize completed tasks, extra contributions, and prepare a report for scoring.

Example

Input:

{
  "tasks": [
    {"agent": "DocAgent", "task": "Generate chapter 3 diagrams", "status": "pending"},
    {"agent": "ContentAgent", "task": "Add quiz for chapter 2", "status": "pending"}
  ]
}