feat: interactive CLI with REPL, markdown rendering, and project init

This commit is contained in:
Sisyphus
2026-04-01 20:36:06 +09:00
parent 3a1833e444
commit ca5fb61d42
7 changed files with 6796 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
[package]
name = "claw-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
publish.workspace = true
[[bin]]
name = "claw"
path = "src/main.rs"
[dependencies]
api = { path = "../api" }
commands = { path = "../commands" }
compat-harness = { path = "../compat-harness" }
crossterm = "0.28"
pulldown-cmark = "0.13"
rustyline = "15"
runtime = { path = "../runtime" }
plugins = { path = "../plugins" }
serde_json.workspace = true
syntect = "5"
tokio = { version = "1", features = ["rt-multi-thread", "time"] }
tools = { path = "../tools" }
[lints]
workspace = true