theme-banking
Banking / fintech application palette: variants, pages, entities, and flows for building a varied financial app. Use when theme_preset is banking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Banking / fintech application palette: variants, pages, entities, and flows for building a varied financial app. Use when theme_preset is banking.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
This skill should be used when the user asks to query Logfire logs, inspect Logfire traces, fetch SQL trace data, get spans for a trace, inspect LLM spans, inspect tool calls, or check token usage from Logfire. Also use it to triage an ARENA spawn run — diagnose why a run failed, timed out, or took too long, get per-stage turns/cost/tokens, or compare a prod trace to a local one.
This skill should be used when the user asks to spawn or generate an ARENA lab from a spec, run a spec through the pipeline, run several specs in parallel, bring up / start up a generated lab's Docker container for inspection, or find and run a finished run's image.
Add a single supporting (non-vulnerable) feature to a working ARENA skeleton app — a catalog, detail page, profile, order history, cart, etc. Triggered when the prompt contains "add-supporting-feature", "ARENA supporting feature", or a Feature block whose vuln is "none". Builds a real, reachable, working page wired into the shared nav. No vulnerability, no solution writeup.
Add a single vulnerable feature to a working ARENA skeleton app. Triggered when the prompt contains "add-vuln-feature", "ARENA feature writer", or a Feature block. Implements the feature and writes a human-readable solution writeup. A usability judge then browser-drives the feature and an exploit verifier independently reproduces the vulnerability against the running lab.
Styling for the build-capable SPA stacks (react-express, vue-fastapi): Tailwind CSS (+ shadcn/ui on React) themed per-run through CSS-variable design tokens. Invoke on these stacks to give each lab a distinctive, coherent, believable-product look that is different every run.
Styling for the server-rendered / no-build stacks (php, vanilla-flask): a token-driven CSS sheet themed per-run by editing one `:root` variable block. Invoke on these stacks to give each lab a distinctive, coherent, believable look — different every run — without a build step.
| name | theme-banking |
| description | Banking / fintech application palette: variants, pages, entities, and flows for building a varied financial app. Use when theme_preset is banking. |
Apps that hold balances and move money between accounts. The invariants that matter — balance never goes negative without overdraft, transfers respect limits, you can only see your own accounts — are exactly where the interesting exploits live.
Honor any hint in theme_free_text / custom_prompt; otherwise pick one.
Most exploits run as user.
Size the subset to endpoint_count. Candidates: dashboard/overview, accounts
list, account detail, transfer money, payees/recipients, scheduled payments,
transactions/statements, statement detail, card management, dispute a charge,
profile/settings, notifications, loan application & schedule (lending),
portfolio / holdings / trade / watchlist (brokerage), asset wallets / deposit /
withdraw / trade (crypto), admin back-office.
Seed multiple users each with ≥2 accounts/holdings so cross-account exploits are possible.
Endpoints are a shared surface, not owned 1:1 by a feature (a single feature often spans several, and an endpoint can back multiple features). Pick a coherent subset alongside the pages above. Grouped by area:
GET /api/accounts, GET /api/accounts/{id}, GET /api/accounts/{id}/transactionsPOST /api/transfers, GET /api/transfers, GET /api/transfers/{id}GET/POST /api/payees, PUT/DELETE /api/payees/{id}, GET/POST /api/scheduled-paymentsGET /api/cards, POST /api/cards/{id}/limit, POST /api/cards/{id}/freezeGET /api/statements/{id}, POST /api/transactions/{id}/disputePOST /api/loans, GET /api/loans/{id}, POST /api/loans/{id}/repayGET /api/holdings, POST /api/orders, GET /api/orders/{id}, GET/POST /api/watchlistGET /api/wallets, POST /api/deposits, POST /api/withdrawals/api/admin/accounts/{id}, POST /api/admin/transfers/{id}/approveGET /api/accounts/{id}, /api/transfers/{id}, /api/statements/{id} — read/operate on another customer's account./api/admin/... back-office actions.to/from of a transfer.Pick ONE variant and a coherent subset — a wallet app and a brokerage should
not share a page list. Size to endpoint_count; let theme_free_text /
custom_prompt bias the variant and naming. Vary account types, currencies, and
limits so two banking labs feel like different institutions.