blockrun
Use when user needs capabilities Claude lacks (image generation, real-time X/Twitter data) or explicitly requests external models ("blockrun", "use grok", "use gpt", "dall-e", "deepseek")
npx skills add majiayu000/claude-skill-registry --skill antigravity-blockrun --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# BlockRun **BlockRun works with Claude Code and Google Antigravity.** You can't generate images. You have no real-time X/Twitter access. BlockRun gives you these capabilities. ## Philosophy You have a wallet. When you need a capability you lack, you pay for it autonomously. | You Need | You Call | Pricing | |----------|----------|---------| | Image generation | DALL-E | $0.04/image | | Real-time X data | Grok + Live Search | $0.025/source | | Second opinion | GPT-5.2 | $1.75/M input, $14/M output | | Cheaper processing | DeepSeek | $0.14/M input, $0.28/M output | **How it works:** BlockRun uses x402 micropayments to route your requests to OpenAI, xAI, Google, and other providers. No API keys needed - your wallet pays per token. ## Budget Control (Optional) If the user specifies a budget (e.g., "use at most $1"), track spending and stop when budget is reached: ```python from blockrun_llm import setup_agent_wallet client = setup_agent_wallet() budget = 1.0 # User's budget # Before each call, check if within budget spending = client.get_spending() if spending['total_usd'] >= budget: print(f"Budget reached: ${spending['total_usd']:.4f} spent") # Stop making calls else: response = clie
- Philosophy
- Budget Control (Optional)
- When to Use
- Example User Prompts
- Wallet & Balance
- SDK Usage
- Basic Chat
- Real-time X/Twitter Search (xAI Live Search)
- Advanced X Search with Filters
- Image Generation
- xAI Live Search Reference
- Search Parameters
- Source Types
- Available Models
pip install --upgrade blockrun-llm
What does the blockrun skill do?
Use when user needs capabilities Claude lacks (image generation, real-time X/Twitter data) or explicitly requests external models ("blockrun", "use grok", "use gpt", "dall-e", "deepseek")
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill antigravity-blockrun --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
