c709b3d9b2
为 agent-cli 增加 stdio JSON-RPC 2.0 服务入口与运行控制协议 补充 Host 实时流监听和流式取消入口 新增 App Server 子进程闭环测试及协议文档 更新 README、架构、TODO 与共享决策记录
26 lines
616 B
TOML
26 lines
616 B
TOML
[package]
|
|
name = "agent-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
description = "通用 Agent 单智能体命令行程序"
|
|
|
|
[[bin]]
|
|
name = "agent"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
agent-app.workspace = true
|
|
agent-codex.workspace = true
|
|
agent-host.workspace = true
|
|
agent-mcp.workspace = true
|
|
agent-provider-fake.workspace = true
|
|
agent-provider-openai.workspace = true
|
|
agent-runtime-core.workspace = true
|
|
agent-runtime-engine.workspace = true
|
|
agent-skills.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
toml.workspace = true
|