shipflow-status
Quick cross-project git dashboard — branches, uncommitted changes, sync status, last commits
npx skills add majiayu000/claude-skill-registry --skill shipflow-status --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
## Context - Current directory: !`pwd` - PROJECTS.md: !`cat /home/claude/shipflow_data/PROJECTS.md 2>/dev/null | head -20` ## Flow ### Step 1: Read project registry Read `/home/claude/shipflow_data/PROJECTS.md` to get the list of all projects with their paths. Also include ShipFlow itself (`/home/claude/ShipFlow`). ### Step 2: Gather git status for each project For each project path, run these git commands (skip if path doesn't exist or isn't a git repo): ```bash 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). ### Step 3: Compile dashboard ``` ══════════════════════════════════════════════════════════════════════ GIT STATUS DASHBOARD — [date] ══════════════════════════
- Context
- Flow
- Step 1: Read project registry
- Step 2: Gather git status for each project
- Step 3: Compile dashboard
- Step 4: Highlight issues
- Important
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 changesWhat does the shipflow-status skill do?
Quick cross-project git dashboard — branches, uncommitted changes, sync status, last commits
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill shipflow-status --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
