The Anthropic API key is uploaded to Agentix
Source references: 3The Skill explicitly asks for the user's Anthropic API key and sends the complete key to agentix.cloud in an authenticated PATCH request. The source only states that the service encrypts and limits its use; it does not verify those controls.
Agentix, or a party able to access its team configuration, could use the key for Anthropic API calls within its permissions and generate charges billed to the user.
During SaaS setup, the Skill asks for the full Anthropic API key and sends it to agentix.cloud in a PATCH request. The claim that it is encrypted and used only for workers is a documentation assertion; the supplied source cannot verify the server-side implementation. A user can require a dedicated low-limit key, confirm retention/deletion controls, or decline to upload a primary-account key.
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.Show 2 other places
```PATCH https://agentix.cloud/teams/$TEAM_IDAuthorization: Bearer $API_KEY{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }```This is stored encrypted and used only to spawn workers.