fix: 移除 skill CLI 引用

This commit is contained in:
2026-07-09 17:08:08 +00:00
parent fb5412d6ee
commit 08a3aeef91
+2 -2
View File
@@ -68,7 +68,7 @@ print(json.dumps(result))
## 第四步:测试
```bash
agc run <skill-id> --inputs '{"message": "测试"}'
agc run <suite-id> --inputs '{"message": "测试"}'
```
或直接提交任务到 API
@@ -76,7 +76,7 @@ agc run <skill-id> --inputs '{"message": "测试"}'
```bash
curl -X POST https://suites.mercator.cn/api/v1/task \
-H "Authorization: Bearer mk_xxxx" \
-d '{"skill_id": "...", "inputs": {"message": "测试"}}'
-d '{"suite_id": "...", "inputs": {"message": "测试"}}'
```
## 第五步:发布