app-dev
Mobile/web build pipeline: fastlane-first local builds, store submission, pre-submission checklists. Triggers: app, mobile, store submission, deploy…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
POLICY: fastlane, never EAS
Local fastlane builds (gym/gradle + deliver/supply) are the default for all native
build + store submission. EAS/cloud builders are a deliberate, stated exception —
never a silent reach (rule: CodingVault/.claude/CLAUDE.md "Mobile builds").
If the project ships its own build CLI (e.g. modelmind's ./mm), extend that — don't
bolt on a second pipeline.
FLOW
- Load source files — Read
fastlane/Fastfile, project build config (build.gradle,
.xcodeproj, app.config.), any project build CLI, CI config. If no fastlane setup
exists, fastlane init and commit the scaffold. (gate: build tooling identified)
- Identify environment — dev / staging / production. API endpoints, signing creds,
feature flags are environment-specific. Signing material lives in keychain or
gitignored _meta/keys/ listed in the secrets-backup manifest — never in the tree.
(gate: no hardcoded keys or shared signing certs)
- Build locally — iOS:
fastlane gym(or project lane). Android:fastlanelane
wrapping gradle bundleRelease → signed AAB. (gate: build completes without error)
- JS-only vs native change — JS-only updates may use the project's own OTA mechanism
if one exists; any native change requires a full store build. (gate: OTA never used
for native changes)
- Run pre-submission checklist (gate: all items pass before submitting):
- [ ] Privacy manifests (iOS): all required API reasons declared
- [ ] Permissions: only what you use, with clear usage descriptions
- [ ] Metadata: screenshots current, descriptions accurate (
fastlane/metadata/) - [ ] Version/build numbers: incremented correctly
- [ ] Physical device testing: tested on real device (not simulator)
- [ ] Deep links: universal links / app links verified
- [ ] Push notifications: working in production config
- [ ] Crash-free rate: > 99% on staging before promoting
- [ ] Bundle size: within limits, no large accidental assets
- [ ] Offline behavior: handles no-network gracefully
- iOS submission —
fastlane deliver/pilot: TestFlight (internal → external) →
App Store review. (gate: metadata complete; privacy manifests present)
- Android submission —
fastlane supplywith a Play service-account JSON:
internal → closed/open beta → staged production rollout starting at 5-10%.
(gate: data safety form complete; crash rate stable)
- Monitor rollout — watch crash rates before expanding staged rollout. Rollback:
halt rollout in console; OTA rollback via the project's own mechanism if present.
(gate: crash-free rate holds > 99%)
ANTI-PATTERNS (block on detection)
- Reaching for EAS / cloud builders without a stated, justified exception
- Hardcoded API keys in builds → keychain or env injection at build time
- OTA update for native changes → must be a store build
- Skipping physical device testing → simulators miss real-world issues
- 0-to-100% rollout on Android → start at 5-10%
- Shared signing certs across environments → separate keystores
REFERENCE
Deep rationale, environment config patterns, iOS/Android submission detail:
skills/app-dev/reference/app-dev-research.md
ON COMPLETE
agentdb write-end '{"skill":"app-dev","platform":"ios|android|both","gate":"submitted|built|blocked","store_ready":true}'
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/ariaxhan/kernel-claude/skills/app-dev/SKILL.md