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

v1.0.0

关于此技能

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

# 核心主题

K9i-0 K9i-0
[212]
[15]
更新于: 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

核心价值

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.

适用 Agent 类型

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

赋予的主要能力 · 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

! 使用限制与门槛

  • 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 imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 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

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

如何安装 release-app?

运行命令:npx killer-skills add K9i-0/ccpocket/release-app。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

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。

release-app 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

release-app 有哪些限制?

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

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add K9i-0/ccpocket/release-app。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    release-app 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

release-app

安装 release-app,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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

成功を確認したら完了。

相关技能

寻找 release-app 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具