type-atlas: Skill for Claude Code

.skills/add-change/SKILL.md

add-change is a skill for Claude Code from tyler-mitchell/type-atlas. It costs 46 tokens per session (1,233 once invoked), scanned A, a copy of add-change, Apache-2.0.

A release-preparation skill that creates a Markdown file describing package changes for Bumpy, a tool that manages version bumps and changelogs.

In plain words
What is it for?
Reviewing changed files, identifying affected workspace packages, choosing major, minor, or patch changes, and creating a bump file.
Why use it?
It turns code changes into the information release tools need, helping keep package versions and changelogs aligned.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is tyler-mitchell/type-atlas's own configuration. It tells Claude Code how to work on type-atlas 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 type-atlas configures →

Reuse

Borrowing it

Nothing to install: this file belongs to tyler-mitchell/type-atlas. 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/tyler-mitchell/type-atlas/main/.skills/add-change/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/tyler-mitchell/type-atlas

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 add-change

README.md
[![agentmods](https://agentmods.dev/badge/skills/tyler-mitchell/type-atlas/add-change.svg)](https://agentmods.dev/skills/tyler-mitchell/type-atlas/add-change)
Your own site
<a href="https://agentmods.dev/skills/tyler-mitchell/type-atlas/add-change"><img src="https://agentmods.dev/badge/skills/tyler-mitchell/type-atlas/add-change.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,233 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 94% copy Near-identical to another mod 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.00046 $0.01233
Opus 5 $0.00023 $0.00616
Sonnet 5 $0.00009 $0.00247
Haiku 4.5 $0.00005 $0.00123

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

Security

Grade A, and why

add-change 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 7d 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.

Origin

This is a copy

94% identical to add-change — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.skills/add-change/SKILL.md · 130 lines

How it starts

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

Create a bumpy bump file

You are helping the user create a bumpy bump file — a markdown file in .bumpy/ that describes which packages changed and how. Bumpy uses these to bump versions and generate changelogs.

Steps

1. Gather context

First, understand what changed. Run these in parallel:

  • git diff --stat — see which files changed
  • git diff --cached --stat — see staged changes
  • bumpy status --json — see if there are already pending bump files

If the user provided a description via $ARGUMENTS, use that as additional context for understanding the change.

Review the diff output to understand the scope of changes.

2. Identify affected packages

Determine which workspace packages are affected by the changes. Map changed files to their packages based on directory structure.

If unsure which packages exist, run:

bumpy status --packages 2>/dev/null || cat package.json

3. Determine bump levels

For each affected package, choose the appropriate bump level:

Level When to use
major Breaking changes: removed/renamed exports, changed function signatures, dropped support
minor New features: added exports, new options, new functionality
patch Bug fixes, internal refactors, documentation, dependency updates

Use none in a bump file to acknowledge a change without triggering a direct bump. Cascading bumps from other packages can still apply normally.

4. Write a clear summary

Write a concise summary for the CHANGELOG entry. Keep it short — ideally a single sentence, at most two. Good summaries:

  • Start with a verb: "Added...", "Fixed...", "Refactored..."
  • Focus on user-facing impact, not implementation details
  • Are specific enough to be useful months later
  • Avoid filler, jargon, or restating the bump level
  • Don't list every file changed — describe the logical change

Read the full file on GitHub · 130 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. 7d ago First seen · 130 lines · 46 tokens per session scan A dafa6c727bb3

Subscribe to this mod's changes

add-change is a skill published in the GitHub repository tyler-mitchell/type-atlas (2 stars, last pushed 9d ago), licensed Apache-2.0. It adds 46 tokens to every session and 1,233 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to add-change, differing in 3 lines, and is treated as a copy.

Related

Other skills, from other 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…

cyanheads/obsidian-mcp-server · 82 tokens

release-and-publish

Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…

cyanheads/obsidian-mcp-server · 112 tokens

polish-docs-meta

Finalize documentation and project metadata for a ship-ready release. Use after implementation is complete, tests pass, and devcheck is clean. Safe to run at any stage — each step checks current state and only acts on what still needs work.

cyanheads/git-mcp-server · 53 tokens

release-and-publish

Ship a release end-to-end across every registry this project targets (npm, MCP Registry). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already complete — this skill is the post-wrapup…

cyanheads/git-mcp-server · 83 tokens

bob-export

Create a Hacker Bob post-release improvement bundle for the currently installed Bob version.

vmihalis/hacker-bob · 18 tokens

oss-workflow

Open-source project success workflow for viznoir. Codifies contributor onboarding, release management (Release Please + PyPI), issue triage, and showcase curation. Triggers: release, contributor, onboarding, PyPI publish, issue triage, showcase, CHANGELOG, good first issue.

kimimgo/viznoir · 62 tokens