5 lines. That's it.
import { MnemoPay } from "@mnemopay/sdk";
const agent = MnemoPay.quick("agent-001");
await agent.remember("User prefers TypeScript");
const memories = await agent.recall();
const tx = await agent.charge(5.00, "Built analytics dashboard");
await agent.settle(tx.id);
// ^ memories accessed in the last hour get +0.05 importance
$ npm install @mnemopay/sdk