Generate comprehensive brand guidelines using Claude Agent SDK. This Apify Actor analyzes brands and creates detailed brand guideline documents. See example-prompt.md for reference.
{
"task": "Create brand guidelines for Nike based on their website",
"url": "https://nike.com",
"anthropicApiKey": "sk-ant-...",
"outputDatasetId": "optional-dataset-id"
}task(string): Description of what Claude should do
url(string): Starting URL to navigate toanthropicApiKey(string): Your Anthropic API key (or setANTHROPIC_API_KEYenv var)outputDatasetId(string): Specific dataset ID to push results to
cd actor-brand-guideline-creator
# Install dependencies
pip install uv
uv sync
# Run locally
uv run python -m actor_brand_guideline_creatorapify buildapify run -i input.jsonANTHROPIC_API_KEY: Your Anthropic API key (required)APIFY_TOKEN: Apify API token (set automatically in Apify platform)
- Anthropic API key: The actor fails fast if
ANTHROPIC_API_KEYis missing. Set it in the actor input (anthropicApiKey) or as an environment variable.
- Generated brand guideline documents (
.md,.json,.pdf,.png, etc.) are uploaded to the run's default key-value store. Reference theoutput_filesorstored_filesfields in the dataset output to retrieve them.