mirror of
https://github.com/Heretek-AI/openclaw.git
synced 2026-07-23 16:45:22 -04:00
a9ae1a6778
Matrix Protocol: - docker-compose.matrix.yml: Dendrite homeserver + PostgreSQL + Nginx TLS - src/channels/plugins/matrix-channel.ts: OpenClaw plugin implementation - docs/matrix-triad-setup.md: Setup guide with auth scheme (@tm1-4:triad.local) MCP Server Integration: - docs/mcp-triad-integration.md: SearXNG, Playwright, GitHub MCP configs - docs/mcp-curiosity-mapping.md: Gap-to-capability mapping Node Sync Architecture: - src/services/node-sync-service.ts: WebSocket peer sync + presence detection - src/services/node-sync-service.test.ts: Unit tests - docs/node-sync-architecture.md: Architecture docs Triad Resilience: - scripts/triad-corruption-check.mjs: SQLite + log + config + git integrity - docs/triad-resilience.md: Recovery procedures - .secure/deployment-logs/README.md: Schema v2 - skills/triad-heartbeat/SKILL.md: Corruption check integration NPM Publish Workflow: - scripts/npm-publish.mjs: version, changelog, validate, publish, rollback - .github/workflows/npm-publish.yml: GitHub Actions with provenance - docs/npm-publish-guide.md: Complete documentation All deliverables tested in Docker before production.
2.1 KiB
Executable File
2.1 KiB
Executable File
summary, read_when, title
| summary | read_when | title | ||
|---|---|---|---|---|
| CLI reference for `openclaw daemon` (legacy alias for gateway service management) |
|
daemon |
openclaw daemon
Legacy alias for Gateway service management commands.
openclaw daemon ... maps to the same service control surface as openclaw gateway ... service commands.
Usage
openclaw daemon status
openclaw daemon install
openclaw daemon start
openclaw daemon stop
openclaw daemon restart
openclaw daemon uninstall
Subcommands
status: show service install state and probe Gateway healthinstall: install service (launchd/systemd/schtasks)uninstall: remove servicestart: start servicestop: stop servicerestart: restart service
Common options
status:--url,--token,--password,--timeout,--no-probe,--require-rpc,--deep,--jsoninstall:--port,--runtime <node|bun>,--token,--force,--json- lifecycle (
uninstall|start|stop|restart):--json
Notes:
statusresolves configured auth SecretRefs for probe auth when possible.- If a required auth SecretRef is unresolved in this command path,
daemon status --jsonreportsrpc.authWarningwhen probe connectivity/auth fails; pass--token/--passwordexplicitly or resolve the secret source first. - If the probe succeeds, unresolved auth-ref warnings are suppressed to avoid false positives.
- On Linux systemd installs,
statustoken-drift checks include bothEnvironment=andEnvironmentFile=unit sources. - When token auth requires a token and
gateway.auth.tokenis SecretRef-managed,installvalidates that the SecretRef is resolvable but does not persist the resolved token into service environment metadata. - If token auth requires a token and the configured token SecretRef is unresolved, install fails closed.
- If both
gateway.auth.tokenandgateway.auth.passwordare configured andgateway.auth.modeis unset, install is blocked until mode is set explicitly.
Prefer
Use openclaw gateway for current docs and examples.