用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MadAppGang/magus --skill gtd-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Picks the browser-use agent brain LLM per task. Use when choosing a model for retry_with_browser_use_agent or a cloud session, or the user mentions a cheap, slow, or smart model.
Reference for the Browser Use MCP tools — parameters, returns, session lifecycle. Use when navigating, clicking, typing, evaluating JS, or extracting page content.
Visual UI debugging — screenshot capture and analysis, responsive layout checking at multiple viewport sizes, CSS validation via DOM state, visual regression detection, before/after state comparison.
正在显示 SKILL.md
基于 SOC 职业分类
| name | gtd-review |
| description | Weekly review automation for GTD workflow. Guides through inbox processing, project review, and next actions. |
| user-invocable | false |
Apply this skill when any of the following occur:
/gtd:reviewgtd-reviewer agent is invokedThis skill implements the full GTD Weekly Review protocol, adapted for developer workflows.
Gather stray papers and materials — In Claude Code context, this means: any TODOs in code recently touched, any items mentioned in chat that weren't captured.
Empty inbox — All inbox items should be processed before proceeding. If inbox > 0, prompt: "Your inbox has [N] items. Process them now before the weekly review? [Y/n]"
Review Next Actions — Go through each next action:
Review Projects — For each project:
Review Waiting For — For each waiting item:
Review Someday/Maybe — For each item:
Review upcoming deadlines — List any due dates in the next 14 days.
Brain dump — Ask: "Is there anything else on your mind? Take 2 minutes and dump everything you've been thinking about." Capture all responses to inbox.
Next week planning — Ask: "What are your top 3 next actions for this week?" Ensure these are in the Next Actions list with appropriate priority.
Review goals — Ask: "Are you making progress toward your larger goals? Any new projects to add?"
PR and code review queue — Ask: "Any pending code reviews, open PRs, or CI/CD issues in your Waiting For list?"
Tech debt audit — Surface Someday/Maybe items tagged or named with "refactor", "debt", "cleanup", "migrate" that are older than 30 days. Ask whether to promote or archive.
When running the review:
cat "${CWD}/.claude/gtd/tasks.json"
Generate and present each section with counts and ANSI colors via Bash echo.
For sections requiring user decisions, ask one question at a time. Wait for response before proceeding.
After all sections, update lastReview:
NOW=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
TMP="${CWD}/.claude/gtd/tasks.json.tmp.$$"
jq --arg now "$NOW" '.lastReview = $now' "${CWD}/.claude/gtd/tasks.json" > "$TMP" && mv "$TMP" "${CWD}/.claude/gtd/tasks.json"
WEEK=$(date +"%Y-W%V")
mkdir -p "${CWD}/.claude/gtd/reviews"
# Write markdown summary to .claude/gtd/reviews/${WEEK}.md
When running in quick mode, only cover:
Skip: full next actions review, projects review, someday review, and planning questions.