galdr-demo

galdr-demo is a skill for Claude Code, Codex from Arakiss/galdr. It costs 61 tokens per session (496 once invoked), scanned A, original, MIT.

A Git repository change-summary skill that writes a Markdown file containing working-tree status and recent commits. Git is a tool for tracking changes to files and recording commits.

In plain words
What is it for?
Use it to create quick changelogs, review uncommitted work, or record what recently changed in a repository.
Why use it?
It provides a readable change note without manually checking the repository and copying its status and commit history.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create quick changelogs, review uncommitted work, or record what recently changed in a repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arakiss/galdr/galdr-demo
Install

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.

Any agent
npx skills add Arakiss/galdr --skill galdr-demo
Clone the repo
git clone --depth 1 https://github.com/Arakiss/galdr

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for galdr-demo

README.md
[![agentmods](https://agentmods.dev/badge/skills/arakiss/galdr/galdr-demo/github.svg)](https://agentmods.dev/skills/arakiss/galdr/galdr-demo)
Your own site
<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.

agentmods 80×15 button for galdr-demo

Your own site · 80×15
<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>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 496 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash 27478c2c9017, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

examples/galdr-demo-SKILL.md · 56 lines

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

  1. Working tree status: git -C <REPO> status --short. If the output is empty, there are no uncommitted changes; note that in the summary.

  2. Latest commits: git -C <REPO> log --oneline -<N>.

  3. Write the summary to <OUT> in this shape:

    # Recent changes
    
    ## Uncommitted
    <status output, or "(clean tree)">
    
    ## Latest N commits
    <log output>
    
  4. 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 with git -C <REPO> rev-parse before steps 1-2.
  • If log fails 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.
Changes

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.

  1. 3d ago First seen · 56 lines · 61 tokens per session scan A 27478c2c9017

Subscribe to this mod's changes

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.