From 273acea987b9403b9177f042bc84146a5b8c9447 Mon Sep 17 00:00:00 2001 From: jasdeepbhalla Date: Sat, 6 Jun 2026 15:30:45 -0700 Subject: [PATCH] Add cursor and droid to sandboxes built-in services table The credentials.md built-in services table was missing entries for cursor and droid, both of which are documented agent pages that use 'sbx secret set -g ' with service-specific environment variables: - cursor: CURSOR_API_KEY, proxied to api2.cursor.sh - droid: FACTORY_API_KEY, proxied to factory.ai Added both rows in alphabetical order. Fixes #25272 --- content/manuals/ai/sandboxes/security/credentials.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/manuals/ai/sandboxes/security/credentials.md b/content/manuals/ai/sandboxes/security/credentials.md index 9209ad2e4dc..c41d13fb070 100644 --- a/content/manuals/ai/sandboxes/security/credentials.md +++ b/content/manuals/ai/sandboxes/security/credentials.md @@ -96,6 +96,8 @@ checks and the API domains it authenticates requests to: | ----------- | ---------------------------------- | ----------------------------------- | | `anthropic` | `ANTHROPIC_API_KEY` | `api.anthropic.com` | | `aws` | `AWS_ACCESS_KEY_ID` | AWS Bedrock endpoints | +| `cursor` | `CURSOR_API_KEY` | `api2.cursor.sh` | +| `droid` | `FACTORY_API_KEY` | `factory.ai` | | `github` | `GH_TOKEN`, `GITHUB_TOKEN` | `api.github.com`, `github.com` | | `google` | `GEMINI_API_KEY`, `GOOGLE_API_KEY` | `generativelanguage.googleapis.com` | | `groq` | `GROQ_API_KEY` | `api.groq.com` |