-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
80 lines (56 loc) · 3.23 KB
/
.env.example
File metadata and controls
80 lines (56 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# ============================================================
# telegram-claude-bot-template — Environment Variables
# Copy this file to .env and fill in your values.
# NEVER commit .env to git.
# ============================================================
# ── REQUIRED ────────────────────────────────────────────────
# You MUST set these for the bot to start.
# Telegram bot token for admin bot — get from @BotFather
TELEGRAM_BOT_TOKEN_ADMIN=your-admin-bot-token-here
# Your personal Telegram user ID (get from @userinfobot)
ADMIN_USER_ID=YOUR_TELEGRAM_USER_ID
# Main working group chat ID (negative number for groups)
GROUP_ID=YOUR_GROUP_CHAT_ID
# At least ONE LLM provider key (bot uses fallback chain)
KIMI_API_KEY=your-kimi-api-key-here
# ── RECOMMENDED ─────────────────────────────────────────────
# Fallback LLM providers — bot auto-falls back in order.
# More providers = more resilience.
CEREBRAS_API_KEY=your-cerebras-api-key-here
DEEPSEEK_API_KEY=your-deepseek-api-key-here
GEMINI_API_KEY=your-gemini-api-key-here
# ── OPTIONAL: Extra Persona Bots ────────────────────────────
# One token per persona bot. Add as many as you need.
TELEGRAM_BOT_TOKEN_BOT1=your-bot1-token-here
TELEGRAM_BOT_TOKEN_BOT2=your-bot2-token-here
# TELEGRAM_BOT_TOKEN_<ID>=...
# ── OPTIONAL: Team Groups ───────────────────────────────────
# Only needed if using team agents (Scout/Builder/Growth/Critic)
PERSONAL_GROUP_ID=YOUR_PERSONAL_GROUP_CHAT_ID
TEAM_E_GROUP_ID=YOUR_TEAM_GROUP_CHAT_ID
HEALER_THREAD_ID=1
HEARTBEAT_THREAD_ID=1
# ── OPTIONAL: Additional LLM Providers ─────────────────────
MINIMAX_API_KEY=your-minimax-api-key-here
GROQ_API_KEY=your-groq-api-key-here
OPENAI_API_KEY=your-openai-api-key-here
# ── OPTIONAL: X / Twitter (for X curation feature) ─────────
TELEGRAM_BOT_TOKEN_TWITTER=your-twitter-bot-token-here
TWITTER_USERNAME=your_twitter_username
TWITTER_EMAIL=your_twitter_email@example.com
TWITTER_PASSWORD=your_twitter_password
TWITTER_TOTP_SECRET=your_totp_secret
# ── OPTIONAL: Crypto (for crypto digest feature) ───────────
COINGECKO_API_KEY=your-coingecko-api-key
CMC_API_KEY=your-coinmarketcap-api-key
# ── OPTIONAL: Web Scraping ──────────────────────────────────
FIRECRAWL_API_KEY=your-firecrawl-api-key
XCRAWL_API_KEY=your-xcrawl-api-key
# ── OPTIONAL: VPS / Infrastructure ──────────────────────────
VPS_HOST=your.vps.ip.address
VPS_USER=your_vps_username
# ── OPTIONAL: Telethon (reading TG as user account) ─────────
TELETHON_API_ID=your-telethon-api-id
TELETHON_API_HASH=your-telethon-api-hash
# ── OPTIONAL: Gmail digest ──────────────────────────────────
# Requires OAuth setup — see docs/gmail_setup.md