用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill shipflow-status命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | shipflow-status |
| description | Quick cross-project git dashboard — branches, uncommitted changes, sync status, last commits |
| disable-model-invocation | true |
| argument-hint | (no arguments needed) |
pwdcat /home/claude/shipflow_data/PROJECTS.md 2>/dev/null | head -20Read /home/claude/shipflow_data/PROJECTS.md to get the list of all projects with their paths. Also include ShipFlow itself (/home/claude/ShipFlow).
For each project path, run these git commands (skip if path doesn't exist or isn't a git repo):
git -C [path] rev-parse --abbrev-ref HEAD 2>/dev/null # Current branch
git -C [path] status --porcelain 2>/dev/null | wc -l # Uncommitted changes count
git -C [path] rev-list --count @{upstream}..HEAD 2>/dev/null # Commits ahead
git -C [path] rev-list --count HEAD..@{upstream} 2>/dev/null # Commits behind
git -C [path] log -1 --format="%ar — %s" 2>/dev/null # Last commit
git -C [path] stash list 2>/dev/null | wc -l # Stashed changes
Run all projects in parallel using the Task tool with multiple agents, or sequentially with Bash if fast enough (<10s total).
══════════════════════════════════════════════════════════════════════
GIT STATUS DASHBOARD — [date]
══════════════════════════════════════════════════════════════════════
| Project | Branch | Uncommitted | Ahead | Behind | Last Commit |
|------------------|----------|-------------|-------|--------|-----------------------|
| my-robots | main | 0 | 0 | 0 | 2d ago — Add SEO crew |
| tubeflow | feat/ui | 3 | 2 | 0 | 1h ago — Fix layout |
| GoCharbon | main | 0 | 0 | 5 | 3d ago — New post |
| ... | | | | | |
| ShipFlow | main | 1 | 1 | 0 | 10m ago — Update tasks|
──────────────────────────────────────────────────────────────────────
NEEDS ATTENTION
⚠️ tubeflow — 3 uncommitted changes on feat/ui
⚠️ GoCharbon — 5 commits behind remote
⚠️ ShipFlow — 1 uncommitted change (TASKS.md?)
QUICK ACTIONS
→ tubeflow: /shipflow-ship to commit and push
→ GoCharbon: git -C /home/claude/GoCharbon pull
Only show NEEDS ATTENTION if there are issues. Issues to flag: