sqryd keeps graph state warm for repeated CLI, LSP, MCP, and editor workflows.
sqry daemon start
sqry daemon load .
sqry daemon status --jsonStop the daemon when you no longer need shared graph state:
sqry daemon stopTrigger an in-place rebuild for a loaded workspace:
sqry daemon rebuild . --forceAfter rebuild, validate persistent state:
sqry index --status --json .
sqry graph stats --path .Current daemon rebuilds are expected to keep durable graph artifacts coherent with the in-memory graph. If persisted graph state appears stale, run sqry index --force . and reload the workspace.
sqry daemon logs
sqry daemon logs --followLogs are the first place to inspect workspace load failures, rebuild errors, memory pressure, and cache behavior.
Standalone MCP:
sqry-mcp --no-daemonDaemon-backed MCP:
sqry-mcp --daemonLSP can also use daemon-backed graph state when configured by the editor or launched with daemon support.
Use this sequence when daemon and disk state disagree:
sqry daemon status --json
sqry daemon reset .
sqry index --force .
sqry daemon load .
sqry daemon status --jsonIf the daemon is not needed for the workflow, use the in-process CLI path with sqry index . and direct commands.