# Cc Soul Daemon

> Start, stop, or check the chittad daemon

- Skill: `majiayu000/cc-soul-daemon` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/cc-soul-daemon`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/cc-soul-daemon/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/cc-soul-daemon

---


# cc-soul-daemon

Manage the chittad background daemon.

## Usage

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:

```bash
# 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:

```bash
# 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.

