ワンクリックで
versioning-strategist
Design API versioning strategies — URL path, header, or query parameter versioning with deprecation planning
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Design API versioning strategies — URL path, header, or query parameter versioning with deprecation planning
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
| name | versioning-strategist |
| description | Design API versioning strategies — URL path, header, or query parameter versioning with deprecation planning |
| allowed-tools | ["Read","Write","Grep"] |
| effort | medium |
/v1/, /v2/) for clarity, header versioning for clean URLs, or content negotiation for flexibility.Sunset: Sat, 01 Jan 2027 and Deprecation: true on deprecated endpoints.Versioning Strategy: URL Path Versioning
Current: /v1/users (active, 95% traffic)
Next: /v2/users (released, 5% traffic)
Sunset: /v1/users → announced 2026-06-01, sunset 2027-01-01
Breaking changes in v2:
- `user.name` split into `user.firstName` + `user.lastName`
- Pagination changed from offset to cursor-based
- Auth header changed from `Authorization: Token` to `Authorization: Bearer`
Migration guide: https://api.example.com/docs/migrate-v1-to-v2