一键导入
ios-kit
Startup runbook for iOS projects. Establishes stack decisions, scaffolds the project, configures GitHub security, and confirms governing constraints.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Startup runbook for iOS projects. Establishes stack decisions, scaffolds the project, configures GitHub security, and confirms governing constraints.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ios-kit |
| description | Startup runbook for iOS projects. Establishes stack decisions, scaffolds the project, configures GitHub security, and confirms governing constraints. |
Initialize a new iOS project with the standard stack, scaffolding, GitHub security, and constraints.
Input: <app-name> (optional, default: "App")
Execute /ios-stack to establish platform choices, architecture, environment model, and quality posture.
Execute /ios-scaffold <app-name> [--github] to create a buildable baseline with offline-first storage, push plumbing (stubbed), tooling, and CI.
Verify the scaffold passes all quality gates before proceeding (build, tests, lint, format).
Execute /github-hooks --platform ios to install Git hooks for pre-commit validation (SwiftLint, SwiftFormat, secrets), commit message enforcement, and pre-push tests.
Execute /github-secure to apply branch protection, Dependabot, CodeQL (Swift), CODEOWNERS, SECURITY.md, PR templates, and security workflows.
Confirm these always-on skills are enabled:
ios-sec — security policyios-nfr — non-functional requirementsios-std — coding standardsios-styleguide — design/UX standards/ios-unit-test — run tests, report failures, fix with approval/ios-code-review — review against policies, fix with approval/ios-design-review — visual review of screens, fix with approval/ios-add-feature — scaffold new features/ios-add-auth — add authentication/ios-deps — dependency management/ios-release — App Store release preparation/ios-teardown — tear down project (reverse of /ios-kit)After completing the startup sequence, the project is ready to develop when ALL of these pass:
xcodebuild build succeeds with zero warningsxcodebuild test passes all tests./scripts/lint.sh reports zero violations./scripts/format.sh makes no changesIf any gate fails, fix before proceeding to feature development.
After running this kit, confirm:
Scaffold a pnpm + Turborepo MERN monorepo with Next.js, tooling, tests, CI, and optional GitHub repo creation.
Configure GitHub repository security with branch protection, Dependabot, security scanning, and CI workflows. Integrates with mern-scaffold, nean-scaffold, and iOS projects.
Harden a Vercel deployment with security headers, CSP, bot protection, and deployment configuration
Add authentication to an iOS app with Sign in with Apple, biometrics, and Keychain storage.
Scaffold a new feature with View, ViewModel, and tests following ios-std conventions.
Review iOS code for compliance with standards, NFRs, and security policy.