Skip to content

Commit 5272538

Browse files
sheikhcodersclaude
andcommitted
📚 Update README with complete multi-agent documentation
- Complete capability documentation - Agent architecture overview - MCP ecosystem integration guide - Updated environment variables - Project structure documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1bc3c9f commit 5272538

File tree

3 files changed

+299
-127
lines changed

3 files changed

+299
-127
lines changed

.env.example

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,60 @@
11
# ===========================================
22
# Computer-Using Agent - Environment Variables
33
# ===========================================
4-
# Copy this file to .env.local and fill in your API keys
5-
# All providers below offer FREE tiers!
4+
# Copy this file to .env.local and add your API keys
5+
# All providers have FREE tiers!
6+
7+
# ------------------------------------------
8+
# AI Model Providers (Required)
9+
# ------------------------------------------
610

711
# Groq API Key (FREE - https://console.groq.com)
8-
# - 30 requests per minute on free tier
9-
# - Models: llama-3.3-70b-versatile, gemma2-9b-it, mixtral-8x7b
12+
# Fast inference with Llama, Gemma, Mixtral
13+
# Rate limit: 30 requests/minute on free tier
1014
GROQ_API_KEY=gsk_your_groq_api_key_here
1115

1216
# Google Gemini API Key (FREE - https://aistudio.google.com/apikey)
13-
# - Generous free tier with Gemini 1.5 Flash
14-
# - Models: gemini-2.5-flash, gemini-1.5-flash, gemini-1.5-pro
17+
# Gemini 2.5 Flash, 1.5 Flash, vision capabilities
18+
# Generous free tier with 1M+ tokens
1519
GOOGLE_GENERATIVE_AI_API_KEY=your_google_api_key_here
1620

17-
# Optional: Vercel AI Gateway (provides $5/month free credit)
21+
# ------------------------------------------
22+
# Code Execution (Optional - Pro Features)
23+
# ------------------------------------------
24+
25+
# E2B API Key (FREE tier - https://e2b.dev)
26+
# Secure sandboxed Python/JavaScript execution
27+
# 100 hours/month free
28+
E2B_API_KEY=e2b_your_api_key_here
29+
30+
# ------------------------------------------
31+
# MCP Integrations (Optional)
32+
# ------------------------------------------
33+
34+
# GitHub Personal Access Token
35+
# For repository management, issues, PRs
36+
# Create at: https://github.com/settings/tokens
37+
GITHUB_TOKEN=ghp_your_github_token_here
38+
39+
# Slack Bot Token
40+
# For sending messages and channel management
41+
# Create at: https://api.slack.com/apps
42+
SLACK_BOT_TOKEN=xoxb-your-slack-token-here
43+
44+
# Figma Access Token
45+
# For accessing design files and components
46+
# Create at: https://www.figma.com/developers/api
47+
FIGMA_ACCESS_TOKEN=your_figma_token_here
48+
49+
# Google Maps API Key
50+
# For places search and directions
51+
# Create at: https://console.cloud.google.com/apis
52+
GOOGLE_MAPS_API_KEY=your_google_maps_key_here
53+
54+
# ------------------------------------------
55+
# Optional: Vercel AI Gateway
56+
# ------------------------------------------
57+
58+
# Provides $5/month free credit for multiple providers
1859
# Get your key at: https://vercel.com/dashboard/ai/api-keys
1960
# AI_GATEWAY_API_KEY=your_ai_gateway_key_here

0 commit comments

Comments
 (0)