blockrun

Featured

BlockRun works with Claude Code and Google Antigravity.

AI & Automation 40,440 stars 6528 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 = client.chat("openai/gpt-5.2", "Hello!") # At the end, report spending spending = client.get_spending() print(f"๐Ÿ’ฐ Total spent: ${spending['total_usd']:.4f} across {spending['calls']} calls") ``` ## When to Use | Trigger | Your Action | |---------|-------------| | User explicitl...

Details

Author
sickn33
Repository
sickn33/antigravity-awesome-skills
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content โ€” not just same category