- Update all skill SSH commands from sshpass to key-based auth (~/.ssh/archipelago-deploy) - Add proxy_connect_timeout 120s to nginx Ollama location blocks - Add new polish/sweep skills for overnight automation - Add demo content (documents, photos) for demo stack - Add .ssh/ to .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
779 B
779 B
name, description, allowed-tools, argument-hint
| name | description | allowed-tools | argument-hint |
|---|---|---|---|
| server-logs | View live server logs from the Archipelago dev server | Bash | [backend|nginx|container-name] |
View logs from the Archipelago server (192.168.1.228). Use ssh -i ~/.ssh/archipelago-deploy archipelago@192.168.1.228 for all commands.
If $ARGUMENTS is provided, show logs for that specific service. Otherwise, show backend logs by default.
Log sources
- backend (default):
sudo journalctl -u archipelago -n 50 --no-pager - nginx:
sudo tail -50 /var/log/nginx/error.log - nginx-access:
sudo tail -50 /var/log/nginx/access.log - Any container name:
sudo podman logs --tail 50 $ARGUMENTS
Show the last 50 lines. If the user needs live streaming, use -f flag instead of --tail/-n.