From nanotars-commute
Adds live Waze traffic-based travel time and commute lookups to NanoTars AI agents. No API key needed; triggers on 'add commute', 'travel time', or 'waze' queries.
npx claudepluginhub terrifiedbug/nanotars-skills --plugin nanotars-commuteThis skill uses the workspace's default tool permissions.
Adds live traffic-based travel time lookups using the Waze routing API (no API key required).
Adds weather lookup capability to NanoTars agents using free wttr.in and Open-Meteo APIs—no API key needed.
Configures UK train departure/arrival data for NanoTars agent containers via National Rail Darwin API. Guides free token registration, installs Python plugin, tests token, and restarts services.
Installs WhatsApp channel plugin for NanoTars using Baileys library and authenticates via QR code or pairing code. Triggers on 'add whatsapp', 'whatsapp setup', 'whatsapp channel'.
Share bugs, ideas, or general feedback.
Adds live traffic-based travel time lookups using the Waze routing API (no API key required).
Before installing, verify NanoTars is set up:
[ -d node_modules ] && echo "DEPS: ok" || echo "DEPS: missing"
docker image inspect nanoclaw-agent:latest &>/dev/null && echo "IMAGE: ok" || echo "IMAGE: not built"
if grep -q "ANTHROPIC_API_KEY\|CLAUDE_CODE_OAUTH_TOKEN" .env 2>/dev/null || [ -f "$HOME/.claude/.credentials.json" ]; then echo "AUTH: ok"; else echo "AUTH: missing"; fi
If any check fails, tell the user to run /nanotars-setup first and stop.
Copy plugin files:
cp -r ${CLAUDE_PLUGIN_ROOT}/files/ plugins/commute/
Plugin Configuration: By default this plugin is available to all groups and channel types. To restrict access, edit plugins/commute/plugin.json and set:
"groups" to specific group folder names (e.g., ["main"]) instead of ["*"]"channels" to specific channel types (e.g., ["whatsapp"]) instead of ["*"]Ask the user if they want to restrict access. Most users will keep the defaults.
Rebuild and restart:
npm run build
nanotars restart # or launchctl on macOS
Ask the agent "how long to drive from Oxford to London?" -- it should use the Waze API to get live traffic times.
rm -rf plugins/commute/