用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/marblo-app/marblo --skill tf-spawn-agents命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tf-spawn-agents |
| description | Review tasks, spawn the right agents, and kick off work. |
| allowed-tools | Bash, Read, Glob, Grep, Write, Edit |
Review the created tasks and propose a suitable agent lineup. After user confirmation, spawn the agents and start work.
Never use the Claude Code built-in tools (TaskCreate, TaskList, TaskUpdate, TaskGet). Task lookup/update MUST use the Marblo MCP tools:
get_all_tasks,get_available_tasks,claim_task,update_task_status,add_activity,submit_for_review,get_agent_skill
get_all_tasks to fetch all the project's tasksget_available_tasks to see tasks that can start immediately🤖 Agent lineup proposal
━━━━━━━━━━━━━━━━━━━━━
📋 Total tasks: {N} | Ready to start: {M}
Proposed agents:
1. Backend Agent — owns TASK-001, TASK-002, TASK-003
2. Frontend Agent — owns TASK-004, TASK-005
3. Test Agent — owns TASK-006 (starts after TASK-003 is done)
Can run in parallel:
- Backend Agent + Frontend Agent (scopes separated)
Sequential wait:
- Test Agent → starts after Backend is done
Spawn these as-is?
Only spawn after getting the user's confirmation.
Use get_agent_skill to load each role's skill file:
skills/backend_agent.mdskills/frontend_agent.mdskills/test_agent.mdskills/devops_agent.mdskills/flutter_agent.mdBuild per-agent work instructions:
As Team Leader, spawn the agents:
for each available task:
1. claim_task (with agent_id)
2. update_task_status → IN_PROGRESS
3. do the actual coding work
4. add_activity to log progress
5. submit_for_review
6. check the next available task
🚀 Agent spawn complete
━━━━━━━━━━━━━━━━━━━
Spawned agents: {N}
- Backend Agent → working on TASK-001
- Frontend Agent → working on TASK-004
Currently in progress:
🔄 TASK-001: DB schema design (Backend Agent)
🔄 TASK-004: Main UI layout (Frontend Agent)
Waiting:
📋 TASK-002: User API (waiting for TASK-001)
📋 TASK-003: Payment API (waiting for TASK-001)
📋 TASK-006: Integration tests (waiting for TASK-003)
💡 Check progress: `/tf-status`
Keep checking while work is in progress:
check_feedbackTo stop midway, use
/tf-hold.