Implements the remaining M12 features from AGENTS.md: **Plugin System (crates/platform/plugins)** - Plugin manifest schema with plugin.json support - Plugin loader for commands, agents, skills, hooks, and MCP servers - Discovers plugins from ~/.config/owlen/plugins and .owlen/plugins - Includes comprehensive tests (4 passing) **Session Checkpointing (crates/core/agent)** - Checkpoint struct capturing session state and file diffs - CheckpointManager with snapshot, diff, save, load, and rewind capabilities - File diff tracking with before/after content - Checkpoint persistence to .owlen/checkpoints/ - Includes comprehensive tests (6 passing) **REPL Commands (crates/app/cli)** - /checkpoint - Save current session with file diffs - /checkpoints - List all saved checkpoints - /rewind <id> - Restore session and files from checkpoint - Updated /help documentation M12 milestone now fully complete: ✅ /permissions, /status, /cost (previously implemented) ✅ Checkpointing and /rewind ✅ Plugin loader with manifest schema 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
539 B
TOML
23 lines
539 B
TOML
[package]
|
|
name = "agent-core"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
color-eyre = "0.6"
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures-util = "0.3"
|
|
|
|
# Internal dependencies
|
|
llm-ollama = { path = "../../llm/ollama" }
|
|
permissions = { path = "../../platform/permissions" }
|
|
tools-fs = { path = "../../tools/fs" }
|
|
tools-bash = { path = "../../tools/bash" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.13"
|