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 ChrisLamDev/hermes-core-skills --skill checkpoints-and-rewindgit clone --depth 1 https://github.com/ChrisLamDev/hermes-core-skillsWrote 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/chrislamdev/hermes-core-skills/checkpoints-and-rewind)<a href="https://agentmods.dev/skills/chrislamdev/hermes-core-skills/checkpoints-and-rewind"><img src="https://agentmods.dev/badge/skills/chrislamdev/hermes-core-skills/checkpoints-and-rewind/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/chrislamdev/hermes-core-skills/checkpoints-and-rewind"><img src="https://agentmods.dev/badge/skills/chrislamdev/hermes-core-skills/checkpoints-and-rewind.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.00050 | $0.01432 |
| Opus 5 | $0.00025 | $0.00716 |
| Sonnet 5 | $0.00010 | $0.00286 |
| Haiku 4.5 | $0.00005 | $0.00143 |
Grade A, and why
checkpoints-and-rewind 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 9d 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 — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Checkpoints & Rewind
Overview
Before making risky or irreversible changes, create a checkpoint. If things go wrong, rewind to the checkpoint. This gives you the confidence to experiment without fear of breaking things.
Core principle: Every multi-file change starts with a safety net.
When to Use
- Before large refactors — Moving code, renaming files, changing architecture
- Before deleting anything — Files, directories, database data
- Before destructive git operations —
git reset,git rebase,git clean - Before trying experimental approaches — "Let's see if this works"
- At the start of any task that modifies 3+ files
- Before running auto-fix in code review (Step 7 of requesting-code-review)
Do NOT use for: Single-file edits, reading files, running tests, or any operation that's trivially undoable.
How to Create a Checkpoint
Method 1: Git Commit (Recommended)
# Before making changes
git add -A && git commit -m "[checkpoint] before <description>"
# Make your changes...
# If things go wrong:
git reset --hard HEAD~1
# If things go right:
# Keep the checkpoint commit, or squash it later
Method 2: Git Stash (For Experiments)
# Before making changes
git stash push -m "checkpoint: <description>"
# Make your changes... (starting from clean state)
# If things go wrong:
git stash pop # restore the checkpoint (undoes your changes)
# If things go right:
git stash drop # discard the checkpoint
Method 3: Manual Backup (No Git)
# Before making changes
cp -r important_file.ts important_file.ts.checkpoint
# Make your changes...
# If things go wrong:
cp important_file.ts.checkpoint important_file.ts
# Clean up after success:
rm important_file.ts.checkpoint
Naming Convention
Always include:
[checkpoint]prefix (easy to search in git log)- What you're about to do
- Date/time if helpful
Good:
[checkpoint] before refactoring ChantingHall to adapter pattern
[checkpoint] before trying experimental rendering approach
[checkpoint] before deleting old story-data.js
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.
- 9d ago First seen · 206 lines · 50 tokens per session scan A 3e81c0cdf889
checkpoints-and-rewind is a skill published in the GitHub repository ChrisLamDev/hermes-core-skills (9 stars, last pushed 2mo ago), licensed MIT. It adds 50 tokens to every session and 1,432 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-31.
Other skills, from other repositories
iterm2-layout
Configure iTerm2 workspace layouts with TOML. TRIGGERS - iTerm2 layout, workspace tabs, layout.toml, AutoLaunch.
pull-request-automation
Audits and improves the pull request workflow for a GitHub repository. Covers PR description templates, auto-labelling, CODEOWNERS, PR size checks, and branch protection rules. Invoked when the user asks to improve the PR process, set up PR automation, or add a PR template.
ship
Commit, push, create PR(s), and auto-finalize — full automation pipeline. Handles uncommitted changes and recently created PRs.
github-release-management
GitHub release orchestration — automated versioning, testing, deployment, and rollback. Use when cutting a release, tagging a version, drafting release notes, or coordinating a deploy/rollback workflow.
magpie-release-vote-tally
After the approval window closes, fetch the approval signal for an RC of , classify each reply as +1 / 0 / -1 and binding or non-binding against the configured roster, produce the tally summary, and draft the [RESULT] [VOTE] email. Never sends mail and never applies a label without explicit RM confirmation.
slackcli
Read, send, search, and manage Slack workspaces with the slackcli binary. Installs slackcli if missing and checks or proposes authentication first. Use whenever the user mentions Slack or pastes a slack.com link.