smithery.ai

git-status

Present the status of the git repository to the user. Use to display the status of the repository after a successful git commit by the agent. The agent should not use this internally for its own needs.

First seen Apr 9, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,334 B
  • docs SUMMARY.md 219 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Present git status

GOAL: present the git status in a visually appealing and consistent way.

WHEN: use after a successful git commit by the agent when it needs to display the status of the repository to the user.

NOTE: The agent shouldn't use this internally for its own needs.

Efficiency directives

  • Optimize all operations for token and context efficiency
  • Batch operations on file groups, avoid individual file processing
  • Use parallel execution when possible
  • Target only relevant files
  • Reduce token usage

Git directives

For repository status

git status --porcelain=v2 --branch

References

The following reference file serves as a strict guideline:

  • references/git-status-unified.md: unified reference for parsing

git status output and presentation guidelines

Workflow

IMPORTANT: To avoid a recursive loop, DON'T invoke the git-status skill here.

  • Without using the git-status skill, get repository status
  • Use the reference files templates to present final status to user
  • DONE