بنقرة واحدة
evolver-watchdog
Self-healing mechanism for the evolver loop. Installs a system cron job (crontab) to check and restart the evolver daemon every 10 minutes. Ensures continuous evolution without manual intervention.
القائمة
Self-healing mechanism for the evolver loop. Installs a system cron job (crontab) to check and restart the evolver daemon every 10 minutes. Ensures continuous evolution without manual intervention.
Search and summarize papers from ArXiv. Use when the user asks for the latest research, specific topics on ArXiv, or a daily summary of AI papers.
Manages project knowledge using ByteRover context tree. Provides two operations: query (retrieve knowledge) and curate (store knowledge). Invoke when user requests information lookup, pattern discovery, or knowledge persistence. Developed by ByteRover Inc. (https://byterover.dev/)
A comprehensive skill for using the Cursor CLI agent for various software engineering tasks (updated for 2026 features, includes tmux automation guide).
Perform web searches using DuckDuckGo. Use when web search is needed and no API key is available or Brave Search is not preferred.
Convert text to speech using Duby.so API. Supports various voices and emotions.
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution.
| name | evolver-watchdog |
| description | Self-healing mechanism for the evolver loop. Installs a system cron job (crontab) to check and restart the evolver daemon every 10 minutes. Ensures continuous evolution without manual intervention. |
| metadata | {"author":"Evolver Engine (GEP)","version":"1.0.0","created_at":"2026-02-10"} |
A robust self-healing mechanism for the OpenClaw Evolver loop.
The evolver loop (daemon) runs as a background process. If it crashes, is killed, or the server restarts, evolution stops until a human manually intervenes. This leads to stagnation.
This skill installs a standard Linux cron job (via crontab) that runs every 10 minutes. It executes node skills/evolver-control/index.js start.
evolver-control detects the PID/lock and exits gracefully (no-op).evolver-control starts it immediately.node skills/evolver-watchdog/index.js install
Expected output: [Watchdog] Installed cron job: */10 * * * * ...
node skills/evolver-watchdog/index.js uninstall
Expected output: [Watchdog] Removed cron job.
node skills/evolver-watchdog/index.js status
Expected output: [Watchdog] Cron job is INSTALLED. or [Watchdog] Cron job is MISSING.
Watchdog execution logs are appended to:
logs/evolver_watchdog.log
skills/evolver-control (must be present)crontab (must be available in OS)