daemon-start

Solid

Start the asciinema chunker daemon. TRIGGERS - start daemon, resume chunker, enable backup.

AI & Automation 62 stars 9 forks Updated today MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
60
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# /asciinema-tools:daemon-start Start the asciinema chunker daemon via launchd. > **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. ## Execution ### Check if Already Running ```bash /usr/bin/env bash << 'CHECK_EOF' PLIST_PATH="$HOME/Library/LaunchAgents/com.cc-skills.asciinema-chunker.plist" if ! [[ -f "$PLIST_PATH" ]]; then echo "ERROR: Daemon not installed. Run /asciinema-tools:daemon-setup first." exit 1 fi if launchctl list 2>/dev/null | grep -q "asciinema-chunker"; then echo "ALREADY_RUNNING" cat ~/.asciinema/health.json 2>/dev/null | jq -r '"Status: \(.status) | PID: \(.pid) | Last push: \(.last_push)"' || true exit 0 fi echo "NOT_RUNNING" CHECK_EOF ``` ### Start Daemon ```bash /usr/bin/env bash << 'START_EOF' PLIST_PATH="$HOME/Library/LaunchAgents/com.cc-skills.asciinema-chunker.plist" if launchctl load "$PLIST_PATH"; then echo "Daemon started" sleep 2 if launchctl list 2>/dev/null | grep -q "asciinema-chunker"; then echo "" echo "Status:" cat ~/.asciinema/health.json 2>/dev/null | jq . || echo "Waiting for health file..." else echo "WARNING: Daemon may not have started correctly. Check logs:" echo " /asciinema-tools:daemon-logs" fi else echo "ERROR: Failed to start daemon" exit 1 fi START_EOF ``` ## Output On success: ``` Daemon started Status:...

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