-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.example
More file actions
87 lines (65 loc) · 2.86 KB
/
.env.example
File metadata and controls
87 lines (65 loc) · 2.86 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
81
82
83
84
85
86
87
# ========================================
# Discord設定(Discord使う場合)
# ========================================
DISCORD_TOKEN=your_discord_bot_token_here
# Optional: Channels where bot responds without mention (comma-separated)
# AUTO_REPLY_CHANNELS=123456789,987654321
# Optional: Streaming output (default: true)
# DISCORD_STREAMING=true
# Optional: Show thinking process (default: true, false shows "考え中..." animation)
# DISCORD_SHOW_THINKING=true
# Optional: Inject channel topic into prompt (default: true)
# INJECT_CHANNEL_TOPIC=true
# Optional: Inject current timestamp into prompt (default: true)
# INJECT_TIMESTAMP=true
# ========================================
# Slack設定(Slack使う場合)
# ========================================
# SLACK_BOT_TOKEN=xoxb-your-bot-token
# SLACK_APP_TOKEN=xapp-your-app-token
# Optional: Slack channels where bot responds without mention
# SLACK_AUTO_REPLY_CHANNELS=C01234567,C89012345
# Optional: Reply in channel instead of thread (default: true = thread)
# SLACK_REPLY_IN_THREAD=false
# ========================================
# 許可ユーザー設定(各プラットフォームで1人のみ)
# ========================================
# Discord用
DISCORD_ALLOWED_USER=your_discord_user_id_here
# Slack用
# SLACK_ALLOWED_USER=your_slack_user_id_here
# ========================================
# AIエージェント設定
# ========================================
# Agent backend: claude-code, codex, gemini, or local-llm (default: claude-code)
# AGENT_BACKEND=claude-code
# ========================================
# Local LLM設定(AGENT_BACKEND=local-llm の場合)
# ========================================
# LLMサーバーのURL(Ollama等、default: http://localhost:11434)
# LOCAL_LLM_BASE_URL=http://localhost:11434
# 使用するモデル名
# LOCAL_LLM_MODEL=nemotron-3-nano
# APIキー(vLLM等でAPIキーが必要な場合)
# LOCAL_LLM_API_KEY=
# Thinkingモデルの推論を有効にするか(default: true)
# LOCAL_LLM_THINKING=true
# 最大トークン数(default: 8192)
# LOCAL_LLM_MAX_TOKENS=8192
# Optional: Model to use (backend-specific)
# AGENT_MODEL=
# Optional: Agent timeout in milliseconds (default: 300000 = 5min)
# TIMEOUT_MS=300000
# Optional: Workspace path for agent (default: ./workspace)
# WORKSPACE_PATH=/path/to/your/workspace
# Optional: Skip permissions by default (true/false, default: false)
# SKIP_PERMISSIONS=false
# ========================================
# スケジューラ設定
# ========================================
# Optional: Enable/disable scheduler (cron/once jobs) (default: true)
# Set to false when running multiple instances to avoid duplicate execution
# SCHEDULER_ENABLED=true
# Optional: Enable/disable startup tasks (default: true)
# Set to false when running multiple instances to avoid duplicate execution
# STARTUP_ENABLED=true