* feat: chroots * wip * Update workspace templates and Playwright tests * Fix thinking panel close button not working during active thinking The auto-show useEffect was including showThinkingPanel in its dependency array, causing the panel to immediately reopen when closed since the state change would trigger the effect while hasActiveThinking was still true. Changed to use a ref to track previous state and only auto-show on transition from inactive to active thinking. * wip * wip * wip * Cleanup web search tool and remove hardcoded OAuth credentials * Ralph iteration 1: work in progress * Ralph iteration 2: work in progress * Ralph iteration 3: work in progress * Ralph iteration 4: work in progress * Ralph iteration 5: work in progress * Ralph iteration 6: work in progress * Ralph iteration 1: work in progress * Ralph iteration 2: work in progress * Ralph iteration 3: work in progress * Ralph iteration 4: work in progress * Ralph iteration 5: work in progress * Ralph iteration 6: work in progress * Ralph iteration 7: work in progress * Ralph iteration 1: work in progress * Ralph iteration 2: work in progress * improve readme * fix: remove unused file * feat: hero screenshot * Update README with cleaner vision and hero screenshot Simplified the vision section with "what if" framing, removed architecture diagram, added hero screenshot showing mission view.
87 lines
1.7 KiB
TOML
87 lines
1.7 KiB
TOML
[package]
|
|
name = "open_agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Managed control plane for OpenCode-based agents"
|
|
authors = ["Open Agent Contributors"]
|
|
|
|
[dependencies]
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
# Web framework
|
|
axum = { version = "0.7", features = ["ws", "multipart"] }
|
|
tower-http = { version = "0.5", features = ["cors", "trace"] }
|
|
|
|
# Serialization
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
|
|
# HTTP client
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
reqwest-eventsource = "0.6"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Utilities
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
thiserror = "1"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
|
|
# For tool implementations
|
|
walkdir = "2"
|
|
urlencoding = "2"
|
|
url = "2"
|
|
anyhow = "1"
|
|
async-stream = "0.3"
|
|
regex = "1"
|
|
async-recursion = "1"
|
|
|
|
# For memory/storage
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
|
|
# For desktop tools (process management on Unix)
|
|
libc = "0.2"
|
|
|
|
# Auth (JWT)
|
|
jsonwebtoken = "9"
|
|
|
|
# Cryptography for secrets
|
|
aes-gcm = "0.10"
|
|
pbkdf2 = "0.12"
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
|
|
# Remote console / file manager
|
|
base64 = "0.22"
|
|
|
|
# System monitoring
|
|
sysinfo = "0.32"
|
|
bytes = "1"
|
|
portable-pty = "0.9"
|
|
md5 = "0.7"
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
# Keep MSRV-compatible idna_adapter for the production builder (rustc 1.75).
|
|
idna_adapter = "=1.1.0"
|
|
|
|
[[bin]]
|
|
name = "open_agent"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "desktop-mcp"
|
|
path = "src/bin/desktop_mcp.rs"
|
|
|
|
[[bin]]
|
|
name = "host-mcp"
|
|
path = "src/bin/host_mcp.rs"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tempfile = "3"
|