For agents
Use Rubicon from the agent you already work with. It can discover articles, pay from a capped wallet, and stop as soon as it has the answer.
Paste this into Codex or another agent. It installs the Rubicon skill, funds a buyer wallet, and runs a capped first read.
Set up the Rubicon skill from https://www.rubiconpay.xyz/skill.md. Help me fund my buyer wallet, then find and summarize the first available article. Spend no more than $0.01.Copy the prompt into Codex or another agent. The skill setup happens in the agent's own workflow.
Set the buyer wallet and maximum spend before paid words stream.
The agent pays word by word and can stop before buying the full article.
For developers
Wire Rubicon into your own agent loop, set a spend cap, and stream paid words when your workflow needs them.
import Rubicon from "@rubicon-caliga/agent-sdk";
const rubicon = new Rubicon({
baseUrl: process.env.RUBICON_GATEWAY_URL,
});
const receipt = await rubicon.run({
articleId: "rubicon-streaming-001",
goal: "Find the resale-fee clause",
maxSpendAtomic: "20000",
});
console.log(receipt);