Tail YoYoPod runtime/service logs from Raspberry Pi
Scanned 6/14/2026
Install via CLI
openskills install attmous/yoyopod---
name: yoyopod-logs
description: Tail YoYoPod runtime/service logs from Raspberry Pi
disable-model-invocation: true
allowed-tools:
- Read
- Bash(yoyopod target:*)
argument-hint: "[line_count] [--errors] [--filter <subsystem>] [--follow]"
---
## Config
Use `deploy/pi-deploy.yaml` as the shared deploy contract and
`deploy/pi-deploy.local.yaml` for machine-specific overrides such as
host, SSH user, dev lane checkout, and branch. The tracked dev default
is `/opt/yoyopod-dev/checkout`; prod slots live under `/opt/yoyopod-prod`.
`yoyopod target` merges the files directly, and `yoyopod target config
edit` is the preferred way to create or update the local override.
If the file does not exist yet, run `yoyopod target config edit` first.
That command creates `deploy/pi-deploy.local.yaml` automatically before
opening it.
## Argument Parsing
Parse the arguments string provided after `/yoyopod-logs`:
- **Line count:** If a bare number is present (for example
`/yoyopod-logs 100`), map it to `--lines <count>`. Default: 100.
- **--errors flag:** Pass through to `yoyopod target logs --errors`.
- **--filter value:** Pass through to `yoyopod target logs --filter <value>`.
- **--follow flag:** Pass through to `yoyopod target logs --follow`.
Multiple flags can be combined.
## Steps
1. **Build the helper command.** Use:
```bash
yoyopod target logs ...
```
Add `--lines`, `--errors`, `--filter`, and `--follow` based on the
parsed arguments.
2. **If lane state matters, also run:**
```bash
yoyopod target mode status
```
3. **Present the log output.** Return the raw log lines directly. Do
not summarize or truncate unless the user explicitly asks.
After presenting the logs, remind the user they can ask follow-up
questions about the log content, such as "why did the call drop?" or
"what errors happened in the last minute?"
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...