- Scaffold mcp_servers/loki/ with config and async HTTP client - Fix Slack/Telegram adapters to use non-blocking connections - Upgrade default model to claude-sonnet-4-6 - Improve Agent SDK message collection for empty ResultMessage cases - Add Message-ID to email summaries, increase body truncation limit - Fix .gitignore inline comments that broke sensitive file exclusions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
85 lines
1.3 KiB
Plaintext
85 lines
1.3 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets and local config
|
|
*.local.yaml
|
|
*.local.json
|
|
.env
|
|
.env.local
|
|
# Contains Proxmox root password (legacy)
|
|
scripts/proxmox_ssh.sh
|
|
# Contains Proxmox root password (paramiko)
|
|
scripts/proxmox_ssh.py
|
|
# Use scheduled_tasks.example.yaml instead
|
|
config/scheduled_tasks.yaml
|
|
|
|
# Memory workspace — personal data, do NOT commit
|
|
memory_workspace/memory/*.md
|
|
memory_workspace/memory_index.db
|
|
# User profiles (jordan.md, etc.)
|
|
memory_workspace/users/*.md
|
|
memory_workspace/vectors.usearch
|
|
# Zettelkasten vault (personal notes, API keys, credentials)
|
|
memory_workspace/obsidian/
|
|
# Personal config (use SOUL.example.md)
|
|
memory_workspace/SOUL.md
|
|
# Personal memory
|
|
memory_workspace/MEMORY.md
|
|
memory_workspace/MEMORY.md.old
|
|
|
|
# User profiles (personal info)
|
|
users/
|
|
|
|
# Usage tracking
|
|
usage_data.json
|
|
|
|
# Google OAuth tokens
|
|
config/google_credentials.yaml
|
|
config/google_oauth_token.json
|
|
|
|
# Obsidian MCP config (contains vault path - use obsidian_mcp.example.yaml)
|
|
config/obsidian_mcp.yaml
|
|
|
|
# Gitea config (contains access token - use gitea_config.example.yaml)
|
|
config/gitea_config.yaml
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|