## New Features - **Gitea MCP Tools** (zero API cost): - gitea_read_file: Read files from homelab repo - gitea_list_files: Browse directories - gitea_search_code: Search by filename - gitea_get_tree: Get directory tree - **Gitea Client** (gitea_tools/client.py): REST API wrapper with OAuth - **Proxmox SSH Scripts** (scripts/): Homelab data collection utilities - **Obsidian MCP Support** (obsidian_mcp.py): Advanced vault operations - **Voice Integration Plan** (JARVIS_VOICE_INTEGRATION_PLAN.md) ## Improvements - **Increased timeout**: 5min → 10min for complex tasks (llm_interface.py) - **Removed Direct API fallback**: Gitea tools are MCP-only (zero cost) - **Updated .env.example**: Added Obsidian MCP configuration - **Enhanced .gitignore**: Protect personal memory files (SOUL.md, MEMORY.md) ## Cleanup - Deleted 24 obsolete files (temp/test/experimental scripts, outdated docs) - Untracked personal memory files (SOUL.md, MEMORY.md now in .gitignore) - Removed: AGENT_SDK_IMPLEMENTATION.md, HYBRID_SEARCH_SUMMARY.md, IMPLEMENTATION_SUMMARY.md, MIGRATION.md, test_agent_sdk.py, etc. ## Configuration - Added config/gitea_config.example.yaml (Gitea setup template) - Added config/obsidian_mcp.example.yaml (Obsidian MCP template) - Updated scheduled_tasks.yaml with new task examples Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
77 lines
1.3 KiB
Plaintext
77 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
|
|
scripts/proxmox_ssh.sh # Contains Proxmox root password (legacy)
|
|
scripts/proxmox_ssh.py # Contains Proxmox root password (paramiko)
|
|
config/scheduled_tasks.yaml # Use scheduled_tasks.example.yaml instead
|
|
|
|
# Memory workspace (optional - remove if you want to version control)
|
|
memory_workspace/memory/*.md
|
|
memory_workspace/memory_index.db
|
|
memory_workspace/users/*.md # User profiles (jordan.md, etc.)
|
|
memory_workspace/vectors.usearch
|
|
memory_workspace/obsidian/ # Zettelkasten vault (personal notes)
|
|
memory_workspace/SOUL.md # Personal config (use SOUL.example.md)
|
|
memory_workspace/MEMORY.md # Personal memory (use MEMORY.example.md)
|
|
|
|
# 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/
|