CLI Commands
Overview
clnode start # Start daemon (port 3100)
clnode stop # Stop daemon
clnode status # Show active sessions/agents
clnode init [path] # Install hooks + agents/skills/rules + register project
clnode ui # Open Web UI in browser
clnode logs [-n N] [-f] # View/follow daemon logs
Commands
clnode start
Start the daemon in the background. Runs on port 3100 by default.
clnode start
# Custom port
CLNODE_PORT=3101 clnode start
clnode stop
Stop the running daemon.
clnode status
Show active sessions and agents. Useful for verifying the daemon is running and hooks are working.
clnode init [path]
Install clnode into a project directory. This:
- Installs hook configuration in
.claude/settings.local.json - Copies agent templates (
clnode-reviewer,clnode-curator) - Copies skill templates (
compress-output,compress-review,clnode-agents) - Copies rule templates (
team.md) - Seeds agent memory files
- Registers the project in the database
- Auto-starts the daemon if not running
Options:
-p, --port <port>— Daemon port (default: 3100)--hooks-only— Install hooks only, skip all templates
clnode ui
Open the Web UI dashboard in your default browser.
clnode logs
View daemon logs.
Options:
-n <lines>— Number of lines to show (default: 50)-f— Follow mode (tail -f)