-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 888 Bytes
/
Copy path.env.example
File metadata and controls
32 lines (25 loc) · 888 Bytes
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
# Telegram Bot
TELEGRAM_BOT_TOKEN=your-telegram-bot-token
TELEGRAM_CHAT_ID=your-chat-id
# Obsidian Vault
VAULT_PATH=~/Documents/Obsidian Vault
# Agent CLI
AGENT_CLI=claude
AGENT_MODEL=sonnet
# Agent timeouts (seconds)
AGENT_MAX_TIME=7200 # Hard ceiling: 2 hours
AGENT_IDLE_TIME=300 # Kill if no output for 5 minutes (stuck detection)
# Concurrency & intervals
TASK_CONCURRENCY=2 # Max parallel connector agent runs
TASK_POLL_INTERVAL=30
SKILL_EXTRACT_INTERVAL=3600
SKILL_ORGANIZE_INTERVAL=86400
KNOWLEDGE_LINT_INTERVAL=86400
# Recovery
MAX_RECOVERY_ATTEMPTS=2 # How many times to let LLM retry a failed task (0 = disable)
# Web Dashboard
DASHBOARD_PORT=3120
# Branding (customise if forking)
# BRAND_NAME=ThinkOps
# BRAND_SIGNATURE=— ThinkOps 🤖
# BRAND_PR_FOOTER=🤖 *Generated by [ThinkOps](https://github.com/dataroaring/ThinkOps) — autonomous agent pipeline*