11[package ]
2- name = " example-coding-agent"
2+ name = " example-coding-agent"
33version = " 0.1.0"
44edition = " 2021"
55publish = false
6- description = " Enterprise-grade AI coding agent built on Eventage: streaming LLM output, ratatui TUI, security-gate hooks, context compaction, and turn-level diff tracking. "
6+ description = " Coding agent — agentic capabilities with streaming TUI, security gate, and diff tracking"
77
88[[bin ]]
99name = " coding-agent"
1010path = " src/main.rs"
1111
1212[dependencies ]
13- eventage = { path = " ../.." , features = [" sandbox" , " sqlite" ] }
14-
13+ eventage = { path = " ../.." , features = [" observability" , " replay" ] }
1514tokio = { version = " 1" , features = [" full" ] }
1615serde = { version = " 1" , features = [" derive" ] }
1716serde_json = " 1"
@@ -20,26 +19,20 @@ tracing = "0.1"
2019tracing-subscriber = { version = " 0.3" , features = [" env-filter" ] }
2120uuid = { version = " 1" , features = [" v4" ] }
2221chrono = { version = " 0.4" , features = [" serde" ] }
23- thiserror = " 1 "
22+ thiserror = " 2 "
2423anyhow = " 1"
25-
26- reqwest = { version = " 0.12" , features = [" json" , " stream" ] }
27-
28- # CLI
29- clap = { version = " 4" , features = [" derive" ] }
30- dirs = " 5"
31-
32- # TUI
33- ratatui = " 0.29"
34- crossterm = { version = " 0.28" , features = [" event-stream" ] }
35-
36- # Streaming SSE
37- futures-util = " 0.3"
38-
39- # Diff / patch tracking
40- similar = { version = " 2.6" , features = [" text" ] }
41- diffy = " 0.3"
42-
43- # File hashing for diff worker
44- sha2 = " 0.10"
45- hex = " 0.4"
24+ clap = { version = " 4" , features = [" derive" ] }
25+ dirs = " 5"
26+ serde_yaml = " 0.9"
27+ glob = " 0.3"
28+ regex = " 1"
29+ walkdir = " 2"
30+ reqwest = { version = " 0.12" , features = [" json" , " stream" ] }
31+ futures-util = " 0.3"
32+ ratatui = " 0.29"
33+ crossterm = { version = " 0.28" , features = [" event-stream" ] }
34+ similar = { version = " 2.6" , features = [" text" ] }
35+ diffy = " 0.3"
36+ sha2 = " 0.10"
37+ hex = " 0.4"
38+ rustyline = " 14"
0 commit comments