一键导入
supervisor-conversation
Resume pattern and agent monitoring for supervisor-worker communication
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Resume pattern and agent monitoring for supervisor-worker communication
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load CI/CD pipeline configuration and deployment information when working with automation or deployments
Load database relationships, shared resources, and schema information when working with data models or database configuration
Load development environment information including folder structure, OrbStack setup, and system configuration
Load port mappings for all projects when working with networking, docker-compose, or service configuration
Load GitHub/GitLab repository information when working with git, CI/CD, or repository management
Load server information, infrastructure details, and access patterns when working with deployment or server configuration
| name | supervisor-conversation |
| description | Resume pattern and agent monitoring for supervisor-worker communication |
| disable-model-invocation | true |
TaskOutput(task_id, block=false, timeout=5000)
When peeking at agent output, look for:
When an agent exits with questions, resume it with answers:
Task(resume=agent_id, prompt="Answers to your questions:
1. The correct route path is /api/v1/processes/
2. The GitLab PAT is glpat-xxx
3. The service runs on port 9003
Continue with your task using this information.")
When an agent reports NEED_CAPABILITY, the supervisor must decide: grant or deny.
| Grant | Deny |
|---|---|
| Skill is directly needed for the agent's scoped task | Skill would lead to work outside the agent's scope |
| Agent can't complete acceptance criteria without it | Another agent is already handling that domain |
| The skill provides facts (credentials, ports) not logic | Agent is fishing — request is vague or exploratory |
Task(resume=agent_id, prompt="CAPABILITY GRANTED: Read ~/.claude/skills/{skill-name}/SKILL.md then continue with your task.")
Task(resume=agent_id, prompt="CAPABILITY DENIED: {reason}. Your scope is: {restate scope}. Complete what you can with your current skills and report PARTIAL if needed.")
TaskStop(task_id)
For each running agent:
├── Completed?
│ ├── Yes → Process results. Launch follow-up if needed.
│ └── No → Continue...
├── Has STATUS: BLOCKED?
│ ├── Yes → Read questions. Resume with answers.
│ └── No → Continue...
├── Making progress since last check?
│ ├── Yes → Leave it alone.
│ └── No → Is this the 2nd stale check?
│ ├── Yes → Kill it. Re-launch with narrower scope.
│ └── No → Note as "watch". Check again next cycle.
└── Done checking all agents.
└── Launch new timer. Launch new work agents if capacity available.