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 jessepinkman9900/claude-second-brain --skill package-releasegit clone --depth 1 https://github.com/jessepinkman9900/claude-second-brainWrote 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/jessepinkman9900/claude-second-brain/package-release)<a href="https://agentmods.dev/skills/jessepinkman9900/claude-second-brain/package-release"><img src="https://agentmods.dev/badge/skills/jessepinkman9900/claude-second-brain/package-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.
<a href="https://agentmods.dev/skills/jessepinkman9900/claude-second-brain/package-release"><img src="https://agentmods.dev/badge/skills/jessepinkman9900/claude-second-brain/package-release.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.00088 | $0.01286 |
| Opus 5 | $0.00044 | $0.00643 |
| Sonnet 5 | $0.00018 | $0.00257 |
| Haiku 4.5 | $0.00009 | $0.00129 |
Grade A, and why
package-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 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 — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/package-release
Bumps the npm package version and opens a release PR for claude-second-brain. Does not publish to npm directly — publishing happens automatically via GitHub Actions after the PR is merged.
This skill only touches package.json. If you also want the docs ship log updated in the same PR, run /release instead — it orchestrates /update-docs and this skill together.
When to use
- You've already synced docs (or don't need to) and just want to cut a version.
- The current branch must have commits relative to
main. - For the full combined flow (docs + version), prefer
/release.
Argument
Pass a version bump type to skip the confirmation prompt:
| Argument | Effect |
|---|---|
| (none) | Analyze changes and suggest a bump; ask user to confirm |
patch |
Bump patch version (e.g. 0.1.0 → 0.1.1) |
minor |
Bump minor version (e.g. 0.1.0 → 0.2.0) |
major |
Bump major version (e.g. 0.1.0 → 1.0.0) |
0.3.0 |
Use this exact version |
Steps
Run each step in order. Stop and report if any step fails.
Step 1 — Capture current state
Run these commands to understand what's changed:
# Current branch
git branch --show-current
# Commits on this branch not yet in main
git log main..HEAD --oneline
# File-level diff summary vs main
git diff main...HEAD --stat
# Current version
cat package.json | grep '"version"'
Record: the branch name, current version, list of commits, and all files changed.
Step 2 — Summarize changes
Categorize all changes from Step 1 into this format:
## Changes in this release
**New features:**
- (e.g. new skill added, new CLI flag, new template file)
**Bug fixes:**
- (e.g. correctness fix in bin/create.ts, template fix)
**Refactors / cleanup:**
- (e.g. code reorganization, no behavior change)
**Docs:**
- (e.g. README updates, CLAUDE.md edits)
Show this changelog to the user. Skip empty categories.
Step 3 — Determine version bump
Read the current version from package.json. Apply semver logic to suggest the next version:
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 · 164 lines · 88 tokens per session scan A 1a4b32a3cc31
package-release is a skill published in the GitHub repository jessepinkman9900/claude-second-brain (47 stars, last pushed 4mo ago), licensed MIT. It adds 88 tokens to every session and 1,286 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-08-30.
Other skills, from other repositories
git-workflow-and-versioning
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…
finishing-a-development-branch
A process for finishing a completed development branch. A branch is a separate line of code changes that can later be merged or submitted as a pull request.
skillshare-changelog
Generate CHANGELOG.md entry from recent commits in conventional format. Also syncs the website changelog page. Use this skill whenever the user asks to: generate a changelog, document what changed between tags, or create a new CHANGELOG entry. If you see requests like "write the changelog for v0.17", "what changed…
skillshare-release
End-to-end release workflow for skillshare. Runs tests, generates changelog (via /changelog), optionally writes local RELEASENOTES, updates version numbers, commits, and drafts announcements. Use when the user says "release", "prepare release", "cut a release", "release v0.19", or any request to publish a new version.…
github-release-briefing-skill
Create a source-linked briefing for the latest published GitHub release of a public repository. Use for engineering teams tracking a dependency release; do not use it to publish releases or change repositories.
git-wrapup
Land working-tree changes as logical commits — the work grouped by concern, topped by a release commit (version bump, changelog, regenerated artifacts) and an annotated tag. Verify, commit, tag. Stops at "committed and tagged locally" — no push, no publish. The release-and-publish skill picks up from here. Distilled…