- Protocol: 10 context categories (apps, system, network, bitcoin, media, files, notes, search, ai-local, wallet) - ContextBroker: real data wiring for all categories with sanitization - Permissions: user toggles for all categories in Settings - Nginx: Claude API, OpenRouter, SearXNG proxy pass-through - Actions: launch-app, search-web, install-app handlers - Chat.vue: loading state + connection indicator - Integration test page: test-aiui.html Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
807 B
Markdown
20 lines
807 B
Markdown
---
|
|
name: server-logs
|
|
description: View live server logs from the Archipelago dev server
|
|
allowed-tools: Bash
|
|
argument-hint: "[backend|nginx|container-name]"
|
|
---
|
|
|
|
View logs from the Archipelago server (192.168.1.228). Use `sshpass -p 'EwPDR8q45l0Upx@' ssh -o StrictHostKeyChecking=no 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`.
|