ソース情報
- リポジトリ
- marblo-app/marblo
- ソースの最終更新活動
- 2026年8月1日 01:19
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/marblo-app/marblo --skill tf-workコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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.
| 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