brand-research
Installation
SKILL.md
Brand Research
Look up brand information using the brand.dev API and save logos locally.
Prerequisites
- brand.dev API key in
BRANDDEV_API_KEYenvironment variable (sign up at brand.dev)
Step 1: Get the Domain
Extract the target domain from the user's input. Strip protocol and trailing slashes (e.g., https://example.com/ -> example.com).
Step 2: Fetch Brand Info
curl -s "https://api.brand.dev/v1/brand/retrieve?domain=${DOMAIN}" \
-H "Authorization: Bearer ${BRANDDEV_API_KEY}" \
-H "Content-Type: application/json"