Version API
SkillAI & modelsUse when versioning a Rails REST API (v1/v2, deprecation, Sunset headers). Never break a public version in place. Trigger words: API version, v1, v2, versioning, deprecation.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Version API skill
What this skill tells your AI
The instructions your AI receives, as published by igmarin/rails-agent-skills in skills/version-api/SKILL.md and read by ahel’s review.
Implement versioning strategies for Rails APIs.
Quick Reference
| Concern | File |
|---|---|
| Route namespaces | config/routes.rb |
| Header versioning | app/controllers/concerns/api_versioning.rb |
| Deprecation headers | app/controllers/concerns/deprecatable.rb |
| Compatibility specs | spec/requests/api/backward_compatibility_spec.rb |
HARD-GATE
GENERATED CODE SAFETY:
- NEVER generate code that constantizes or evaluates caller-supplied version strings
(e.g. "V#{params[:version]}".constantize is forbidden — use an explicit allowlist).
- NEVER generate code that passes request headers or paths unsanitized into class
instantiation, eval, or dynamic dispatch.
- Allowlist-only version resolution: generated routing/concern code MUST resolve
version identifiers from a fixed set (V1, V2, ...), not from free-form input.
ALWAYS maintain backward compatibility for at least one major version
NEVER remove endpoints without deprecation period
ALWAYS version in URL path (/api/v1/) or Accept header, never in body
Core Process
- Choose strategy — URL path (
/api/v1/) for public APIs; Accept header for internal/private APIs. See strategies.md for header-based versioning details and trade-offs. - Add route namespace — Wrap new version resources in a
namespace :v2block inconfig/routes.rb:namespace :v1 do resources :users end namespace :v2 do resources :users end - Create controllers — Inherit from the previous version's controller and override only changed actions:
See EXAMPLES.md for additional inheritance patterns.module V2 class UsersController < V1::UsersController def index render json: User.all, only: [:id, :name, :email, :phone] end end end - Apply deprecation — Include
Deprecatablein old-version controllers to emitSunsetandDeprecationresponse headers automatically via abefore_action:module V1 class UsersController < ApplicationController include Deprecatable # Override sunset_date on the class to set the retirement date: # def self.sunset_date = Date.new(2025, 6, 1) end end - Run compatibility specs — Execute
bundle exec rspec spec/requests/api/backward_compatibility_spec.rbto confirm no regressions before merging. - Update documentation — Record the sunset date and migration guide for deprecated endpoints. See workflow.md for the full deprecation communication workflow.
Output Style
When asked to implement API versioning, your output MUST include:
- Versioning strategy — Explicitly state whether using URL path (/api/v1/) or Accept header versioning
- Inheritance strategy — Document how new version controllers inherit from previous version
- Route definition — Show the namespace route configuration in config/routes.rb
- Deprecation headers — Include Deprecatable concern with sunset date configuration
- Compatibility specs — Include the command to run backward compatibility specs
- Language — Must be in English unless explicitly requested otherwise
Extended Resources (Progressive Disclosure)
Load these files only when their specific content is needed:
- EXAMPLES.md — Use when you need complete API versioning examples with route definitions and controller inheritance
- references/strategies.md — Use when comparing versioning strategies (URL path vs header vs query param)
- references/workflow.md — Use when implementing the deprecation communication workflow and sunset scheduling
Integration
| Skill | When to chain |
|---|---|
| generate-api-collection | When generating the updated API endpoints |
| test-engine | When verifying specs for regressions |
Signals
- GitHub stars
- 25
- Forks
- 7
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
version-api- Source
- github.com/igmarin/rails-agent-skills