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 skills/kaltinril/kernsmith/commitnpx skills add kaltinril/Kernsmith --skill commitgit clone --depth 1 https://github.com/kaltinril/KernsmithWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/kaltinril/kernsmith/commit)<a href="https://agentmods.dev/skills/kaltinril/kernsmith/commit"><img src="https://agentmods.dev/badge/skills/kaltinril/kernsmith/commit.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00077 | $0.01200 |
| Opus 5 | $0.00039 | $0.00600 |
| Sonnet 5 | $0.00015 | $0.00240 |
| Haiku 4.5 | $0.00008 | $0.00120 |
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 yesterday.
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 — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Commit
Automate the full git commit workflow in one shot. No user intervention needed between steps unless something looks wrong.
Important
Run all git commands directly (e.g., git status) without prefixing cd <path> &&. The Bash tool already runs in the project's working directory, and the cd prefix breaks permission allow-list matching on Bash(git *).
Steps
1. Gather context (run all three in parallel)
git status # overview of staged, unstaged, untracked (NEVER use -uall)
git diff --stat # summary of staged + unstaged changes
git log --oneline -5 # recent messages for style matching
2. Check for phase doc updates
Before drafting the commit message, scan the diff for changes that should be reflected in project docs. If changes touch phase deliverables (new API methods, schema changes, parser updates, etc.), check whether plan/master-plan.md or the relevant plan/phase-*.md file needs updating. If so, make those edits and include them in the commit. Don't create a separate commit for doc updates — bundle them together.
2b. Update phase document status
If the changes being committed implement work from a specific phase, update the phase's status in both the phase document and the master plan. This keeps the project's planning docs in sync with reality.
How to determine which phase is affected:
- Look at the files being changed and match them to phase deliverables
- Check commit message context (e.g., "Phase 55" in the message or branch name)
- If unsure, skip this step — only update when you're confident
What to update in the phase doc (plan/phase-*.md):
- Update the
> **Status**:line in the header (e.g.,Planning→In Progress,In Progress→Complete, orPlanning→Partialif only some items were done)
What to update in plan/master-plan.md:
- Update the status column in the Active Plans table to match
- Update the phase heading in the Phased Implementation section (e.g.,
(PLANNING)→(IN PROGRESS)or(COMPLETE))
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.
- yesterday First seen · 101 lines · 77 tokens per session scan A 486bbcfd7d6a
commit is a skill published in the GitHub repository kaltinril/Kernsmith (9 stars, last pushed 8d ago), licensed MIT. It adds 77 tokens to every session and 1,200 once invoked, about $0.0004 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-09-04.
Other skills, from other repositories
rebuild-branch
Rebuild a stale branch by cherry-picking each commit onto a fresh branch off main, using a ralph-loop to validate each commit (build, test, format, lint, optional e2e) before moving on. Use when a branch has gone stale, has merge conflicts with main, or needs to be split out of a long-lived feature branch.
setup-husky-dotnet
Use when configuring Git hooks in .NET projects before team commits occur, to enforce commit message standards and code formatting automatically.
commit
Commit session changes to git. Identify files from session context, ask user pick message, run validation only if needed. Use when user want commit / save / land changes.
committer
Runs when a ticket reaches Done. Commits only the changes related to that ticket, at hunk-level if needed. Never pushes.
windows-compatibility
Cross-platform path handling and command patterns.
source-command-git-cm
Stage all files and create a commit.