Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ On crash: Resume from last safe breakpoint, auto-seal incomplete tool calls
### 3. Fork & Trajectory Exploration

```typescript
// Create a checkpoint at current state
const checkpointId = await agent.checkpoint('before-decision');
// Create a snapshot at current state
const snapshotId = await agent.snapshot('before-decision');

// Fork to explore different paths
const explorerA = await agent.fork(checkpointId);
const explorerB = await agent.fork(checkpointId);
const explorerA = await agent.fork(snapshotId);
const explorerB = await agent.fork(snapshotId);

await explorerA.chat('Try approach A');
await explorerB.chat('Try approach B');
Expand Down
2 changes: 1 addition & 1 deletion docs/ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
| Multi-provider | Stable | Anthropic, OpenAI, Gemini, DeepSeek, Qwen, GLM... |
| Tool System | Stable | Built-in + MCP protocol |
| AgentPool | Stable | Up to 50 agents per process |
| Checkpointer | Stable | Memory, File, Redis implementations |
| Snapshot/Fork | Stable | Explore different agent trajectories |
| Context Compression | Stable | Automatic history management |
| Hook System | Stable | Pre/post model and tool hooks |

Expand Down
164 changes: 0 additions & 164 deletions src/core/checkpointer.ts

This file was deleted.

135 changes: 0 additions & 135 deletions src/core/checkpointers/file.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/core/checkpointers/index.ts

This file was deleted.

Loading
Loading