Agent skill
version-deploy
アプリのバージョン更新とデプロイ。Next.js、Flutter、Firebase、Google Play、App Storeリリース時に使用。
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/version-deploy
SKILL.md
バージョン管理・デプロイスキル
このスキルを使用するタイミング
- バージョン番号を更新するとき
- アプリをデプロイするとき
- ストア申請するとき
1. セマンティックバージョニング
MAJOR.MINOR.PATCH
1.0.0 → 2.0.0 # 破壊的変更
1.0.0 → 1.1.0 # 新機能追加
1.0.0 → 1.0.1 # バグ修正
2. Next.js
バージョン更新
// package.json
{ "version": "0.5.16" }
デプロイ
# Vercel
git push origin main
# Firebase Hosting
npm run build
firebase deploy --only hosting
3. Flutter
バージョン更新
# pubspec.yaml
version: 1.3.1+42 # バージョン+ビルド番号
ビルド
# Android AAB
flutter build appbundle --release
# iOS
flutter build ios --release
open ios/Runner.xcworkspace
# Web
flutter build web --release
4. リリースチェックリスト
- テスト完了
- Lintエラーなし
- バージョン番号更新
- ビルド番号増加(モバイル)
- CHANGELOG更新
5. リリースノート形式
# v1.3.1
## 新機能
- 抽出タイマー機能を追加
## バグ修正
- タイマー停止問題を修正
## 改善
- パフォーマンス最適化
AI アシスタント指示
- 現在のバージョンを確認
- 変更内容に基づいてインクリメント
- ビルド番号は常に増加(モバイル)
- デプロイ前にテスト確認
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?