daemon-status
Check asciinema status - daemon, running processes, and unhandled .cast files. TRIGGERS - daemon status, check backup, chunker health
What this skill does
# /asciinema-tools:daemon-status
Check comprehensive asciinema status including daemon, running processes, and unhandled .cast files.
> **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
### Collect Status Information
```bash
/usr/bin/env bash << 'STATUS_EOF'
PLIST_PATH="$HOME/Library/LaunchAgents/com.cc-skills.asciinema-chunker.plist"
HEALTH_FILE="$HOME/.asciinema/health.json"
LOG_FILE="$HOME/.asciinema/logs/chunker.log"
RECORDINGS_DIR="$HOME/asciinema_recordings"
echo "╔════════════════════════════════════════════════════════════════╗"
echo "║ asciinema Status Overview ║"
echo "╠════════════════════════════════════════════════════════════════╣"
# ========== RUNNING PROCESSES ==========
echo "║ RUNNING PROCESSES ║"
echo "╠────────────────────────────────────────────────────────────────╣"
PROCS=$(ps aux | grep -E "asciinema rec" | grep -v grep)
if [[ -n "$PROCS" ]]; then
PROC_COUNT=$(echo "$PROCS" | wc -l | tr -d ' ')
printf "║ Active asciinema rec: %-38s ║\n" "$PROC_COUNT process(es)"
echo "$PROCS" | while read -r line; do
PID=$(echo "$line" | awk '{print $2}')
# Extract .cast file path from command
CAST_FILE=$(echo "$line" | grep -oE '[^ ]+\.cast' | head -1)
if [[ -n "$CAST_FILE" ]]; then
BASENAME=$(basename "$CAST_FILE")
SIZE=$(ls -lh "$CAST_FILE" 2>/dev/null | awk '{print $5}' || echo "?")
printf "║ PID %-6s %-35s %5s ║\n" "$PID" "${BASENAME:0:35}" "$SIZE"
else
printf "║ PID %-6s (no file detected) ║\n" "$PID"
fi
done
else
echo "║ Active asciinema rec: None ║"
fi
echo "╠════════════════════════════════════════════════════════════════╣"
# ========== DAEMON STATUS ==========
echo "║ CHUNKER DAEMON ║"
echo "╠────────────────────────────────────────────────────────────────╣"
if [[ -f "$PLIST_PATH" ]]; then
echo "║ Installed: Yes ║"
if launchctl list 2>/dev/null | grep -q "asciinema-chunker"; then
echo "║ Running: Yes ║"
else
echo "║ Running: No ║"
fi
if [[ -f "$HEALTH_FILE" ]]; then
STATUS=$(jq -r '.status // "unknown"' "$HEALTH_FILE")
LAST_PUSH=$(jq -r '.last_push // "never"' "$HEALTH_FILE")
CHUNKS=$(jq -r '.chunks_pushed // 0' "$HEALTH_FILE")
printf "║ Health: %-52s ║\n" "$STATUS"
printf "║ Last push: %-49s ║\n" "$LAST_PUSH"
printf "║ Chunks pushed: %-44s ║\n" "$CHUNKS"
fi
else
echo "║ Installed: No - run /asciinema-tools:daemon-setup ║"
fi
echo "╠════════════════════════════════════════════════════════════════╣"
# ========== UNHANDLED .CAST FILES ==========
echo "║ UNHANDLED .CAST FILES (not on orphan branch) ║"
echo "╠────────────────────────────────────────────────────────────────╣"
# Find .cast files in common locations
UNHANDLED=()
while IFS= read -r -d '' file; do
UNHANDLED+=("$file")
done < <(find ~/eon -name "*.cast" -size +1M -mtime -30 -print0 2>/dev/null)
# Also check tmp directories
while IFS= read -r -d '' file; do
UNHANDLED+=("$file")
done < <(find /tmp -maxdepth 2 -name "*.cast" -size +1M -print0 2>/dev/null)
if [[ ${#UNHANDLED[@]} -gt 0 ]]; then
printf "║ Found: %-53s ║\n" "${#UNHANDLED[@]} file(s) need attention"
for file in "${UNHANDLED[@]:0:5}"; do
BASENAME=$(basename "$file")
SIZE=$(ls -lh "$file" 2>/dev/null | awk '{print $5}')
MTIME=$(stat -f "%Sm" -t "%Y-%m-%d" "$file" 2>/dev/null || stat -c "%y" "$file" 2>/dev/null | cut -d' ' -f1)
printf "║ %-40s %5s %s ║\n" "${BASENAME:0:40}" "$SIZE" "$MTIME"
done
if [[ ${#UNHANDLED[@]} -gt 5 ]]; then
printf "║ ... and %d more ║\n" "$((${#UNHANDLED[@]} - 5))"
fi
echo "║ ║"
echo "║ → Run /asciinema-tools:finalize to process these files ║"
else
echo "║ No unhandled .cast files found ║"
fi
echo "╠════════════════════════════════════════════════════════════════╣"
# ========== CREDENTIALS ==========
echo "║ CREDENTIALS ║"
echo "╠────────────────────────────────────────────────────────────────╣"
if security find-generic-password -s "asciinema-github-pat" -a "$USER" -w &>/dev/null 2>&1; then
echo "║ GitHub PAT: ✓ Configured ║"
else
echo "║ GitHub PAT: ✗ Not configured ║"
fi
if security find-generic-password -s "asciinema-pushover-app" -a "$USER" -w &>/dev/null 2>&1; then
echo "║ Pushover: ✓ Configured ║"
else
echo "║ Pushover: ○ Not configured (optional) ║"
fi
echo "╚════════════════════════════════════════════════════════════════╝"
# Recent log entries
if [[ -f "$LOG_FILE" ]]; then
echo ""
echo "Recent daemon logs:"
echo "-------------------"
tail -5 "$LOG_FILE"
fi
STATUS_EOF
```
## Output Example
```
╔════════════════════════════════════════════════════════════════╗
║ asciinema Status Overview ║
╠════════════════════════════════════════════════════════════════╣
║ RUNNING PROCESSES ║
╠────────────────────────────────────────────────────────────────╣
║ Active asciinema rec: 2 process(es) ║
║ PID 41749 alpha-forge-research_2025.cast 12G ║
║ PID 49655 alpha-forge_2025-12-23.cast 4.5G ║
╠════════════════════════════════════════════════════════════════╣
║ CHUNKER DAEMON ║
╠────────────────────────────────────────────────────────────────╣
║ Installed: Yes ║
║ Running: Yes ║
║ Health: ok ║
║ Last push: 2025-12-26T15:30:00Z ║
║ Chunks pushed: 7 ║
╠════════════════════════════════════════════════════════════════╣
║ UNHANDLED .CAST FILES (not on orphan branch) ║
╠────────────────────────────────────────────────────────────────╣
║ Found: 3 file(s) need attention ║
║ alpha-forge-research.cast 12G 2025-12-30 ║
║ alpha-forge_session.cast 4.5G 2025-12-26 ║
║ debug-session.cast 234M 2025-12-28 ║
║ ║
║ → Run /asciinema-tools:finalize to process these files ║
╠════════════════════════════════════════════════════════════════╣
║ CREDENTIALS ║
╠────────────────────────────────────────────────────────────────╣
║ GitHub PAT: ✓ Configured ║
║ Pushover: ○ Not configured (optional) ║
╚════════════════════════════════════════════════════════════════╝
Recent daemon logs:
-------------------
[2025-12-26 15:30:00] Pushed: chunk_20251226_153000.cast.zst
[2025-12-26 15:25:00] Idle detected (32s) for workspace_2025-12-26.cast
```
## Troubleshooting
| Issue | Cause | Solution |
| -------------------- | ----------------------------- | -------------------------------------- |
| jq not found | jq not installed | `brew install jq` |
| No heRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.