원클릭으로
reference-codebases
Use sibling repos (Android, Windows, backend) as reference when porting features to match behavior in Swift/SwiftUI style.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use sibling repos (Android, Windows, backend) as reference when porting features to match behavior in Swift/SwiftUI style.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement UI from Figma designs via MCP with a closed-loop pixel-parity check. Extract exact values (never eyeball), translate to SwiftUI, then render→diff→fix against the Figma export until it matches. Use when implementing or auditing UI against Figma.
HTTP networking layer reference — TargetType, HTTPClient, services, error handling.
Fetch CodeRabbit review comments from batch PRs and auto-fix the issues. Pushes fixes and re-requests review.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run SwiftLint and xcodebuild to verify the project compiles cleanly.
| name | reference-codebases |
| description | Use sibling repos (Android, Windows, backend) as reference when porting features to match behavior in Swift/SwiftUI style. |
Use this skill when the user says "port from Android/Windows", "reference codebases", or references a sibling repo's implementation.
../) to find repositories.git -C ../<repo> pull --ff-only to get latest changes.| Repo | Language | Key Paths |
|---|---|---|
vultisig-android | Kotlin | app/src/main/java/com/vultisig/wallet/ — UI, data, viewmodels |
vultisig-windows | TypeScript | core/, clients/ — business logic, UI components |
vultiserver | Go | api/, service/, handler/ — backend endpoints |
commondata | Protobuf | Shared message definitions |
| Native | Swift |
|---|---|
T? / nullable | Optional T? |
| Sealed class / discriminated union | enum with associated values |
Data class / type | struct (Codable if for API) |
| Coroutines / async-await / Promise | async/await |
ByteArray / Uint8Array | Data |
| StateFlow / Zustand | @Published property |
| Hilt injection | Initializer injection |
| Composable / React Component | SwiftUI View |
| Room / Zustand persist | SwiftData @Model |
stringResource() / t() | "key".localized |
Same behavior, our style. Match inputs, outputs, edge cases, and errors exactly. Use our MVVM pattern, Theme tokens, HTTPClient, and localization conventions.