diff --git a/README.md b/README.md index e7bec35..cbbadcb 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Text("Bitcoin Orange") Install `bitcoinui` in your AI coding tool. -### Claude +### [Claude](https://code.claude.com/docs/en/slash-commands) ```sh curl -L -o ~/.claude/commands/bitcoinui.md https://bitcoinui.ai/bitcoinui.md @@ -40,7 +40,7 @@ claude /bitcoinui ``` -### Codex +### [Codex](https://github.com/openai/codex/blob/main/docs/skills.md) ```sh curl -fsSL https://bitcoinui.ai/install-codex.sh | bash @@ -48,7 +48,7 @@ codex $bitcoinui ``` -### Cursor +### [Cursor](https://cursor.com/docs/agent/chat/commands) ```sh curl -L -o ~/.cursor/commands/bitcoinui.md https://bitcoinui.ai/bitcoinui.md @@ -56,6 +56,14 @@ cursor /bitcoinui ``` +### [OpenCode](https://opencode.ai/docs/commands/) + +```sh +curl -L -o ~/.config/opencode/command/bitcoinui.md https://bitcoinui.ai/bitcoinui.md +opencode +/bitcoinui +``` + Example output: ``` diff --git a/site/index.html b/site/index.html index efbf06e..d4bf203 100644 --- a/site/index.html +++ b/site/index.html @@ -3,10 +3,15 @@ - Bitcoin UI iOS + Bitcoin UI + AI + + @@ -15,37 +20,57 @@ href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet" > - +

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); }