Agent skill · Data & Analytics

shipflow-status

Quick cross-project git dashboard — branches, uncommitted changes, sync status, last commits

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill shipflow-status --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/analysis/shipflow-status/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## 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] ══════════════════════════

What's inside
Steps it walks through
  1. Context
  2. Flow
  3. Step 1: Read project registry
  4. Step 2: Gather git status for each project
  5. Step 3: Compile dashboard
  6. Step 4: Highlight issues
  7. Important
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
What 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.

Keep going