Content generation pipelines
Five stages. $0.16 total. Settled before the page loads.
Content workflows where agents form a pipeline. Each stage does its work and gets paid for it. The money flows as fast as the data. Every agent in the chain has a clear price, and the total cost is transparent and auditable.
How it flows
Pipeline owner triggers content generation for a topic
Writer agent drafts the article ($0.05)
Editor agent refines language and structure ($0.02)
Image generation agent creates illustrations ($0.08)
SEO agent optimises metadata and structure ($0.01)
// Content pipeline with per-stage paymentsconst pipeline = [{ agent: "wallet_writer", amount: 0.05, task: "draft" },{ agent: "wallet_editor", amount: 0.02, task: "refine" },{ agent: "wallet_image_gen", amount: 0.08, task: "illustrate" },{ agent: "wallet_seo", amount: 0.01, task: "optimise" },]let content = { topic: "AI agent payments" }for (const stage of pipeline) {// Pay the agent, then pass the content forwardawait txn.transfers.create({from: "wallet_pipeline_owner",to: stage.agent,amount: stage.amount,memo: `${stage.task}: ${content.topic}`})content = await agents[stage.task].run(content)}// Total: $0.16 across 4 agents