feat(cli): spacesh-cli scaffold — clap tree, one-shot client, command mapping

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-09 22:17:15 +07:00
parent 635f9f4356
commit a9fa1bf77b
8 changed files with 301 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
[package]
name = "spacesh-cli"
edition.workspace = true
version.workspace = true
[lib]
name = "spacesh_cli"
path = "src/lib.rs"
[[bin]]
name = "spacesh"
path = "src/main.rs"
[dependencies]
spacesh-proto = { path = "../spacesh-proto" }
clap.workspace = true
clap_complete.workspace = true
tokio = { workspace = true }
serde_json.workspace = true
anyhow.workspace = true