소스 정보
- 저장소
- 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-work명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-work |
| description | Claim a task, code per the skill-file rules, and auto-log progress as you go. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Glob, Grep, Write, Edit |
Grab one task and code it per the skill file's rules. All progress is automatically recorded in Marblo.
Never use the Claude Code built-in tools (TaskCreate, TaskList, TaskUpdate, TaskGet). Task lookup/status-change/logging MUST use the Marblo MCP tools:
get_available_tasks,claim_task,update_task_status,add_activity,submit_for_review,check_feedback,get_task_activities,get_agent_skill
Use get_available_tasks to see the tasks you can handle.
If there are several, show the user options:
📋 Workable tasks:
1. TASK-003: AI summary API (backend, priority: 4) ← recommended (high priority)
2. TASK-004: URL input screen (frontend, priority: 4)
3. TASK-008: Docker setup (devops, priority: 2)
Which task to work on? (number, or '1' to auto-select)
claim_task to claim the task.update_task_status.get_agent_skill.🔧 Starting work:
Task: TASK-003 — AI summary API
Role: backend
scope: backend/routes/summarize.py, backend/services/ai.py
Skill rules: FastAPI + async/await, pytest required, HTTPException error handling
Call add_activity automatically as you work:
| Moment | Example log |
|---|---|
| File created | "created backend/routes/summarize.py — POST /api/summarize endpoint" |
| Major logic done | "Claude API integration done — prompt template + streaming response" |
| Test written | "test_summarize.py — wrote 3 tests" |
| Test run | "pytest result: 3/3 pass" |
| Issue occurred | "⚠️ API timeout — changed 30s → 60s" |
| Decision | "limited summary length to 500 chars (token saving)" |
[action] [target] — [details]
Examples:
check_feedback to check whether there is PM feedback.submit_for_review.✅ Work complete:
TASK-003: AI summary API → submitted for REVIEW
Deliverables:
• backend/routes/summarize.py (new)
• backend/services/ai.py (new)
• tests/test_summarize.py (new)
• backend/models.py (modified — summary column)
Tests: 3/3 pass