v0.1.0 · MIT 开源 · 已上线

Multi-Agent
Continuity
Layer

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

traceplane session — demo
[ 核心能力 ]
// 001

Episode 连续性模型

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

// 002

Surgical Replay

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

// 003

Handoff Brief

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

// 004

全链路事件流观测

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

agent-demo.tsTypeScript
import { TraceplaneSDK } from '@traceplane/agent-sdk'; // 创建 Episode — 一个完整的执行上下文 const sdk = new TraceplaneSDK({ baseUrl: 'http://localhost:3000', projectId: 'customer-pulse', agentId: 'claude-code' }); // 追踪每一步操作 const session = await sdk.startEpisode({ title: 'Weekly Report Generation', goal: 'Generate customer feedback report', successCriteria: 'Report approved and delivered' }); await session.toolUse('fetch-data', 'pull feedback', '500 rows'); await session.artifact('weekly-report', 'Report', '# Summary...'); await session.complete('Report delivered'); // ✅ Episode 完成 — 上下文已保存

开始构建你的 Agent 工作图

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

[ 快速开始 ]
# 克隆并运行
git clone https://github.com/jaxxchen003/Traceplane.git
cd Traceplane
npm install
cp .env.example .env
npm run dev
访问 http://localhost:3000 查看平台
[ 已支持的 Agent ]
Claude Code ✓OpenCode ✓Gemini CLI ✓Codex ✓