# ust-agent-release **Repository Path**: pmhw/ust-agent-release ## Basic Information - **Project Name**: ust-agent-release - **Description**: ust-agent-release - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-04 - **Last Updated**: 2026-05-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 使用 ```powershell agent.cmd --help agent.cmd --version agent.cmd -w . -p "解释这个项目的结构" agent.cmd -w ./my-project -p "添加一个 GET /health 接口" # JSON 输出(供面板/远程调用) agent.cmd -w . -p "分析代码" --output-format json # 自动批准所有工具调用 agent.cmd -w . -p "重构这个模块" -y ``` ## 模型配置来源(按优先级覆盖) 1) 环境变量(最优先) ```text UST_AGENT_LLM_PROVIDER UST_AGENT_LLM_MODEL UST_AGENT_LLM_API_KEY UST_AGENT_LLM_BASE_URL ``` 2) Remote Agent 配置文件(自动读取) - 若设置了 `REMOTE_AGENT_CONFIG_PATH`,则使用该绝对路径 - 否则默认路径: - Windows:`%APPDATA%\vcc-vibecoding\remote-agent-config.json` - Linux/macOS:`~/.config/vcc-vibecoding/remote-agent-config.json` 示例(节选): ```json { "ustAgentLlm": { "activeProfileId": "deepseek-main", "profiles": [ { "id": "deepseek-main", "label": "DeepSeek", "provider": "deepseek", "modelId": "deepseek-v4-pro", "apiKey": "sk-…", "baseUrl": "" }, { "id": "openai-alt", "label": "OpenAI 兼容", "provider": "custom", "modelId": "gpt-4o-mini", "apiKey": "sk-…", "baseUrl": "https://api.openai.com/v1" } ] } } ``` 3) 传统 DeepSeek 环境变量(兼容) ```text DEEPSEEK_API_KEY DEEPSEEK_MODEL DEEPSEEK_BASE_URL ``` 4) 工作区内 `agent.config.yml`(可选) ```powershell cp agent.config.example.yml agent.config.yml ```