npx claudepluginhub hiragram/claude-code-pluginsiOSアプリ開発チーム
エンジニアリングチームとのコミュニケーション・状況理解を支援するプラグイン
Claude Codeの会話をvibestudio発話サーバーに送信して音声読み上げを行う
PRを5つの観点から並列レビューするプラグイン
Share bugs, ideas, or general feedback.
A Claude Code plugin that provides comprehensive iOS development support through specialized agents, commands, and skills.
This plugin integrates Claude AI into the iOS development workflow, offering:
| Server | Description |
|---|---|
pbxproj-mcp | Xcode project manipulation (targets, build settings, schemes, Swift packages) |
iossim-mcp | iOS Simulator control (launch, screenshots, UI automation, gestures) |
| Command | Description |
|---|---|
/prototype | Generate SwiftUI prototypes with preview support |
/implement | Production implementation following project architecture rules |
/propose | Full workflow: implement → build → commit → push → create PR |
| Skill | Purpose |
|---|---|
screen-architecture | Redux-pattern state management for iOS screens |
ui-mock-builder | SwiftUI View and Preview generation |
build-settings-validator | Xcode build settings validation and recommendations |
project-architecture | Module structure and target management |
design-system | Color palettes, typography, and spacing definitions |
localization | String Catalog with type-safe symbol generation (Xcode 26+) |
| Agent | Model | Purpose |
|---|---|---|
ios-feature-developer | Opus 4.5 | Feature implementation, bug fixes, refactoring |
ios-screenshot-analyzer | Sonnet | Visual verification of simulator screenshots |
The plugin promotes a Redux-inspired pattern for iOS screen architecture:
App/
├── AppState # Single source of truth
├── AppAction # Action definitions
├── AppStore # @Published state container
├── AppReducer # Pure functions (testable)
└── Views/
├── RootView # Store in environment
└── FeatureView # Parameter-based (testable)
/prototype login screen - Generate a quick SwiftUI prototype/implement login screen - Convert to production code with Redux pattern/propose - Build, commit, push, and create PR automaticallybuild-settings-validator to verify Xcode settingsdesign-system for consistent stylingproject-architecture for module structurelocalization for i18n supportMIT