Plan Execution System: - Add PlanStep, AccumulatedPlan types for multi-turn tool call accumulation - Implement AccumulatedPlanStatus for tracking plan lifecycle - Support selective approval of proposed tool calls before execution External Tools Integration: - Add ExternalToolDefinition and ExternalToolTransport to plugins crate - Extend ToolContext with external_tools registry - Add external_tool_to_llm_tool conversion for LLM compatibility JSON-RPC Communication: - Add jsonrpc crate for JSON-RPC 2.0 protocol support - Enable stdio-based communication with external tool servers UI & Engine Updates: - Add plan_panel.rs component for displaying accumulated plans - Wire plan mode into engine loop - Add plan mode integration tests 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "owlen"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
color-eyre = "0.6"
|
|
agent-core = { path = "../../core/agent" }
|
|
llm-core = { path = "../../llm/core" }
|
|
llm-ollama = { path = "../../llm/ollama" }
|
|
llm-anthropic = { path = "../../llm/anthropic" }
|
|
llm-openai = { path = "../../llm/openai" }
|
|
tools-fs = { path = "../../tools/fs" }
|
|
tools-bash = { path = "../../tools/bash" }
|
|
tools-slash = { path = "../../tools/slash" }
|
|
tools-plan = { path = "../../tools/plan" }
|
|
auth-manager = { path = "../../platform/auth" }
|
|
config-agent = { package = "config-agent", path = "../../platform/config" }
|
|
permissions = { path = "../../platform/permissions" }
|
|
hooks = { path = "../../platform/hooks" }
|
|
plugins = { path = "../../platform/plugins" }
|
|
ui = { path = "../ui" }
|
|
atty = "0.2"
|
|
futures-util = "0.3.31"
|
|
rpassword = "7"
|
|
open = "5"
|
|
futures = "0.3.31"
|
|
async-trait = "0.1.89"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
predicates = "3.1"
|
|
httpmock = "0.7"
|
|
tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
|
|
tempfile = "3.23.0"
|