Install
$ agentstack add skill-eaglesakura-agent-skills-flutter-xcodegen-ios ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Flutter iOS / XcodeGen 移行
flutter create 等でできた標準 ios/ を、XcodeGen 管理へ移す。 Runner/ のアプリソースは触らず、Configurations/・xcodegen/・project.yml・Exports/ を整備する。
いつ使うか
- 標準
ios/を XcodeGen に移行する - Flavor なし(
Debug/Profile/Release)または Flavor あり構成を作る - Flavor を後から追加する
- Bundle Identifier / Provisioning Profile / export-options-plist を揃える
前提と必須入力
ユーザーは先に Flutter 標準機能で ios/ を用意している前提。
次が 指示に無い場合は推測せずエラーで止める:
- 各 Configuration(または Flavor × Debug/Profile/Release)の Bundle Identifier
- 各 Configuration の Provisioning Profile(
PROVISIONING_PROFILE_SPECIFIER) - IPA 出力時に使う Team ID(
Exports/*.plistのteamID)と、プロファイル対応表
任意(無ければ質問する):
- Flavor 名の一覧(無指定 → Flavor なし)
PRODUCT_NAME/ 表示名- iOS deployment target(テンプレの
__IOS_DEPLOYMENT_TARGET__) DEVELOPMENT_TEAM(xcodegen実行時の環境変数${DEVELOPMENT_TEAM})
作業手順
- 必須入力が揃っているか確認する。欠けていれば不足項目を列挙して停止する
- Flavor 有無を確定する(無指定 → Flavor なし)
- [references/directory-layout.md](./references/directory-layout.md) を読む
- Flavor なしなら [references/no-flavor.md](./references/no-flavor.md)、ありなら [references/flavor.md](./references/flavor.md) を読む
./assets/のテンプレをios/へコピーし、プレースホルダ(__…__)を実値に置換するproject.ymlのincludeを Flavor 有無に合わせて直すpostGenCommand.shに実行権限を付けるxcodegenをios/で実行する(DEVELOPMENT_TEAMを環境変数で渡す)- Release IPA は
flutter build ipa --export-options-plistで出す旨をユーザーに伝える
コマンド実行時は、プロジェクト規定のツールチェイン(あれば)に従う。
# 例(ios/ で)
DEVELOPMENT_TEAM=__TEAM_ID__ xcodegen
# Release IPA
flutter build ipa --flavor __FLAVOR__ --release --export-options-plist ios/Exports/Production/appstore.plist
Flavor なしなら --flavor は付けない。Ad Hoc なら Exports/Development/adhoc.plist を使う。
プレースホルダ
| 記号 | 意味 | | --- | --- | | __PRODUCT_NAME__ | Xcode PRODUCT_NAME | | __BUNDLE_IDENTIFIER__ | Configuration ごとの Bundle ID | | __PROVISIONING_PROFILE_SPECIFIER__ | プロファイル名 | | __CODE_SIGN_IDENTITY__ | 例: iPhone Developer / iPhone Distribution | | __FLAVOR__ | Flavor 名(development 等) | | __TEAM_ID__ | Apple Team ID | | __IOS_DEPLOYMENT_TARGET__ | 例: 18.0 |
SPM と CoreGraphics
packages に SPM を足したあと、実質依存が空に近いと解決に失敗することがある。 テンプレどおり CoreGraphics.framework を dependencies に残す。外さない。
Pods
CocoaPods / Pods_Runner / Pods 用 Build Phase は 追加しない(legacy)。
拡張 SKILL
| やりたいこと | SKILL | | --- | --- | | Firebase SPM + GoogleService-Info | flutter-xcodegen-ios-firebase | | Crashlytics シンボルアップロード | flutter-xcodegen-ios-firebase-crashlytics | | Google Sign-In(GID / URL Scheme) | flutter-xcodegen-ios-google-sign-in |
アセット一覧
- [Configurations/](./assets/Configurations/) — xcconfig テンプレ
- [xcodegen/](./assets/xcodegen/) —
base.yml/default.yml/flavor.yml/ scripts / workspace - [project.yml](./assets/project.yml)
- [Exports/](./assets/Exports/) —
appstore.plist/adhoc.plist
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: eaglesakura
- Source: eaglesakura/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.