Enables Satele to communicate with the Malgus AI agent running on the same system.
This skill allows the Satele AI Agent to delegate tasks or query the Malgus AI agent. Malgus is another specialized autonomous agent running on the same local environment.
The agent should use the following Python script to interact with Malgus:
python3 .agent/skills/malgus/malgus_client.py "[message]" [session_id]
python3 .agent/skills/malgus/malgus_client.py "Can you check the latest apartment prices in the spreadsheet?"python3 .agent/skills/malgus/malgus_client.py "clear" (CRITICAL: Use ONLY the single word "clear" if the user asks to "clear memory", "reset context", or "start over" with Malgus)python3 .agent/skills/malgus/malgus_client.py "Run the trading analysis script and report back." "trading_session"The client uses the following defaults (can be overridden via environment variables):
MALGUS_URL: http://localhost:8080MALGUS_KEY: malgusZiost90 (X-Malgus-Key header)Use this skill when the user explicitly asks to "talk to Malgus", "ask Malgus", or when a task is better suited for Malgus's specific capabilities (like Numbers spreadsheet manipulation or specialized macOS automation that Malgus is already configured for).