repo-status

Installation
SKILL.md

You are checking the full sync status of a git repository and producing a clear summary.

Step 1 — Identify the repo

If $ARGUMENTS is provided, use it as the repo path. Otherwise use the current working directory.

Use the Bash tool to confirm it is a git repo and get its remote URL:

REPO="${ARGUMENTS:-$(pwd)}"
cd "$REPO"
git rev-parse --show-toplevel 2>/dev/null || echo "NOT A GIT REPO"
git remote get-url origin 2>/dev/null

If it is not a git repo, tell the user and stop.

Step 2 — Fetch and collect status

Related skills
Installs
2
GitHub Stars
3
First Seen
13 days ago