hathor-wallet-lib: Skill for Claude Code

.claude/skills/hathor-release/SKILL.md

hathor-release is a skill for Claude Code from HathorNetwork/hathor-wallet-lib. It costs 55 tokens per session (752 once invoked), scanned A, original, MIT.

A release workflow for Hathor wallet-lib, a software library for working with Hathor wallets. It covers opening release pull requests and increasing the library version by a major, minor, or patch change.

In plain words
What is it for?
Use it to start a release from the master branch to the release branch or create a pull request that bumps the library version.
Why use it?
It reduces missed steps in releases, such as choosing reviewers, applying labels, updating the project board, or targeting the correct branch.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is HathorNetwork/hathor-wallet-lib's own configuration. It tells Claude Code how to work on hathor-wallet-lib itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything hathor-wallet-lib configures →

Reuse

Borrowing it

Nothing to install: this file belongs to HathorNetwork/hathor-wallet-lib. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/HathorNetwork/hathor-wallet-lib/master/.claude/skills/hathor-release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/HathorNetwork/hathor-wallet-lib

Made for: Claude Code.

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 hathor-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/hathornetwork/hathor-wallet-lib/hathor-release/github.svg)](https://agentmods.dev/skills/hathornetwork/hathor-wallet-lib/hathor-release)
Your own site
<a href="https://agentmods.dev/skills/hathornetwork/hathor-wallet-lib/hathor-release"><img src="https://agentmods.dev/badge/skills/hathornetwork/hathor-wallet-lib/hathor-release/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 hathor-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/hathornetwork/hathor-wallet-lib/hathor-release"><img src="https://agentmods.dev/badge/skills/hathornetwork/hathor-wallet-lib/hathor-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 752 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.00055 $0.00752
Opus 5 $0.00028 $0.00376
Sonnet 5 $0.00011 $0.00150
Haiku 4.5 $0.00006 $0.00075

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

Security

Grade A, and why

hathor-release 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 11d 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.

.claude/skills/hathor-release/SKILL.md · 115 lines

How it starts

The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Hathor Release Process

Commands

  • /hathor-release init <version> - Initiate release process (PR master → release)
  • /hathor-release bump <type> - Bump version (minor|patch|major)

1. Initiate Release (init)

Create PR from master to release branch.

Steps

  1. Get current version from package.json
  2. Create PR using gh:
gh pr create \
  --base release \
  --head master \
  --title "Release v<VERSION>" \
  --body "$(cat <<'EOF'
### Description

Start the release process for version `<VERSION>`.
This PR will merge any changes on `master` into `release` branch.
EOF
)" \
  --label "enhancement" \
  --reviewer "<CODEOWNER>,<RECENT_DEV>"
  1. Add to GitHub project:
gh pr edit <PR_NUMBER> --add-project "Hathor Network"

Reviewer Selection

  • Code owner: Check .github/CODEOWNERS (currently @pedroferreira1)
  • Recent dev: Run git log --oneline -20 --format="%an" | grep -v "<CODEOWNER>" | head -1 to find last contributor other than code owner

2. Bump Version (bump)

Create version bump PR on release branch.

Steps

  1. Checkout and update release branch:
git checkout release
git pull --rebase
  1. Bump version (no git tag):
npm version <TYPE> --no-git-tag-version

Where <TYPE> is minor, patch, or major.

  1. Get new version from package.json

  2. Create bump branch and commit:

git checkout -b chore/bump-v<NEW_VERSION>
git add package.json package-lock.json
git commit -m "chore: bumped to v<NEW_VERSION>"
git push -u origin chore/bump-v<NEW_VERSION>
  1. Create PR:
gh pr create \
  --base release \
  --head chore/bump-v<NEW_VERSION> \
  --title "chore: bump v<NEW_VERSION>" \
  --body "$(cat <<'EOF'
### Acceptance Criteria
- Bump to v<NEW_VERSION>

### Security Checklist
- [x] Make sure you do not include new dependencies in the project unless strictly necessary and do not include dev-dependencies as production ones. More dependencies increase the possibility of one of them being hijacked and affecting us.
EOF
)" \
  --label "enhancement" \
  --reviewer "<CODEOWNER>,<RECENT_DEV>"

Read the full file on GitHub · 115 lines

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. 11d ago First seen · 115 lines · 55 tokens per session scan A 8be1441229c1

Subscribe to this mod's changes

hathor-release is a skill published in the GitHub repository HathorNetwork/hathor-wallet-lib (22 stars, last pushed 1mo ago), licensed MIT. It adds 55 tokens to every session and 752 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-30.