Skip to content

Commit 7e4c3b4

Browse files
committed
enhanced coding agent example
1 parent 9c1479f commit 7e4c3b4

32 files changed

+3738
-1245
lines changed

Cargo.lock

Lines changed: 147 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 19 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
2-
name = "example-coding-agent"
2+
name = "example-coding-agent"
33
version = "0.1.0"
44
edition = "2021"
55
publish = 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]]
99
name = "coding-agent"
1010
path = "src/main.rs"
1111

1212
[dependencies]
13-
eventage = { path = "../..", features = ["sandbox", "sqlite"] }
14-
13+
eventage = { path = "../..", features = ["observability", "replay"] }
1514
tokio = { version = "1", features = ["full"] }
1615
serde = { version = "1", features = ["derive"] }
1716
serde_json = "1"
@@ -20,26 +19,20 @@ tracing = "0.1"
2019
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2120
uuid = { version = "1", features = ["v4"] }
2221
chrono = { version = "0.4", features = ["serde"] }
23-
thiserror = "1"
22+
thiserror = "2"
2423
anyhow = "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

Comments
 (0)