Daemon
The Signet daemon owns the HTTP API, dashboard, workspace database, background workers, scheduler, diagnostics, telemetry, and harness-facing services. Its default local address is http://127.0.0.1:3850.
Lifecycle
Section titled “Lifecycle”signet daemon startsignet daemon stopsignet daemon restartsignet daemon status --jsonsignet daemon logsTop-level signet start, signet stop, signet restart, and signet logs remain aliases. Prefer the signet daemon form in automation and operator runbooks.
A successful process start is not readiness. Verify both process state and readiness after a restart:
signet daemon status --jsoncurl -fsS http://127.0.0.1:3850/health/livecurl -fsS http://127.0.0.1:3850/health/ready/health/live is a cheap process liveness probe. /health/ready includes readiness gates and can return a non-success response while the daemon is still starting or a required subsystem is unavailable.
Network binding
Section titled “Network binding”SIGNET_PORT defaults to 3850. SIGNET_BIND controls the listening interface. SIGNET_HOST is the daemon’s local-call host. SIGNET_PATH selects the workspace for the process.
The default network mode is loopback-only. For a trusted tailnet or private LAN, configure the workspace and restart:
network: mode: tailscalesignet daemon restartsignet daemon status --jsonA deployment manager can override the bind address explicitly:
SIGNET_BIND=0.0.0.0 SIGNET_PORT=3850 signet daemon startAn exposed interface is not an authentication setting. Use auth.mode: team for an untrusted or Internet-facing deployment. hybrid is convenient for a trusted workstation, but is not a public reverse-proxy security boundary. See Authentication and Self-Hosting.
Runtime configuration
Section titled “Runtime configuration”The daemon loads agent.yaml from the selected workspace. Some files and service settings can be observed after startup, but long-running pipeline workers begin from a configuration snapshot. Restart after changing pipeline, embedding, inference, auth, or network configuration.
signet daemon restartsignet daemon status --jsonDo not assume a file watcher makes every configuration key live. Use /api/status, /api/pipeline/status, readiness, and representative operator checks to confirm the intended effect.
Operator endpoints
Section titled “Operator endpoints”| Endpoint | Purpose |
|---|---|
/health, /health/live, /health/ready |
Liveness and readiness probes. |
/api/status |
Daemon, binding, workspace, runtime, and update state. |
/api/pipeline/status |
Pipeline state and runtime configuration summary. |
/api/diagnostics |
Health report for authenticated operators where required. |
/api/repair/* |
Explicit repair actions with admin protection. |
/api/tasks/* |
Scheduled task configuration, runs, and output stream. |
/api/analytics/*, /api/telemetry/*, /api/timeline/* |
Operational metrics and investigation surfaces. |
The full request and response surface is in HTTP API. Do not automate against a dashboard rendering when an API endpoint exists.
Logs and local state
Section titled “Logs and local state”Runtime state lives under $SIGNET_WORKSPACE/.daemon/. By default, daemon logs are written there; SIGNET_LOG_FILE can select an explicit log file and SIGNET_LOG_DIR can select a log directory. Use the CLI first:
signet daemon logsIf the daemon will not start, capture the exact validation error and preserve the workspace before changing data. Do not delete the SQLite database, auth secret, or PID file as a routine recovery step.
Scheduler
Section titled “Scheduler”The daemon scheduler evaluates recurring tasks and starts the configured local harness command. It supports Claude Code, Codex, and OpenCode task harnesses, limits concurrent runs, and marks interrupted runs failed during daemon startup recovery. See Scheduled Tasks.
Persistent deployment
Section titled “Persistent deployment”The CLI manages daemon lifecycle; first-party persistent container deployment is documented in Self-Hosting. If you run a host service manager, make it own a single daemon process, set SIGNET_PATH and networking explicitly, and verify restart behavior with health probes. Do not point multiple writers at one workspace.
Related: Diagnostics, Analytics, Authentication, Upgrading.

