v0.1.0 · MIT 开源 · 已上线

Multi-Agent Continuity Layer

解决多 Agent 协作断档问题。
让工作流像代码一样可回溯、可复用、可交接。
不是日志,是 Agent 的意识载体。

⌘ GitHub 仓库 快速预览 →
traceplane session — demo
[ 核心能力 ]
// 001

Episode 连续性模型

不仅仅是记录,而是 Agent 的意识载体。每个 Episode 都是一个完整的执行上下文,可随时恢复、复用和交接。

// 002

Surgical Replay

从任意执行节点进行状态 Fork。像 git checkout 一样回到过去,从那个点重新开始。

// 003

Handoff Brief

自动完成 Agent 间无损交接。上下文不丢失,意图不偏离,就像接力赛一样精准传递。

// 004

全链路事件流观测

Agent 行为、Artifact 沉淀、风险指标一体化追踪。每个事件都可回链到来源 trace。

agent-demo.ts TypeScript
import { Traceplane } from '@traceplane/sdk';

// 创建 Episode — 一个完整的执行上下文
const session = new Traceplane({
  project: 'customer-pulse',
  agent: 'claude-code'
});

// 追踪每一步操作
const ep = await session.createEpisode({
  title: 'Weekly Report Generation'
});

await ep.trace('tool.fetch_data', { duration: 1200 });
await ep.artifact({ type: 'report', url: 's3://...' });
await ep.complete();
// ✅ Episode 完成 — 上下文已保存,随时可交接

开始构建你的 Agent 工作图

开源、免费、可自托管。告别 Agent 协作的黑盒时代。

GitHub 仓库 阅读文档