← ClaudeAtlas

hooks-daemonlisted

Manage Claude Code Hooks Daemon - install, upgrade, check health, restart, and develop project-level handlers
Edmonds-Commerce-Limited/claude-code-hooks-daemon · ★ 2 · AI & Automation · score 74
Install: claude install-skill Edmonds-Commerce-Limited/claude-code-hooks-daemon
# Hooks Daemon Management Manage your Claude Code Hooks Daemon installation with these commands. ## Available Commands ### Install Daemon Install the hooks daemon on a fresh clone (daemon not yet present): ```bash /hooks-daemon install # Install daemon from GitHub /hooks-daemon install --force # Force reinstall over existing ``` See [install.md](install.md) for detailed install documentation. ### Upgrade Daemon Update to a new version of the hooks daemon: ```bash /hooks-daemon upgrade # Auto-detect and upgrade to latest version /hooks-daemon upgrade 2.14.0 # Upgrade to specific version /hooks-daemon upgrade --force # Force reinstall current version ``` See [upgrade.md](upgrade.md) for detailed upgrade documentation. ### Restart Daemon **Required after editing `.claude/hooks-daemon.yaml` or project handlers:** ```bash /hooks-daemon restart ``` The daemon caches config at startup — restart picks up any config or handler changes. See [restart.md](restart.md) for details. ### Check Health & Status Verify daemon is running correctly: ```bash /hooks-daemon health # Quick health check /hooks-daemon logs # View last 50 lines of logs /hooks-daemon logs --follow # Stream logs in real-time ``` See [health.md](health.md) for health check details. ### Develop Project Handlers Scaffold new project-level handlers: ```bash /hooks-daemon dev-handlers # Interactive handler scaffolding ``` See [dev-handlers.md](dev-handlers.md) for