release-app — android release-app, ccpocket, community, android, ide skills, bridge-server, claude-code, flutter, mobile, openai, Claude Code

v1.0.0

Acerca de este Skill

Ideal for Mobile App Agents requiring automated release management and version control. Mobile client for Claude Code and Codex — control coding agents from your phone via WebSocket bridge

# Core Topics

K9i-0 K9i-0
[212]
[15]
Updated: 3/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
43
Canonical Locale
ja
Detected Body Locale
ja

Ideal for Mobile App Agents requiring automated release management and version control. Mobile client for Claude Code and Codex — control coding agents from your phone via WebSocket bridge

¿Por qué usar esta habilidad?

Empowers agents to manage mobile app releases across iOS, Android, and macOS platforms using WebSocket bridge technology and GitHub Actions for automated build, signing, and distribution. It utilizes specific protocols like WebSocket and file formats such as YAML for seamless communication and version control.

Mejor para

Ideal for Mobile App Agents requiring automated release management and version control.

Casos de uso accionables for release-app

Automating mobile app releases for multiple platforms
Generating and updating CHANGELOG.md files based on commit history
Validating and bumping version numbers in pubspec.yaml files

! Seguridad y limitaciones

  • Requires main branch with no uncommitted changes
  • Needs GitHub Actions setup for automated workflows
  • Limited to Flutter app releases

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is release-app?

Ideal for Mobile App Agents requiring automated release management and version control. Mobile client for Claude Code and Codex — control coding agents from your phone via WebSocket bridge

How do I install release-app?

Run the command: npx killer-skills add K9i-0/ccpocket/release-app. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for release-app?

Key use cases include: Automating mobile app releases for multiple platforms, Generating and updating CHANGELOG.md files based on commit history, Validating and bumping version numbers in pubspec.yaml files.

Which IDEs are compatible with release-app?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for release-app?

Requires main branch with no uncommitted changes. Needs GitHub Actions setup for automated workflows. Limited to Flutter app releases.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add K9i-0/ccpocket/release-app. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use release-app immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

release-app

Install release-app, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

アプリ リリース

Flutter アプリのリリースを行う。 タグ push 後は GH Actions が自動でビルド・署名・配布・GitHub Release を作成する。

前提

  • main ブランチで作業中であること
  • 未コミットの変更がないこと

手順

1. 現在のバージョン確認 & 変更内容の収集

bash
1grep '^version:' apps/mobile/pubspec.yaml

version: X.Y.Z+N の形式。+N は build number。

前回リリースからの差分を確認する:

bash
1# 前回のタグ(iOS/Android/macOS のいずれか新しい方) 2git tag -l 'ios/v*' 'android/v*' 'macos/v*' --sort=-v:refname | head -1 3 4# 差分コミット(bridge 以外) 5git log $(git tag -l 'ios/v*' 'android/v*' 'macos/v*' --sort=-v:refname | head -1)..HEAD --oneline -- apps/mobile/ CHANGELOG.md

2. バージョンとプラットフォームをユーザーに確認

差分コミットの内容を分析し、AskUserQuestion で 2つの質問を同時に 確認する。

質問 1: バージョン

選択肢の決定ルール:

  • feat コミットがある → minor を推奨(1番目の選択肢にし「(Recommended)」を付ける)
  • feat がなく fix のみ → patch を推奨
  • 破壊的変更がある → major を推奨

選択肢は具体的なバージョン番号で提示する(例: 「1.20.0+43 (minor)」「1.19.1+43 (patch)」)。 build number は現在の値 +1 で統一する。

質問 2: プラットフォーム

以下の選択肢を提示する:

  • iOS + Android + macOS 全部 (Recommended)
  • iOS + Android のみ(モバイルのみ)
  • macOS のみ
  • iOS のみ
  • Android のみ

3. CHANGELOG 更新

CHANGELOG.md(ルート)の先頭に新しいセクションを追加する。

markdown
1## [X.Y.Z] - YYYY-MM-DD 2 3### Added 4- ... 5 6### Changed 7- ... 8 9### Fixed 10- ...

ステップ 1 で確認したコミットを元に、Added / Changed / Fixed に分類する。 空のセクション(該当なし)は省略する。

4. バージョン bump

apps/mobile/pubspec.yamlversion をステップ 2 で決定したバージョンに更新する。

5. ローカル検証

タグ push 前に、CD と同じチェックをローカルで実行する。 すべて pass しなければ次のステップに進まない。

bash
1# 静的解析 2dart analyze apps/mobile 3 4# テスト 5cd apps/mobile && flutter test

失敗した場合はユーザーに報告し、修正を待つ。

6. コミット & タグ

bash
1git add apps/mobile/pubspec.yaml CHANGELOG.md 2git commit -m "chore: bump version to X.Y.Z+N" 3git push origin main

ステップ 2 で選択されたプラットフォームのタグを打つ:

bash
1# iOS(選択された場合) 2git tag ios/vX.Y.Z+N 3git push origin ios/vX.Y.Z+N 4 5# Android(選択された場合) 6git tag android/vX.Y.Z+N 7git push origin android/vX.Y.Z+N 8 9# macOS(選択された場合) 10git tag macos/vX.Y.Z+N 11git push origin macos/vX.Y.Z+N

7. 完了確認

タグ push 後、GH Actions が自動実行される:

タグワークフロー内容
ios/v*ios-release.ymlShorebird release iOS → TestFlight → GitHub Release
android/v*android-release.ymlShorebird release Android → Google Play (internal draft) → GitHub Release
macos/v*macos-release.ymlDeveloper ID 署名 → 公証 → DMG → GitHub Release
bash
1# 各プラットフォームのワークフロー確認(タグを打ったもののみ) 2gh run list --workflow=ios-release.yml --limit 1 3gh run list --workflow=android-release.yml --limit 1 4gh run list --workflow=macos-release.yml --limit 1

成功を確認したら完了。

Habilidades relacionadas

Looking for an alternative to release-app or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador