For agents

Add paid reading to your agent.

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.

Add Rubicon to your agent

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.
01 · Connect

Start from chat

Copy the prompt into Codex or another agent. The skill setup happens in the agent's own workflow.

02 · Fund

Cap every read

Set the buyer wallet and maximum spend before paid words stream.

03 · Read

Stop when answered

The agent pays word by word and can stop before buying the full article.

For developers

Use the SDK when you want direct control.

Wire Rubicon into your own agent loop, set a spend cap, and stream paid words when your workflow needs them.

npm install @rubicon-caliga/agent-sdk
ts
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);