- Found working solution: system unifi_mcp package - API key authentication working (10.10.20.3) - Uses stdio transport (not HTTP) - 25 tools registered - Documented: projects/unifi-mcp-fixed.md - Todo marked complete
26 lines
745 B
Markdown
26 lines
745 B
Markdown
---
|
|
description: Local weather for Hamilton Ontario - auto-updated via cron every 10 minutes
|
|
cron_command: "curl -s 'wttr.in/Hamilton,Ontario?format=%C+%t+%h+%w+%p' > /memory/system/dynamic/weather.md"
|
|
last_updated: "2026-03-22T15:54:00Z"
|
|
---
|
|
|
|
# Hamilton Ontario Weather
|
|
|
|
**Current Conditions:**
|
|
Overcast +5°C 87% ↘13km/h 0.3mm
|
|
|
|
**Update Pattern:**
|
|
Cron job fetches from wttr.in every 10 minutes (replaces file)
|
|
|
|
**Format:**
|
|
%C = Weather condition
|
|
%t = Temperature
|
|
%h = Humidity
|
|
%w = Wind
|
|
%p = Precipitation
|
|
|
|
**Cron:**
|
|
```cron
|
|
*/10 * * * * curl -s 'wttr.in/Hamilton,Ontario?format=Weather:+%C+Temp:+%t+Humidity:+%h+Wind:+%w+Precip:+%p' > /home/ani/.letta/agents/agent-e2b683bf-5b3e-4e0c-ac62-2bbb47ea8351/memory/system/dynamic/weather.md
|
|
```
|