·api-versioning
</>

api-versioning

yonatangross/orchestkit

API versioning strategies including URL path, header, and content negotiation. Use when migrating v1 to v2, handling breaking changes, implementing deprecation or sunset policies, or managing backward compatibility.

12Installs·0Trend·@yonatangross

Installation

$npx skills add https://github.com/yonatangross/orchestkit --skill api-versioning

SKILL.md

| URL Path | /api/v1/users | Simple, visible, cacheable | URL pollution | | Header | X-API-Version: 1 | Clean URLs | Hidden, harder to test | | Query Param | ?version=1 | Easy testing | Messy, cache issues | | Content-Type | Accept: application/vnd.api.v1+json | RESTful | Complex |

| Strategy | URL path (/api/v1/) | | Support window | Current + 1 previous | | Deprecation notice | 3 months minimum | | Sunset period | 6 months after deprecation | | Breaking changes | New major version | | Additive changes | Same version (backward compatible) |

url-versioning Keywords: url version, path version, /v1/, /v2/ Solves:

API versioning strategies including URL path, header, and content negotiation. Use when migrating v1 to v2, handling breaking changes, implementing deprecation or sunset policies, or managing backward compatibility. Source: yonatangross/orchestkit.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/yonatangross/orchestkit --skill api-versioning
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is api-versioning?

API versioning strategies including URL path, header, and content negotiation. Use when migrating v1 to v2, handling breaking changes, implementing deprecation or sunset policies, or managing backward compatibility. Source: yonatangross/orchestkit.

How do I install api-versioning?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/yonatangross/orchestkit --skill api-versioning Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/yonatangross/orchestkit