Getting Started

Get StanleyAI running on your machine in under 5 minutes.

Prerequisites

1. Clone the Repository

git clone https://github.com/stanleyai/stanley-ai.git
cd stanley-ai

2. Install Skills

Skills are Markdown files that live in .claude/skills/. They teach Claude new capabilities.

# Skills are already included in the repo
ls .claude/skills/
# ai-media-gen.md  brainstorming.md  competitor-intelligence.md  ...

3. Deploy Workers

Each Worker is a self-contained API that runs on Cloudflare's edge network.

# Login to Cloudflare
npx wrangler login

# Deploy the API registry
cd cloudflare-workers/stanley-api
npx wrangler deploy

# Deploy remaining Workers
cd ../atlantis-leads && npx wrangler deploy
cd ../content-flywheel && npx wrangler deploy
cd ../morning-briefing && npx wrangler deploy

4. Configure Claude

Add your CLAUDE.md configuration file to teach Claude about your infrastructure:

# In your project root, create CLAUDE.md
# This file tells Claude about your Workers, databases, and preferences

5. Talk to Claude

That's it. Start a conversation with Claude Code and it has access to everything:

claude
> "What skills do I have installed?"
> "Generate a blog post about AI automation"
> "What's my morning briefing?"
> "Add a new lead: John Smith, 248-555-0100, FHA loan"

Next Steps