Major Features: - Sub-agent orchestration system with dynamic specialist spawning * spawn_sub_agent(): Create specialists with custom prompts * delegate(): Convenience method for task delegation * Cached specialists for reuse * Separate conversation histories and focused context - MCP (Model Context Protocol) tool integration * Zettelkasten: fleeting_note, daily_note, permanent_note, literature_note * Search: search_vault (hybrid search), search_by_tags * Web: web_fetch for real-time data * Zero-cost file/system operations on Pro subscription Critical Bug Fixes: - Fixed max tool iterations (15 → 30, configurable) - Fixed max_tokens error in Agent SDK query() call - Fixed MCP tool routing in execute_tool() * Routes zettelkasten + web tools to async handlers * Prevents "Unknown tool" errors Documentation: - SUB_AGENTS.md: Complete guide to sub-agent system - MCP_MIGRATION.md: Agent SDK migration details - SOUL.example.md: Sanitized bot identity template - scheduled_tasks.example.yaml: Sanitized task config template Security: - Added obsidian vault to .gitignore - Protected SOUL.md and MEMORY.md (personal configs) - Sanitized example configs with placeholders Dependencies: - Added beautifulsoup4, httpx, lxml for web scraping - Updated requirements.txt Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
35 lines
647 B
Plaintext
35 lines
647 B
Plaintext
# Core dependencies
|
|
watchdog>=3.0.0
|
|
anthropic>=0.40.0
|
|
requests>=2.31.0
|
|
|
|
# Hybrid search dependencies
|
|
fastembed>=0.7.0
|
|
usearch>=2.23.0
|
|
numpy>=2.0.0
|
|
|
|
# Adapter dependencies
|
|
pyyaml>=6.0.1
|
|
|
|
# Slack adapter (Socket Mode)
|
|
slack-bolt>=1.18.0
|
|
slack-sdk>=3.23.0
|
|
|
|
# Telegram adapter
|
|
python-telegram-bot>=20.7
|
|
|
|
# Google API dependencies (Gmail and Calendar)
|
|
google-auth>=2.23.0
|
|
google-auth-oauthlib>=1.1.0
|
|
google-auth-httplib2>=0.1.1
|
|
google-api-python-client>=2.108.0
|
|
|
|
# Claude Agent SDK (uses Pro subscription instead of API tokens)
|
|
claude-agent-sdk>=0.1.0
|
|
anyio>=4.0.0
|
|
python-dotenv>=1.0.0
|
|
|
|
# Web fetching dependencies
|
|
httpx>=0.27.0
|
|
beautifulsoup4>=4.12.0
|