惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Charge 10 sats per CrewAI tool call in one line
Zeke · 2026-05-13 · via DEV Community

Zeke

The bill problem nobody mentions

You wrote a CrewAI tool. It queries a market data API, or a search index, or a model endpoint that costs you real money per call. You published it. Six hours later your dashboard is on fire. Somebody's autonomous agent is calling it eight times a second, retrying every transient timeout, fanning out across symbol lists, and your OpenAI bill is doing things you do not want it to do.

You did not put a billing layer in front of it because billing layers want API keys, signups, KYC, Stripe accounts, sandbox modes, and a customer support inbox you do not have. So you took it down instead.

There is a smaller move. Charge each call 10 sats. The agent pays before the work runs. No account, no key, no custody. If the agent has a Lightning wallet attached, which most agentic frameworks getting funded right now do, the call just goes through and the sat lands in your wallet. If it does not, the agent gets a 402 and a bolt11 invoice and has to decide whether the answer is worth ten sats.

That's what powforge does. One wrapper.

pip install powforge

Enter fullscreen mode Exit fullscreen mode

Before, your raw tool, free, getting hammered

from crewai.tools import BaseTool

class MarketQuery(BaseTool):
    name: str = "market_query"
    description: str = "Look up the spot price for a symbol."

    def _run(self, symbol: str) -> dict:
        # your real call here, costs you per request
        return {"symbol": symbol, "price": fetch_price(symbol)}

Enter fullscreen mode Exit fullscreen mode

Anyone, anywhere, can spin up a CrewAI crew that imports this and call it forever.

After, same tool, ten sats per call

from crewai.tools import BaseTool
from powforge.l402 import wrap_with_l402

async def _market_query(symbol: str) -> dict:
    return {"symbol": symbol, "price": fetch_price(symbol)}

gated = wrap_with_l402(
    _market_query,
    lnbits_url="https://your-lnbits.example",
    lnbits_api_key="your-invoice-key",
    sats_amount=10,
)

class MarketQuery(BaseTool):
    name: str = "market_query"
    description: str = "Look up spot price. Costs 10 sats per call."

    async def _arun(self, envelope: str) -> dict:
        return await gated(envelope)

Enter fullscreen mode Exit fullscreen mode

That's it. The wrapped function now does this on every call:

  1. No payment proof in the envelope? Mint an invoice via LNBits, return a 402-shaped dict with the bolt11 and the payment_hash. The agent pays it.
  2. Payment proof present? Verify it against LNBits, cache the receipt for 10 minutes, run your real function, return the answer.

The agent's runtime sees the 402, asks its Lightning wallet to pay, gets the preimage, re-calls with the payment_hash as proof. Standard L402 round-trip.

What the 402 looks like

{
  "error": "payment_required",
  "invoice": "lnbc100n1pj...",
  "payment_hash": "5e8b...",
  "sats": 10,
  "next_step": "Pay the invoice, then re-call with the payment_hash as payment_proof."
}

Enter fullscreen mode Exit fullscreen mode

Any L402-aware agent runtime (or any human with a wallet) can resolve this. CrewAI has tool-calling middleware in the loop; the same envelope shape works.

LangChain variant

LangChain tools take a single arg, so use the envelope form:

import json
from langchain.tools import StructuredTool
from powforge.l402 import wrap_with_l402

async def _do_search(query: str) -> str:
    return search_index(query)

gated = wrap_with_l402(
    _do_search,
    lnbits_url="https://your-lnbits.example",
    lnbits_api_key="your-invoice-key",
    sats_amount=10,
)

async def search_tool(envelope: str) -> str:
    return await gated(envelope)

tool = StructuredTool.from_function(
    coroutine=search_tool,
    name="paid_search",
    description="Search the index. 10 sats per query.",
)

Enter fullscreen mode Exit fullscreen mode

The agent passes a JSON envelope: {"__payment_proof__": "<hash>", "__tool_input__": "<query>"}. Single-arg frameworks already do this for structured tool inputs.

AutoGen variant

AutoGen registers async functions directly on the agent:

from autogen import AssistantAgent
from powforge.l402 import wrap_with_l402

async def _summarize(text: str) -> str:
    return run_summary_model(text)

gated = wrap_with_l402(
    _summarize,
    lnbits_url="https://your-lnbits.example",
    lnbits_api_key="your-invoice-key",
    sats_amount=10,
)

agent = AssistantAgent(name="assistant", llm_config=...)
agent.register_for_llm(name="paid_summarize", description="10 sats per summary.")(gated)

Enter fullscreen mode Exit fullscreen mode

Same wrapper, same envelope, same receipts.

What you are not signing up for

  • No API keys to rotate.
  • No signup, no KYC, no merchant account.
  • No custody. The sats land in your LNBits wallet, which you control.
  • No new infrastructure if you already run LNBits. If you do not, point it at any hosted LNBits and start there.
  • No vendor lock-in. The envelope shape is open; the wrapper is one file you could rewrite in an afternoon.

Why ten sats

Ten sats is roughly a fraction of a cent at current prices. Cheap enough that an honest agent serving an honest request will not even notice. Expensive enough that an agent stuck in a retry loop will run out of wallet before it runs you out of API quota. The math is linear and self-limiting. That's the whole point.

If your tool wraps something more expensive, like a frontier model call or a paid API tier, raise sats_amount to whatever the underlying cost is, plus margin. The wrapper does not care.

Install and the rest of the family

pip install powforge

Enter fullscreen mode Exit fullscreen mode

PyPI: powforge · Python landing page · Docs and onboard · Home

There are sibling packages for the JS side of the same envelope. @powforge/langchain-l402-middleware for LangChain.js, @powforge/mcp-tool-l402 for MCP-server tool authors, @powforge/mcp-l402-gate for the full macaroon flow. All ship the same payment envelope, so a Python tool and a JS tool can sit behind the same paid surface and an agent can talk to both without knowing which is which.

If your tool is free and you wish it were not, this is fifteen lines.