ソース情報
- リポジトリ
- marblo-app/marblo
- ソースの最終更新活動
- 2026年8月1日 01:19
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/marblo-app/marblo --skill tf-spawn-agentsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Use before merging agent-generated code — review a diff for correctness, security, and simplicity, and report findings ranked by severity.
Analyze requirements and map out components, roles, and dependencies.
Bulk-create tasks in Marblo MCP from the analysis results.
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.