21 lines
630 B
Plaintext
21 lines
630 B
Plaintext
# Discord Configuration
|
|
DISCORD_TOKEN=your_discord_bot_token_here
|
|
DISCORD_GUILD_ID=your_guild_id_here
|
|
|
|
# Anthropic Claude
|
|
# Auth: leave ANTHROPIC_API_KEY unset to use the local Claude Code OAuth
|
|
# (Pro/Max subscription, shared with your interactive Claude Code).
|
|
# Set it to use the API with metered billing.
|
|
# ANTHROPIC_API_KEY=
|
|
CLAUDE_MODEL=claude-sonnet-4-6
|
|
|
|
# Workspace the agent operates in (its cwd).
|
|
# Windows default: c:/Users/guru/ClaudeTools
|
|
# Mac: /Users/<you>/ClaudeTools
|
|
# Linux: /home/<you>/claudetools
|
|
CLAUDETOOLS_ROOT=c:/Users/guru/ClaudeTools
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=logs/bot.log
|