spec-kitty-bulk-edit-classification

spec-kitty-bulk-edit-classification is a skill for Claude Code, Codex from Priivacy-ai/spec-kitty. It costs 157 tokens per session (3,568 once invoked), scanned A, original, MIT.

A safeguard for large-scale text changes, such as renaming a term throughout a codebase. It separates occurrences by meaning, because the same text may be a code symbol, file path, stored key, command, or user-facing label.

In plain words
What is it for?
Use it during terminology changes, package or path moves, feature renames, and other edits that affect the same text in many different places.
Why use it?
Blindly replacing every matching string can break software or change the wrong wording, even when the edit initially looks mechanical.

Skill for Claude CodeCodex

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

Good fit Use it during terminology changes, package or path moves, feature renames, and other edits that affect the same text in many different places.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification
About the project

Spec Kitty is an open-source command-line tool that turns product requirements into a repository-based workflow for AI-assisted software development. It stores specifications, plans, tasks, acceptance criteria, reviews, and merge decisions in Git while giving agents isolated git worktrees for parallel implementation. The catalogue add-ons support the project's workflows for coordinating agents and governing their work.

Priivacy-ai/spec-kitty · 1,603 stars · on GitHub · spec-kitty.ai

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 Priivacy-ai/spec-kitty --skill spec-kitty-bulk-edit-classification
Clone the repo
git clone --depth 1 https://github.com/Priivacy-ai/spec-kitty

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 spec-kitty-bulk-edit-classification

README.md
[![agentmods](https://agentmods.dev/badge/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification/github.svg)](https://agentmods.dev/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification)
Your own site
<a href="https://agentmods.dev/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification"><img src="https://agentmods.dev/badge/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification/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 spec-kitty-bulk-edit-classification

Your own site · 80×15
<a href="https://agentmods.dev/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification"><img src="https://agentmods.dev/badge/skills/priivacy-ai/spec-kitty/spec-kitty-bulk-edit-classification.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 157 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,568 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 283
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
How audits are shown
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.00157 $0.03568
Opus 5 $0.00078 $0.01784
Sonnet 5 $0.00031 $0.00714
Haiku 4.5 $0.00016 $0.00357

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

Security

Grade A, and why

spec-kitty-bulk-edit-classification 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 2d 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.

src/charter/offering/skills/spec-kitty-bulk-edit-classification/SKILL.md · 359 lines

How it starts

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

spec-kitty-bulk-edit-classification

Drive the occurrence-classification guardrail (shipped in #393, DIRECTIVE_035) so users never have to know it exists. A bulk edit is any change that touches the same string in many places — a rename, a terminology migration, a package-path move, a feature-label swap. Those changes look mechanical but aren't: the same token carries different meaning depending on where it appears (code symbol, import path, filesystem literal, serialized key, CLI command, user-facing string, test fixture, log/telemetry label). Treating them uniformly is how silent breakage happens.

The user will not say "bulk edit". They will say "rename Coffee to Tea" or "the Blue feature is now the Red feature." Your job is to recognize that shape, turn on change_mode: bulk_edit, and drive the classification workflow before any code changes.


When to activate

Apply this skill during specify or plan when the user's description matches any of these patterns:

Pattern Example phrasing
Explicit rename "Rename Customer to Account across the codebase"
Terminology migration "We're calling it 'channels' now, not 'streams'"
Feature relabel "The Blue feature is now the Red feature"
Path/module move "Move src/legacy/auth to src/auth"
API surface rename "Rename the /users endpoint to /accounts"
Config key rename "Change max_connections to connection_limit everywhere"
Brand / product rename "Replace ACME with GlobalCorp in all docs and UI"

Also apply when the implement or review command prints a message starting with "Bulk Edit Gate: BLOCKED" or "Bulk Edit Review: Diff Compliance" — these are the runtime gates' failure output; this skill tells you how to respond.

Do NOT apply when the user is:

  • Adding a genuinely new feature (new identifiers, new files) — no existing identifiers change
  • Refactoring the internals of one file or one function — no cross-cutting string change
  • Fixing a bug where the surface names stay the same

Read the full file on GitHub · 359 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. 2d ago Changed a28a15446fa4
  2. 10d ago First seen · 359 lines · 157 tokens per session scan A a1aac566c8c3

Subscribe to this mod's changes

spec-kitty-bulk-edit-classification is a skill published in the GitHub repository Priivacy-ai/spec-kitty (1,603 stars, last pushed 2d ago), licensed MIT. It adds 157 tokens to every session and 3,568 once invoked, about $0.0008 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.