소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.