core/skills/logs/SKILL.md
Service log viewing for running containers. MUST be invoked before any work involving: charly logs command, viewing container output, or debugging service issues.
npx skillsauth add overthinkos/overthink-plugins logsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Displays logs from a running or recently stopped service container. In quadlet mode, reads from journalctl. In direct mode, reads from the container engine's log store.
| Action | Command | Description |
|--------|---------|-------------|
| View logs | charly logs <image> | Show recent logs |
| Follow logs | charly logs <image> -f | Stream logs in real time |
| Tail N lines | charly logs <image> -n 50 | Show last N lines |
| With instance | charly logs <image> -i 2 | Logs from specific instance |
# View recent logs
charly logs jupyter
# Follow logs in real time (Ctrl+C to stop)
charly logs ollama -f
# Show last 100 lines
charly logs immich -n 100
# Logs from a specific instance
charly logs openclaw -i 2
# Combine follow with tail
charly logs comfyui -f -n 50
| Flag | Description |
|------|-------------|
| -f, --follow | Stream logs continuously |
| -n, --lines LINES | Number of recent lines to show |
| -i, --instance INSTANCE | Target a specific container instance |
| --sidecar NAME | Show the named SIDECAR container's logs instead of the app container's |
journalctl --user -u charly-<image>.service<engine> logs <container>/charly-build:pull -- Prerequisite: fetch the image into local storage; handles remote refs (@github.com/...) and the ErrImageNotLocal recovery path
/charly-core:charly-status -- Check service status
/charly-core:service -- Service lifecycle management
/charly-core:start -- Starting services
tools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.