brand-research: fix unrunnable credential line

Sanitization had rewritten the .env path into prose, leaving
`grep BRANDDEV_API_KEY environment variables` which greps two
nonexistent files. The key is already read from the environment.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Quanlai Li
2026-08-06 16:15:48 -07:00
parent 2c7ac09558
commit 750e69a311
+1 -1
View File
@@ -15,7 +15,7 @@ Extract the target domain from the user's input. Strip protocol and trailing sla
## Step 2: Fetch Brand Info
```bash
BRANDDEV_API_KEY=$(grep BRANDDEV_API_KEY environment variables | cut -d= -f2)
# BRANDDEV_API_KEY must be set in your environment
curl -s "https://api.brand.dev/v1/brand/retrieve?domain=${DOMAIN}" \
-H "Authorization: Bearer ${BRANDDEV_API_KEY}" \
-H "Content-Type: application/json"