用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xin2017338/vitos-pizza --skill subagents命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | subagents |
| description | Delegate exploration, planning, and implementation to Vito's Pizzeria subagents (scout, planner, worker). |
Use the subagent tool to delegate work to focused child agents with isolated context.
| Mode | Constraint |
|---|---|
| plan | Read-only. Scout (optional) → planner. Never call worker. |
| agent / execute | May call worker after a plan is approved (or for focused implementation). |
| Agent | Use when |
|---|---|
scout | Fast codebase recon; compressed context for handoff |
planner | Turn context + requirements into an implementation plan |
worker | Execute an approved plan with narrow, correct edits |
{ "agent": "planner", "task": "Create an implementation plan for ..." }
{
"chain": [
{ "agent": "scout", "task": "Map the auth module and key entry points" },
{ "agent": "planner", "task": "Create a plan based on {previous}" }
]
}
{
"tasks": [
{ "agent": "scout", "task": "Scan packages/subagents" },
{ "agent": "scout", "task": "Scan packages/permission-system" }
]
}
Then call planner with the combined findings.
{
"chain": [
{ "agent": "scout", "task": "Map relevant code" },
{ "agent": "planner", "task": "Create a plan based on {previous}" },
{ "agent": "worker", "task": "Implement the plan from {previous}" }
]
}
{ "agent": "worker", "task": "...", "async": true }
{ "id": "<runId>" }
via the wait tool.
Other Vito's Pizzeria extensions can request subagent runs via pi.events RPC (subagents:rpc:run). Import helpers from @vitos-pizza/subagents/rpc/client if needed.