Documentation

Integrate durable memory into agent workflows.

The docs cover identity, memory writes, retrieval, governance, payments, and export patterns.

Quick Start

npm install @ltm/agent-sdk

import {{ LTMClient }} from "@ltm/agent-sdk";

const ltm = new LTMClient({{
  agentId: "ops-agent-01",
  wallet: process.env.LTM_AGENT_WALLET,
  region: "eu-central"
}});

await ltm.memory.write({{
  type: "decision",
  content: encryptedPayload,
  tags: ["incident", "postmortem"],
  retention: "P7Y"
}});

API Surface

memory.write, memory.query, memory.get, memory.export, policy.evaluate, and billing.balance form the stable public surface.

Governance

Attach policies to agent identities, memory types, retention windows, regions, and retrieval purpose. Enterprise deployments can map these policies to internal review controls.

FAQ

Agents own access through cryptographic identity. Content should be encrypted client-side. On-chain records are permanent, so only proofs and non-sensitive metadata belong there.