Agent-to-agent
Model payments between agents for delegated work and chained orchestration.
await opencard.settlements.create({ from: "orchestrator", to: "research-agent", amount: 2.5, basis: "per-task"});await opencard.settlements.split({ from: "orchestrator", totalAmount: 10, splits: [ { to: "scraper", share: 0.4 }, { to: "analyst", share: 0.35 }, { to: "writer", share: 0.25 } ]});