ソース情報
- リポジトリ
- 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-reviewコマンドは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-review |
| description | Review REVIEW-status tasks as PM, check code quality, then approve or reject. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Glob, Grep |
Review the REVIEW tasks agents submitted. Check code quality and approve (DONE) or reject (revert to TODO).
Never use the Claude Code built-in tools (TaskCreate, TaskList, TaskUpdate, TaskGet). Task lookup/status-change MUST use the Marblo MCP tools:
get_all_tasks,update_task_status,add_activity,get_task_activities
Filter get_all_tasks to only REVIEW status.
👀 Awaiting review: {n}
━━━━━━━━━━━━━
1. TASK-002: User API (backend)
Submitted: 30 min ago | Owner: backend-agent
2. TASK-004: URL input screen (frontend)
Submitted: 15 min ago | Owner: frontend-agent
For each task, check the following:
Use get_task_activities to understand what the agent did.
Read and review the files listed in the task's scope field.
□ Feature completeness: are all requirements from the task description implemented?
□ Code quality: did it follow the skill file's rules (framework, patterns)?
□ Tests included: is there test code and does it pass?
□ Error handling: are exceptional cases handled properly?
□ Scope compliance: did it avoid modifying files outside scope?
□ Security: no vulnerabilities like SQL injection, XSS?
Show the review result to the user:
📝 TASK-002: User API review result
━━━━━━━━━━━━━━━━━━━━━━━━━
✅ Feature completeness: signup, login, profile lookup — OK
✅ Code quality: FastAPI + Pydantic v2 — OK
✅ Tests: 5/5 pass — OK
⚠️ Error handling: no password validation
✅ Scope compliance: OK
Verdict: approve or reject?
update_task_status → DONE✅ TASK-002 approved → DONE
🔓 TASK-004, TASK-005 are now workable
update_task_status → TODO (include a feedback comment)add_activity:
❌ TASK-002 rejected → TODO
Feedback: "Add password validation (8+ chars, include special char).
Make error messages user-friendly too."
After handling all REVIEWs, show the status:
📊 Review complete:
Approved: {n}
Rejected: {n}
Newly available tasks: {list}
Next action: /tf-work or re-run the agents