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 skills add Arakiss/galdr --skill galdr-demogit clone --depth 1 https://github.com/Arakiss/galdrWrote 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/arakiss/galdr/galdr-demo)<a href="https://agentmods.dev/skills/arakiss/galdr/galdr-demo"><img src="https://agentmods.dev/badge/skills/arakiss/galdr/galdr-demo/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/arakiss/galdr/galdr-demo"><img src="https://agentmods.dev/badge/skills/arakiss/galdr/galdr-demo.svg" alt="Reviewed on agentmods" width="80" 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.00061 | $0.00496 |
| Opus 5 | $0.00030 | $0.00248 |
| Sonnet 5 | $0.00012 | $0.00099 |
| Haiku 4.5 | $0.00006 | $0.00050 |
Grade A, and why
galdr-demo 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 3d 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
galdr-demo — git change summary to a file
Collects a git repository's status and latest commits and dumps them as a readable Markdown summary. Distilled with galdr from a real recording.
Goal
Given a git repository, produce a short Markdown file describing what changed: the uncommitted working tree (status) and the latest commits (log). It serves as a quick change note without opening the repo.
Parameters
REPO— path to the git repository. Defaults to the current working directory.OUT— path of the output Markdown file.N— number of commits to include (5 in the recording).
Procedure
-
Working tree status:
git -C <REPO> status --short. If the output is empty, there are no uncommitted changes; note that in the summary. -
Latest commits:
git -C <REPO> log --oneline -<N>. -
Write the summary to
<OUT>in this shape:# Recent changes ## Uncommitted <status output, or "(clean tree)"> ## Latest N commits <log output> -
Verify: read
<OUT>and check it has content (it did not come out empty).
Success criteria
- Both git commands exit with code 0. If
<REPO>is not a git repo, both fail: abort with a clear message. <OUT>exists and contains the two sections with real repo data.
Robustness
- Precondition:
<REPO>must be a git repository. Check it withgit -C <REPO> rev-parsebefore steps 1-2. - If
logfails because the repo has no commits yet, write "(no commits yet)" in that section instead of aborting. - Do not include absolute paths with sensitive data if you are going to share the summary.
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.
- 3d ago First seen · 56 lines · 61 tokens per session scan A 27478c2c9017
galdr-demo is a skill published in the GitHub repository Arakiss/galdr (2 stars, last pushed 3d ago), licensed MIT. It adds 61 tokens to every session and 496 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-09-08.
Other skills, from other repositories
work-unit-commits
Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.
git-commit
Generate conventional commit messages for Java projects. Use when user says "commit", "create commit", "commit changes", or after completing code changes that need to be committed.
truecourse-hooks
Install, configure, or remove the TrueCourse pre-commit hook.
memstack-security-git-guard
Use when the user says 'git-guard', 'check git protection', 'is this repo protected', 'verify gitleaks', 'set up git hooks', 'install git-guard', or wants to confirm a repo blocks secrets and internal files before commit. This is an installer and verifier, NOT a scanner (gitleaks does the actual scanning). Do NOT use…
ship
Commit, push, and optionally create or update a PR for the current staged changes. Use when the user asks to "ship", "ship it", "ship changes", "commit push and PR", or "ship this".
stage
Stage implementation changes for commit with precise file selection. Use when the user asks to "stage changes", "stage files", "add files to staging", or "prepare changes for commit".