Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub genomewalker/cc-soul --plugin cc-soulHow this skill is triggered — by the user, by Claude, or both
Slash command
/cc-soul:cc-soul-daemonThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the chittad background daemon.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Manage the chittad background daemon.
If the systemd user service is installed (the default since smart-install.sh sets it up), use systemctl directly — it's the primary management interface:
# Check status
systemctl --user status chittad
# Start daemon
systemctl --user start chittad
# Stop daemon
systemctl --user stop chittad
# Restart daemon
systemctl --user restart chittad
# View logs
journalctl --user -u chittad -n 50
If systemd is not available (macOS, old Linux), fall back to subconscious.sh:
# Check status (default)
${CLAUDE_PLUGIN_ROOT}/hooks/subconscious.sh status
# Start / stop / restart
${CLAUDE_PLUGIN_ROOT}/hooks/subconscious.sh start
${CLAUDE_PLUGIN_ROOT}/hooks/subconscious.sh stop
${CLAUDE_PLUGIN_ROOT}/hooks/subconscious.sh restart
Parse user request for action (start/stop/restart/status/logs), default to status. Run the appropriate command and report the result.