mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-12 17:21:19 +08:00
Add comprehensive documentation for Numerical Analysis Workflow
- Introduced agent instruction template for task assignments in numerical analysis. - Defined CSV schema for tasks, including input, computed, and output columns. - Specified analysis dimensions across six phases of the workflow. - Established phase topology for the diamond deep tree structure of the workflow. - Outlined quality standards for assessing analysis reports, including criteria and quality gates.
This commit is contained in:
@@ -84,7 +84,25 @@
|
||||
"envPlaceholder": "键=值对(每行一个),例如:\nAPI_KEY=your_key\nDEBUG=true",
|
||||
"envHint": "每行输入一个键=值对",
|
||||
"scope": "作用域",
|
||||
"enabled": "启用此服务器"
|
||||
"enabled": "启用此服务器",
|
||||
"transportType": "传输类型",
|
||||
"transportStdio": "STDIO (本地进程)",
|
||||
"transportHttp": "HTTP (远程服务器)",
|
||||
"transportHint": "STDIO 运行本地命令,HTTP 连接到远程 MCP 服务器",
|
||||
"http": {
|
||||
"url": "服务器地址",
|
||||
"urlPlaceholder": "https://api.example.com/mcp",
|
||||
"urlHint": "MCP 服务器的 HTTP 端点地址",
|
||||
"bearerToken": "Bearer Token 环境变量",
|
||||
"bearerTokenPlaceholder": "MY_API_TOKEN",
|
||||
"bearerTokenHint": "包含 Bearer Token 的环境变量名称,用于 Authorization 请求头",
|
||||
"headers": "自定义请求头",
|
||||
"headersHint": "添加用于认证或配置的自定义请求头。启用 '环境变量' 可引用环境变量。",
|
||||
"headerName": "请求头名称",
|
||||
"headerValue": "请求头值",
|
||||
"isEnvVar": "环境变量",
|
||||
"addHeader": "添加请求头"
|
||||
}
|
||||
},
|
||||
"templates": {
|
||||
"npx-stdio": "NPX STDIO",
|
||||
@@ -94,7 +112,9 @@
|
||||
"validation": {
|
||||
"nameRequired": "服务器名称不能为空",
|
||||
"nameExists": "已存在同名服务器",
|
||||
"commandRequired": "命令不能为空"
|
||||
"commandRequired": "命令不能为空",
|
||||
"urlRequired": "服务器地址不能为空",
|
||||
"urlInvalid": "请输入有效的 URL 地址"
|
||||
},
|
||||
"actions": {
|
||||
"save": "保存",
|
||||
|
||||
Reference in New Issue
Block a user