SKILL·A42ACD

vertical-fintech-mobile

avelikiy
Aktualisiert 5 days ago
2 Ansichten
89
13
89
Auf GitHub ansehen
Metaaidesign

Über

Diese Fähigkeit vermittelt essenzielles Domänenwissen für die Entwicklung sicherer mobiler Finanzanwendungen wie Geldbörsen und Zahlungssysteme. Sie behandelt kritische Konzepte wie Transaktionslebenszyklen, Schlüsselverwahrung, Idempotenz und KYC/AML, um häufige Architekturfehler zu vermeiden. Nutzen Sie sie beim Entwurf oder der Implementierung mobiler Produkte, die Geldbewegungen handhaben, um robuste und sichere Finanzoperationen zu gewährleisten.

Schnellinstallation

Claude Code

Empfohlen
Primär
npx skills add avelikiy/great_cto -a claude-code
Plugin-BefehlAlternativ
/plugin add https://github.com/avelikiy/great_cto
Git CloneAlternativ
git clone https://github.com/avelikiy/great_cto.git ~/.claude/skills/vertical-fintech-mobile

Kopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um diese Fähigkeit zu installieren

Dokumentation

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
  • unknown is 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)

EntityNon-obvious part
IntentDistinct from the transaction. Carries the idempotency key, persisted before send.
TransactionThe state machine of §4, with unknown and per-state timeouts.
Balance snapshotValue + state + as of. Never a bare number.
Reconciliation runResumable, idempotent, with a record of what differed.
Verification statusThe §7 states, server-owned, survives reinstall.
Key referenceA handle to hardware-held material. Never the material.
LimitPer-period, server-evaluated, honoured mid-session.

10. Where this pack stops

  • Payment scope and PSP mechanicspci-reviewer.
  • Ledger integrity and double-entryaccounting-reviewer.
  • On-chain oracles, MEV, upgradeabilityoracle-reviewer.
  • Store policy for financial appsmobile-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 Repository

avelikiy/great_cto
Pfad: skills/vertical-fintech-mobile
0
agentic-codingai-agentsclaude-codeclaude-code-pluginclaude-code-skillsclaude-code-subagents
FAQ

Häufig gestellte Fragen

Was ist der Skill vertical-fintech-mobile?

vertical-fintech-mobile ist ein Claude Skill von avelikiy. Skills bündeln Anweisungen und Ressourcen, die Claude bei Bedarf lädt, um Aufgaben rund um vertical-fintech-mobile ohne zusätzliche Eingaben auszuführen.

Wie installiere ich vertical-fintech-mobile?

Verwende die Installationsbefehle auf dieser Seite: Füge vertical-fintech-mobile als Plugin zu Claude Code hinzu oder klone das Repository in dein Skills-Verzeichnis. Starte Claude danach neu, damit der Skill geladen wird.

Zu welcher Kategorie gehört vertical-fintech-mobile?

vertical-fintech-mobile gehört zur Kategorie Meta.

Kann ich vertical-fintech-mobile kostenlos nutzen?

Ja. vertical-fintech-mobile ist auf AIMCP gelistet und kann kostenlos installiert werden.

Verwandte Skills

content-collections
Meta

Diese Skill bietet eine produktionsgetestete Einrichtung für Content Collections – ein TypeScript-first-Tool, das Markdown/MDX-Dateien in typsichere Datensammlungen mit Zod-Validierung umwandelt. Verwenden Sie ihn beim Erstellen von Blogs, Dokumentationsseiten oder inhaltsstarken Vite + React-Anwendungen, um Typsicherheit und automatische Inhaltsvalidierung zu gewährleisten. Er behandelt alles von der Vite-Plugin-Konfiguration und MDX-Kompilierung bis hin zur Deployment-Optimierung und Schema-Validierung.

Skill ansehen
polymarket
Meta

Diese Fähigkeit ermöglicht es Entwicklern, Anwendungen mit der Polymarket-Prognosemärkte-Plattform zu erstellen, einschließlich API-Integration für Handel und Marktdaten. Sie bietet außerdem Echtzeit-Datenstreaming über WebSocket, um Live-Trades und Marktaktivitäten zu überwachen. Nutzen Sie sie zur Implementierung von Handelsstrategien oder zur Erstellung von Tools, die Live-Marktaktualisierungen verarbeiten.

Skill ansehen
creating-opencode-plugins
Meta

Diese Fähigkeit unterstützt Entwickler dabei, OpenCode-Plugins zu erstellen, die in über 25 Ereignistypen wie Befehle, Dateien und LSP-Operationen eingreifen. Sie bietet die Plugin-Struktur, Event-API-Spezifikationen und Implementierungsmuster für JavaScript/TypeScript-Module. Nutzen Sie sie, wenn Sie den Lebenszyklus des OpenCode KI-Assistenten mit benutzerdefinierter ereignisgesteuerter Logik abfangen, überwachen oder erweitern müssen.

Skill ansehen
sglang
Meta

SGLang ist ein hochperformantes LLM-Serving-Framework, das sich auf schnelle, strukturierte Generierung für JSON, Regex und agentenbasierte Workflows unter Verwendung seines RadixAttention-Prefix-Cachings spezialisiert. Es bietet deutlich schnellere Inferenz, insbesondere für Aufgaben mit wiederholten Präfixen, was es ideal für komplexe, strukturierte Ausgaben und Mehrfachdialoge macht. Wählen Sie SGLang gegenüber Alternativen wie vLLM, wenn Sie constrained decoding benötigen oder Anwendungen mit umfangreicher Präfix-Weitergabe entwickeln.

Skill ansehen