daemon-logs
SolidView asciinema chunker daemon logs. TRIGGERS - daemon logs, chunker logs, backup logs.
AI & Automation 62 stars
9 forks Updated today MIT
Install
Quality Score: 83/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# /asciinema-tools:daemon-logs
View logs from the asciinema chunker daemon.
> **Self-Evolving Skill**: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
## Arguments
| Argument | Description |
| ---------- | ---------------------------------- |
| `-n N` | Show last N lines (default: 50) |
| `--follow` | Follow log output (like `tail -f`) |
| `--errors` | Show only ERROR lines |
## Execution
### Default: Show Recent Logs
```bash
/usr/bin/env bash << 'LOGS_EOF'
LOG_FILE="$HOME/.asciinema/logs/chunker.log"
LAUNCHD_STDOUT="$HOME/.asciinema/logs/launchd-stdout.log"
LAUNCHD_STDERR="$HOME/.asciinema/logs/launchd-stderr.log"
if [[ ! -f "$LOG_FILE" ]]; then
echo "No daemon logs found."
echo ""
echo "Log locations:"
echo " Daemon log: $LOG_FILE"
echo " launchd stdout: $LAUNCHD_STDOUT"
echo " launchd stderr: $LAUNCHD_STDERR"
exit 0
fi
echo "=== Daemon Log (last 50 lines) ==="
echo "File: $LOG_FILE"
echo ""
tail -50 "$LOG_FILE"
LOGS_EOF
```
### With --follow: Stream Logs
```bash
/usr/bin/env bash << 'FOLLOW_EOF'
LOG_FILE="$HOME/.asciinema/logs/chunker.log"
if [[ ! -f "$LOG_FILE" ]]; then
echo "No daemon logs found. Start the daemon first."
exit 1
fi
echo "=== Following Daemon Log (Ctrl+C to stop) ==="
echo "File: $LOG_FILE"
echo ""
tail -f "$LOG_FILE"
FOLLOW_EOF
```
###...
Details
- Author
- terrylica
- Repository
- terrylica/cc-skills
- Created
- 8 months ago
- Last Updated
- today
- Language
- Shell
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
daemon-start
Start the asciinema chunker daemon. TRIGGERS - start daemon, resume chunker, enable backup.
62 Updated today
terrylica AI & Automation Solid
daemon-status
Check asciinema status - daemon, running processes, and unhandled .cast files. TRIGGERS - daemon status, check backup, chunker health
62 Updated today
terrylica AI & Automation Solid
daemon-stop
Stop the asciinema chunker daemon. TRIGGERS - stop daemon, pause chunker, disable backup.
62 Updated today
terrylica