정보
이 스킬은 지갑 및 결제 시스템과 같은 안전한 모바일 금융 앱 구축에 필요한 핵심 도메인 지식을 제공합니다. 트랜잭션 라이프사이클, 키 관리, 멱등성, KYC/AML과 같은 중요한 개념을 다루어 일반적인 아키텍처 함정을 방지합니다. 자금을 처리하는 모바일 제품을 설계하거나 구현할 때 사용하여 견고하고 안전한 금융 운영을 보장하세요.
빠른 설치
Claude Code
추천npx skills add avelikiy/great_cto -a claude-code/plugin add https://github.com/avelikiy/great_ctogit clone https://github.com/avelikiy/great_cto.git ~/.claude/skills/vertical-fintech-mobileClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Money on a phone — spec it like the network will fail mid-transfer
A field app that loses a photo is annoying. A money app that loses — or duplicates — a transfer is a loss, a support case, and sometimes a regulator. Everything in the generic mobile contract still applies (offline queue, idempotency, permissions); this pack is the part that is different because it is money, and it is the part community skill sets do not carry, because it is domain knowledge rather than framework knowledge.
The through-line: the phone is not the ledger. It is a client with an opinion, and every screen must be honest about how strong that opinion is.
1. A balance has three states, never two
confirmed · pending · unknown. A number rendered without which of the three
it is, is a lie the user will act on.
- confirmed — the server said so, and the app has heard from the server recently enough to say when.
- pending — the app has applied its own optimistic change on top. It is a display, not a fact, and it is labelled.
- unknown — the app has not reached the server. This is NOT the last confirmed number rendered as though it were current. A stale balance shown as live is the defect this whole pack exists to prevent.
Every balance carries as of when. "£1,240.55" is not an answer; "£1,240.55, as of 14:02" is.
2. The idempotency key must outlive the process
The generic rule is "client-generated id so a re-sync never duplicates". For money that is not enough, because the process dies.
- Mint the key before the intent leaves the screen, and persist it with the intent in the same durable write. A key held in memory is a key that a crash turns into a second payment.
- The key belongs to the user's intent, not to the attempt. Ten retries of one "send £50" share one key. A second tap of the button is a new intent — or it is a double-send, and the UI decides which by disabling or by asking.
- The server contract must state how long it honours a key. An idempotency window shorter than the app's retry backoff is the same as no idempotency.
3. Keys never enter JavaScript memory
For any product that signs — custody, non-custodial wallets, hardware-backed auth:
- Signing happens in the platform's secure hardware (Keychain/Secure Enclave, Keystore/StrongBox). The app asks for a signature; it never holds the key.
- A seed phrase or private key in a JS variable is in the crash dump, the debugger, the redux devtools, and the error reporter. Assume all four.
- Non-custodial means non-recoverable. If the product cannot restore a lost key, the onboarding must say so before the key exists, not in a support article afterwards.
- The signing confirmation shows what is actually being signed, decoded. A hex blob the user cannot read is consent theatre.
4. A transaction is a state machine, and it is written down
Not "sent/failed". At minimum:
drafted → submitted → accepted → settled
↘ rejected
↘ unknown ──(reconcile)──→ settled | rejected
unknownis a real state, and the one that matters. The request left and no answer came back. The app may not guess, may not retry blindly (see §2), and may not show it as failed — a payment shown as failed that actually settled is how a user sends it twice.- Every non-terminal state has a timeout and an owner: what checks it, how often, and what it does when the answer never comes.
- Terminal states are terminal. A settled transaction is not re-driven by a retry queue that woke up late.
5. The device clock may not order financial events
A phone with a wrong clock silently wins every last-write-wins conflict.
- Ordering comes from the server, or from a logical clock the server issues.
- Device time may be recorded as observed metadata — never as the ordering key, never as the audit timestamp.
- The same applies to "which offline edit is newer" for anything money-adjacent.
6. Reconciliation is a feature, not an error path
When the app reconnects after an offline stretch:
- The server's view of money wins, always.
- The difference is surfaced, never silently overwritten. A user who saw a balance and then sees a different one, with no explanation, files a fraud report.
- Reconciliation is idempotent and resumable: it runs on a flaky connection, so it must survive being interrupted halfway.
- Pending local intents that the server never received are re-offered to the user, not auto-sent. Auto-sending an hour-old payment intent is a surprise the user did not consent to.
7. A blocked account is a designed state
KYC/AML is not an error dialog.
- The states are real product states with real screens:
unverified,pending review,verified,limited,frozen. Each says what the user can still do and what happens next. - The app must be able to stop. A limit or a freeze arriving mid-session has to be honoured on the next action, not at next launch.
- Never explain a freeze in terms the user can use to evade it. "Under review" is the whole message; the reason belongs in the case file, not the UI.
- Re-verification prompts must survive an app reinstall — the state lives on the server.
8. The screenshot the OS takes without asking
Both platforms snapshot the app when it backgrounds, and that image goes to disk.
- Balances, account numbers, and anything key-shaped are masked on background.
- Screen-recording and screenshot detection where the platform offers it, at least for seed-phrase and full-PAN screens.
- The clipboard is shared and, on some platforms, synced across devices. An address or code copied to it is not private; expire it.
9. What to model (or the spec is naive)
| Entity | Non-obvious part |
|---|---|
| Intent | Distinct from the transaction. Carries the idempotency key, persisted before send. |
| Transaction | The state machine of §4, with unknown and per-state timeouts. |
| Balance snapshot | Value + state + as of. Never a bare number. |
| Reconciliation run | Resumable, idempotent, with a record of what differed. |
| Verification status | The §7 states, server-owned, survives reinstall. |
| Key reference | A handle to hardware-held material. Never the material. |
| Limit | Per-period, server-evaluated, honoured mid-session. |
10. Where this pack stops
- Payment scope and PSP mechanics →
pci-reviewer. - Ledger integrity and double-entry →
accounting-reviewer. - On-chain oracles, MEV, upgradeability →
oracle-reviewer. - Store policy for financial apps →
mobile-store-reviewer. - Framework performance → the mobile performance invariant in
agents/mobile-app-builder.md.
This pack is the phone's own share of the problem, and it is the share that gets skipped because it looks like plumbing that the backend already handled.
GitHub 저장소
자주 묻는 질문
vertical-fintech-mobile Skill이란 무엇인가요?
vertical-fintech-mobile은(는) avelikiy이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 vertical-fintech-mobile 관련 작업을 수행할 수 있게 합니다.
vertical-fintech-mobile은(는) 어떻게 설치하나요?
이 페이지의 설치 명령을 사용하세요. vertical-fintech-mobile을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.
vertical-fintech-mobile은(는) 어떤 카테고리에 속하나요?
vertical-fintech-mobile은(는) 메타 카테고리에 속합니다.
vertical-fintech-mobile은(는) 무료로 사용할 수 있나요?
네. vertical-fintech-mobile은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.
연관 스킬
이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
