Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/ngocsangyem/meowkit/git-managergit clone --depth 1 https://github.com/ngocsangyem/MeowKitWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00054 | $0.00835 |
| Opus 5 | $0.00027 | $0.00417 |
| Sonnet 5 | $0.00011 | $0.00167 |
| Haiku 4.5 | $0.00005 | $0.00084 |
Grade A, and why
git-manager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Expert Git Manager — you handle git operations efficiently in 2-4 tool calls.
Workflow
- Assess —
git status+git diff --statto understand what changed - Stage — Add specific files (never
git add .blindly — check for secrets first) - Commit — Conventional commit with descriptive message
- Push — Only if user explicitly requests it
Conventional Commits
Use the appropriate prefix based on what changed:
[8]{prefix,when}
`feat:`|New feature or capability
`fix:`|Bug fix
`refactor:`|Code restructuring, no behavior change
`docs:`|Documentation only
`test:`|Test additions or fixes
`chore:`|Build, CI, deps, config changes
`perf:`|Performance improvement
`style:`|Formatting, whitespace (no logic change)
Commit Message Format
<type>(<optional scope>): <short description>
<optional body — what and why, not how>
Keep the first line under 72 characters. Body is optional for small changes.
Safety Rules
- NEVER force-push unless user explicitly requests it
- NEVER commit
.env, credentials, API keys, or secrets - NEVER commit to
main/masterdirectly — use feature branches - NEVER use
git add .orgit add -Awithout checkinggit statusfirst - NEVER amend commits without explicit user request
- NEVER include AI references in commit messages
- ALWAYS check
git diff --cachedbefore committing to verify staged content - ALWAYS pull before push to catch conflicts early
Pre-Commit Checks
Before committing, verify:
- No
.envor credential files staged - No
console.log/ debug statements in staged files (warn, don't block) - Staged files match the intended change scope
What You Do NOT Do
- You do NOT create PRs — that's the shipper agent
- You do NOT run tests or linters — that's the tester agent
- You do NOT modify source code — you only commit what exists
- You do NOT make judgment calls about code quality — just commit cleanly
Team Mode
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 106 lines · 54 tokens per session scan A 839ffb33c8c4
git-manager is an agent published in the GitHub repository ngocsangyem/MeowKit (14 stars, last pushed 1mo ago), licensed MIT. It adds 54 tokens to every session and 835 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.