From 53bdc9047803ac907c83dd40fa999ca97dafdf26 Mon Sep 17 00:00:00 2001 From: Arthur Chiu Date: Sun, 18 Jan 2026 09:17:35 -0800 Subject: [PATCH 1/2] docs: add prompt quickstart guide --- README.md | 2 +- docs/getting-started/prompt-quickstart.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 docs/getting-started/prompt-quickstart.md diff --git a/README.md b/README.md index 8182adb..d159382 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ response = client.chat("Hello!") ### Documentation -**Getting Started:** [Installation](./docs/getting-started/installation.md) | [Quick Start](./docs/getting-started/quick-start.md) | [Authentication](./docs/getting-started/authentication.md) +**Getting Started:** [Installation](./docs/getting-started/installation.md) | [Quick Start](./docs/getting-started/quick-start.md) | [Prompt Quickstart](./docs/getting-started/prompt-quickstart.md) | [Authentication](./docs/getting-started/authentication.md) **API Reference:** [Chat Completions](./docs/api-reference/chat-completions.md) | [Models](./docs/api-reference/models.md) | [Errors](./docs/api-reference/errors.md) diff --git a/docs/getting-started/prompt-quickstart.md b/docs/getting-started/prompt-quickstart.md new file mode 100644 index 0000000..f5d1a19 --- /dev/null +++ b/docs/getting-started/prompt-quickstart.md @@ -0,0 +1,22 @@ +# Prompt Quickstart + +Get started with BlockRun in Claude Code using a single prompt. + +## Prerequisites + +- [Claude Code](https://claude.ai/code) installed +- USDC on Base (or funds ready to transfer) + +## The Prompt + +Copy and paste this into Claude Code: + +``` +Set up BlockRun for x402 payments in Claude Code: +1. Install blockrun-mcp +2. Configure wallet (ask if I have one or want auto-generated) +3. Help me fund it +4. Prove it works: show balance → make an LLM call → show balance changed +``` + +Claude will walk you through each step interactively. From 7a82be67acc2c50c9a36b372ee1aaca52dfc055a Mon Sep 17 00:00:00 2001 From: Arthur Chiu Date: Mon, 19 Jan 2026 15:25:35 -0800 Subject: [PATCH 2/2] make prompt instructions clearer --- docs/getting-started/prompt-quickstart.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started/prompt-quickstart.md b/docs/getting-started/prompt-quickstart.md index f5d1a19..6404e83 100644 --- a/docs/getting-started/prompt-quickstart.md +++ b/docs/getting-started/prompt-quickstart.md @@ -13,10 +13,10 @@ Copy and paste this into Claude Code: ``` Set up BlockRun for x402 payments in Claude Code: -1. Install blockrun-mcp -2. Configure wallet (ask if I have one or want auto-generated) -3. Help me fund it -4. Prove it works: show balance → make an LLM call → show balance changed +1. Install blockrun-mcp: `npx @anthropic-ai/claude-code mcp add blockrun-mcp` +2. Configure BLOCKRUN_WALLET_KEY (ask if I have a private key or want to generate one) +3. Show my wallet address and help me fund it with USDC on Base +4. Prove it works: check balance → make an LLM call → confirm balance decreased ``` Claude will walk you through each step interactively.