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 commands/elirantutia/vibeyard/commitgit clone --depth 1 https://github.com/elirantutia/vibeyardWhat 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.00000 | $0.00714 |
| Opus 5 | $0.00000 | $0.00357 |
| Sonnet 5 | $0.00000 | $0.00143 |
| Haiku 4.5 | $0.00000 | $0.00071 |
Grade A, and why
commit 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.
What it actually says
Create a git commit for the current staged (or unstaged) changes using a structured commit message convention.
Instructions
-
Inspect the working tree:
- Run
git status(never use-uall) to see untracked and modified files. - Run
git diff --stagedto see what is already staged.
- Run
-
Run tests:
- Run
npm testand verify all tests pass. - If any test fails, stop and report the failure — do NOT proceed with the commit.
- Run
-
Stage files if nothing is staged:
- If there are no staged changes but there are modified/untracked files, stage the relevant ones.
- Only stage files that are relevant to the current task or session. Do NOT stage unrelated changes that happen to exist in the working tree.
- NEVER stage files that likely contain secrets (
.env,credentials.json,.keyfiles, etc.). - Prefer staging specific files by name over
git add -A.
-
Analyze the changes and choose a prefix: Pick the most appropriate prefix based on the nature of the changes:
Prefix When to use Release Notes Section addNew feature, file, or capability Features featNew feature (alternative to add)Features implementCompleting a planned feature Features introduceIntroducing a new concept or component Features supportAdding support for something new Features fixBug fix or correction Fixes resolveResolving an issue Fixes patchSmall targeted fix Fixes correctCorrecting wrong behavior Fixes improveEnhancement to existing functionality Changes updateUpdating existing behavior or dependencies Changes removeRemoving code, features, or files Changes refactorCode restructuring without behavior change Changes bumpVersion bump Changes -
Format the commit message:
- Format:
<prefix> <concise lowercase description> - Examples:
add dark mode support,fix session resume on restart,refactor PTY lifecycle management - Keep it concise — one line, no period at the end
- Focus on the "what" and "why", not the "how"
- Format:
-
If
$ARGUMENTSis provided, use it as guidance or context for the commit message. It may be a description of what was done, a hint about the prefix to use, or a full message to refine. -
Create the commit using a HEREDOC for the message:
git commit -m "$(cat <<'EOF' <prefix> <description> EOF )" -
Verify by running
git statusafter the commit to confirm success. -
Do NOT push to the remote unless explicitly asked.
$ARGUMENTS
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 · 60 lines · 0 tokens per session scan A 60709df62b28
commit is a command published in the GitHub repository elirantutia/vibeyard (1,358 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 714 tokens. 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 commands, from other repositories
prepare-commit
Comment out inappropriate logging before commit.
mychanges
Summarize my recent git commits in standup format.
commit
Create a git commit with concise, bullet-point commit message.
commit-compact
Create a git commit.
git-pr-push
Create git commit and push branch as PR using git + GitHub CLI.
gen-commit-msg
Generate intelligent commit messages based on staged changes. Invoke with /gen-commit-msg.