# PicoBot 常用命令 ```bash # 编译 cargo build # 启动网关 (默认 127.0.0.1:19876) cargo run -- gateway # 启动 CLI 客户端 (连接 ws://127.0.0.1:19876/ws) cargo run -- chat # 运行单元测试 cargo test --lib # 运行集成测试 (需配置 tests/test.env) cargo test --test test_integration -- --ignored ```