backward-compatibility-and-deprecation-policy

backward-compatibility-and-deprecation-policy is a skill for Claude Code from shennawardana23/skillme. It costs 107 tokens per session (1,448 once invoked), scanned A, original, Apache-2.0.

A guide for retiring an API, configuration format, command-line option, or library interface that people already use. Deprecation means announcing and managing an old feature before removing it.

In plain words
What is it for?
Use it to plan deprecation timelines, sunset dates, breaking-change rollouts, and notices for old interfaces.
Why use it?
It helps prevent unexpected breakage by checking real usage, accounting for undocumented dependencies, and planning communication and enforcement.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skillme plugin — 137 skills, 2 commands shipped together

Good fit Use it to plan deprecation timelines, sunset dates, breaking-change rollouts, and notices for old interfaces.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy
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 shennawardana23/skillme --skill backward-compatibility-and-deprecation-policy
Clone the repo
git clone --depth 1 https://github.com/shennawardana23/skillme

Made for: Claude Code.

Or install skillme, the plugin that ships this one along with the rest of its 137 skills, 2 commands.

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 backward-compatibility-and-deprecation-policy

README.md
[![agentmods](https://agentmods.dev/badge/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy/github.svg)](https://agentmods.dev/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy)
Your own site
<a href="https://agentmods.dev/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy/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 backward-compatibility-and-deprecation-policy

Your own site · 80×15
<a href="https://agentmods.dev/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/backward-compatibility-and-deprecation-policy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,448 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.00107 $0.01448
Opus 5 $0.00053 $0.00724
Sonnet 5 $0.00021 $0.00290
Haiku 4.5 $0.00011 $0.00145

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

Security

Grade A, and why

backward-compatibility-and-deprecation-policy 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 12d 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.

skills/backward-compatibility-and-deprecation-policy/SKILL.md · 120 lines

How it starts

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

Backward Compatibility and Deprecation Policy

This skill is about the process of retiring something that already shipped — the timeline, the communication, the enforcement mechanism. The question of how to design a contract so it doesn't need this process as often (additive changes, versioning, error-shape consistency) is covered by the api-design skill; read that one when you're designing the contract itself, this one when you're retiring something already in use.

Hyrum's Law sets the baseline expectation

"With a sufficient number of users of an API, it does not matter what you promise in the contract: all observable behaviors of your system will be depended on by somebody." (Hyrum Wright, popularized via the Software Engineering at Google book)

This means: the deprecation process has to assume real callers depend on behavior you never intended to guarantee, not just the documented contract. A deprecation plan built only around "we announced it in the changelog" underestimates how many callers won't see that changelog before their integration breaks.

Procedure: deprecating something already in production use

  1. Determine actual usage before announcing anything. Instrument the old path (a log line, a metric counter, a response header) so you know who's still calling it — announcing a sunset date for something with unknown callers is how outages happen. If you can't measure usage, that's the first gap to close, not a reason to skip measurement.
  2. Publish the deprecation with three concrete pieces of information: what's being replaced, what to migrate to, and a specific sunset date — "this will be removed eventually" is not a deprecation notice, it's a warning with no actionable deadline.
  3. Mark it as deprecated in the artifact itself, not only in documentation: a Deprecation HTTP response header, a compiler deprecation annotation (// Deprecated: Go doc comment, @deprecated in other ecosystems), a CLI flag that prints a warning when used. Documentation-only deprecation is invisible to someone who never reads docs but does read a warning printed in front of them.
  4. Give a grace period sized to your actual caller population and their release cadence — an internal API consumed only by services your own team deploys weekly needs a much shorter window than a public API consumed by third parties who batch their own dependency upgrades quarterly or yearly.
  5. Track migration progress actively, don't just wait for the sunset date — if usage of the old path hasn't dropped as the date approaches, that's a signal to reach out to remaining callers directly (for internal APIs) or extend the deadline with clear justification (for public ones), not to remove it on schedule regardless.
  6. Remove on schedule once usage is at or near zero, with a final direct check immediately before removal — don't let "we announced it months ago" substitute for confirming actual current usage is gone.

Read the full file on GitHub · 120 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 120 lines · 107 tokens per session scan A 8b309092cadb

Subscribe to this mod's changes

backward-compatibility-and-deprecation-policy is a skill published in the GitHub repository shennawardana23/skillme (2 stars, last pushed 15d ago), licensed Apache-2.0. It adds 107 tokens to every session and 1,448 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

temporal-developer

Develop, debug, and manage Temporal applications across Python, TypeScript, Go, Java, .NET, Ruby, and Rust. Use when the user is building workflows, activities, or workers with a Temporal SDK, debugging issues like non-determinism errors, stuck workflows, or activity retries, using Temporal CLI, Temporal Server, or…

temporalio/skill-temporal-developer · 161 tokens

fastify-best-practices

A reference guide for building Fastify, a Node.js framework for web servers and REST APIs, with JavaScript or TypeScript. It covers routes, plugins, validation, errors, testing, logging, security, databases, and deployment.

sutchan/Agent-Skills-Hub · 0 tokens

insforge-cli

Use this skill whenever someone needs a backend, or a task touches InsForge backend or cloud infrastructure through the InsForge CLI: projects, SQL, migrations, RLS policies, functions, storage, backups, deployments, compute, secrets, config, schedules, logs, diagnostics, advisor scans and suppressions, import/export…

sutchan/Agent-Skills-Hub · 157 tokens

php-pro

A set of practices for building PHP applications with modern PHP, Laravel, or Symfony. PHP is a programming language commonly used for server-side web applications.

sutchan/Agent-Skills-Hub · 120 tokens

better-auth-best-practices

Configure Better Auth server and client, set up database adapters, manage sessions, add plugins, and handle environment variables. Use when users mention Better Auth, betterauth, auth.ts, or need to set up TypeScript authentication with email/password, OAuth, or plugin configuration.

sutchan/Agent-Skills-Hub · 61 tokens

eve

Build durable backend AI agents with the eve framework. Use when creating, editing, or debugging an eve project — agent instructions, skills, tools, connections, channels, sandboxes, subagents, schedules, or evals.

sutchan/Agent-Skills-Hub · 47 tokens