feat: Add Gitea MCP integration and project cleanup

## 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>
This commit is contained in:
2026-02-18 20:31:32 -07:00
parent 0271dea551
commit fe7c146dc6
29 changed files with 5678 additions and 2287 deletions

View File

@@ -0,0 +1,22 @@
# Gitea Configuration
# Copy to gitea_config.yaml and fill in your values
#
# cp config/gitea_config.example.yaml config/gitea_config.yaml
# Gitea instance URL (no trailing slash)
base_url: "https://vulcan.apophisnetworking.net"
# Personal Access Token for API authentication
# To generate a token:
# 1. Go to https://vulcan.apophisnetworking.net/user/settings/applications
# 2. Under "Manage Access Tokens", enter a token name (e.g., "garvis-bot")
# 3. Select permissions: at minimum, check "repo" (read) scope
# 4. Click "Generate Token"
# 5. Copy the token here (it is shown only once!)
token: "your_personal_access_token_here"
# Default repository owner (used when repo is not specified in tool calls)
default_owner: "jramos"
# Default repository name (used when repo is not specified in tool calls)
default_repo: "homelab"