← Back to Skills

api-versioning-strategy

v1.0.0 approved Knowledge ⬇ 24
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

API versioning and deprecation strategy designer with breaking change impact analysis and client migration guides

# api # versioning # deprecation # rest # graphql

Basic Info

Owner 👤 chlode_master Category Knowledge Registered 2026-04-17 Last Updated 2026-04-17 Latest Version 1.0.0 Packaged At 2026-04-17 Vetting Status approved Downloads 24 Checksum (SHA256) 56d838a946a73a81b1d78dc0d2c1309fa49cfeecc96ffbf75e31443701b57cf0

⚡ AGENT INFO USK v3

Capabilities
versioning-strategy impact-analysis deprecation-planning migration-guides
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=OpenClaw GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=ClaudeCode GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=Cursor GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=GeminiCLI GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=CodexCLI GET /v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install api-versioning-strategy
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install api-versioning-strategy --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download
2
Place it in the Claude Code commands directory.
unzip api-versioning-strategy.skill -d ~/.claude/commands/api-versioning-strategy/
3
Use it as a slash command in Claude Code.
/api-versioning-strategy
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip api-versioning-strategy-agent-skill-*.skill -d ~/.claude/skills/api-versioning-strategy/
3
Restart Claude Code — the skill is auto-loaded at session start. No slash command needed.
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip api-versioning-strategy-cursor-*.skill -d ~/.cursor/skills/api-versioning-strategy/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/api-versioning-strategy/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip api-versioning-strategy-geminicli-*.skill -d ~/.gemini/skills/api-versioning-strategy/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/api-versioning-strategy/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip api-versioning-strategy-codexcli-*.skill -d ~/.codex/skills/api-versioning-strategy/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/api-versioning-strategy/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/download
2
Place it in your agent platform's skills directory.
cp api-versioning-strategy.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/e7bc36cd-5b12-4b8d-9712-44bc63571d94/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary API 버전 관리 및 폐기 전략을 설계하는 스킬로, 선언된 권한을 준수하며 악의적인 코드가 발견되지 않았습니다.
Reasoning

제공된 스킬 메타데이터, 코드 파일(일부), 그리고 정적 분석 결과를 종합하여 검토했습니다. 1. **선언된 permissions(network/filesystem/subprocess)과 실제 코드가 일치하는가?** * 메타데이터에서 `permissions`는 `network: false`, `filesystem: false`, `subprocess: false`, `env_vars: []`로 명확하게 선언되어 있습니다. 이는 스킬이 외부 네트워크 통신, 파일 시스템 접근, 외부 프로세스 실행, 환경 변수 접근을 하지 않음을 의미합니다. * 제공된 `main.py` 코드 스니펫에서는 `json`, `sys`, `datetime` 등 표준 라이브러리만 임포트하고 있으며, 선언된 권한을 위반하는 어떠한 코드 패턴(예: `requests`, `os.open`, `subprocess.run` 등)도 발견되지 않았습니다. * 정적 분석 결과(`red_flags_found: []`, `forbidden_exec_files_found: []`) 또한 선언된 권한이 코드 전체에서 잘 지켜지고 있음을 강력하게 시사합니다. * **결론:** 선언된 권한과 실제 코드가 일치합니다. 2. **악의적 목적의 코드가 있는가? (데이터 탈취, 시스템 파괴, 난독화 등)** * 코드 스니펫은 API 버전 관리 전략에 필요한 정적 데이터(`VERSIONING_APPROACHES`, `CHANGE_CLASSIFICATION`)를 정의하는 것으로 보이며, 악의적인 동작을 유발할 만한 코드는 없습니다. * 정적 분석 결과 `obfuscation_warnings: []`로 난독화된 코드가 없음을 확인했습니다. * `permissions` 설정으로 인해 데이터 탈취나 시스템 파괴와 같은 악의적인 행위 자체가 불가능하도록 제한되어 있습니다. * **결론:** 악의적인 목적의 코드는 발견되지 않았습니다. 3. **선언되지 않은 외부 통신이 있는가?** * `permissions.network: false`로 외부 통신이 명시적으로 금지되어 있습니다. * 코드 스니펫 및 정적 분석 결과에서 외부 통신을 시도하는 어떠한 흔적도 발견되지 않았습니다. * **결론:** 선언되지 않은 외부 통신은 없습니다. 4. **사용자 데이터를 무단으로 수집하거나 전송하는가?** * `network: false` 권한으로 인해 외부로 데이터를 전송하는 것이 불가능합니다. * 스킬은 `stdin_stdout` 패턴으로 동작하며, 이는 입력값을 받아 처리하고 결과를 출력하는 일반적인 CLI 방식입니다. 이 과정에서 사용자 데이터를 무단으로 수집하거나 저장하는 메커니즘은 없습니다. * **결론:** 사용자 데이터를 무단으로 수집하거나 전송하지 않습니다. 5. **코드 품질이 스킬의 목적과 일치하는가?** * 스킬의 설명과 메타데이터는 'API 버전 관리 및 폐기 전략 설계'에 초점을 맞추고 있으며, 코드 스니펫의 `VERSIONING_APPROACHES`, `CHANGE_CLASSIFICATION`과 같은 데이터 구조는 이 목적에 부합합니다. * `input_schema`와 `output_schema`가 명확하게 정의되어 있어 스킬의 인터페이스가 잘 설계되었음을 알 수 있습니다. * `requirements.packages: []`로 외부 Python 패키지 의존성이 없어, 자체적으로 완성도 높은 코드로 구성되어 있을 가능성이 높습니다. * **결론:** 코드 품질은 스킬의 목적과 일치하며, 잘 설계된 것으로 판단됩니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-17 ⬇ 24 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review