Bitcoin UI iOS
+AI DESIGN REVIEW FOR BITCOIN IOS APPS.
Design Review
Claude
+Claude
$ curl -L -o ~/.claude/commands/bitcoinui.md https://bitcoinui.ai/bitcoinui.md
$ claude
> /bitcoinui
Codex
+Codex
$ curl -fsSL https://bitcoinui.ai/install-codex.sh | bash
$ codex
> $bitcoinui
Cursor
+Cursor
$ curl -L -o ~/.cursor/commands/bitcoinui.md https://bitcoinui.ai/bitcoinui.md
$ cursor
> /bitcoinui
OpenCode
+$ curl -L -o ~/.config/opencode/command/bitcoinui.md https://bitcoinui.ai/bitcoinui.md
+$ opencode
+> /bitcoinui
+ INSTALL -> RUN BITCOINUI -> GET A DESIGN REVIEW
+BITCOINUI REVIEW: SendFeeView.swift
+===================================
+SERIOUS (1 issue)
+----------------
+[UX] Line 88: Fee picker lacks a high-fee warning
+Fix: Add a warning when fee >= 50% of amount.
+Reference: Bitcoin Design Guide - Send fees https://bitcoin.design/guide/daily-spending-wallet/sending/send-fees/
+SUMMARY: 0 critical, 1 serious, 0 moderate
+ diff --git a/site/style.css b/site/style.css index 204e0a2..f9659af 100644 --- a/site/style.css +++ b/site/style.css @@ -4,6 +4,7 @@ --bg-alt: #111111; --fg: #f5f5f5; --muted: #b7b7b7; + --muted-2: #8f8f8f; --border: #262626; --orange: #f7931a; --green: #00c853; @@ -103,6 +104,14 @@ h2 { font-weight: 300; } +h2 a { + color: inherit; +} + +h2 a:hover { + color: var(--orange); +} + .section-title { margin: 0 0 24px; font-size: 13px; @@ -132,6 +141,19 @@ pre { overflow-x: auto; } +#flow .note { + color: var(--muted-2); + font-size: 12px; +} + +.output-block { + margin-top: 10px; + padding: 18px 18px 20px; + background: #0f0f0f; + border-color: #2d2d2d; + color: var(--muted-2); +} + code { font-family: inherit; font-size: 13px; @@ -140,6 +162,18 @@ code { white-space: pre; } +.output-block code { + line-height: 1.5; + color: inherit; + font-size: 10px; +} + +.output-block, +.output-block code, +.output-block .prompt { + color: var(--muted-2); +} + .prompt { color: var(--green); }