Anthropic API 密钥会上传给 Agentix
原文依据:3 处该 Skill 明确要求用户提供 Anthropic API 密钥,并通过经过 Agentix 身份验证的 PATCH 请求把完整密钥交给 agentix.cloud。源码只有服务方关于加密存储和用途的声明,不能验证其实现。
Agentix 或能够访问其团队配置的一方可能使用该密钥调用 Anthropic API,读取密钥关联的权限范围,并产生由用户账户承担的费用。
在 SaaS 设置中,Skill 会要求用户提供完整的 Anthropic API 密钥,并通过 PATCH 请求发送至 agentix.cloud。其“加密保存且仅用于 worker”的说法只是文档声明,所给源码无法验证服务端实现。用户可要求改用限额较低的专用密钥、确认保存与删除政策,或拒绝上传主账户密钥。
Workers need an Anthropic API key to run. Ask the user to provide their Anthropic API key (from console.anthropic.com), then set it on the team — do not display it in chat:```PATCH https://agentix.cloud/teams/$TEAM_IDAuthorization: Bearer $API_KEY{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }```This is stored encrypted and used only to spawn workers.查看另外 2 个位置
```PATCH https://agentix.cloud/teams/$TEAM_IDAuthorization: Bearer $API_KEY{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }```This is stored encrypted and used only to spawn workers.