OpenClawHomeAssistantIntegration

(★ 100)

No description available.

File Explorer

  • .gitignore
  • CHANGELOG.md
  • DOCS.md
  • hacs.json
  • IMPLEMENTATION_PLAN.md
  • LICENSE
  • pic.png
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

openclaw gateway

View Details ▼

Start the OpenClaw gateway server (control plane).

openclaw gateway --allow-unconfigured

Start the gateway on the default port (18789):

openclaw gateway --allow-unconfigured --port {{18789}}

Start the gateway on a specific port:

openclaw gateway --allow-unconfigured --verbose

Start the gateway with verbose logging:

🔍

openclaw

View Details ▼

A personal AI assistant that you run on your own devices.
Some subcommands such as `onboard`, `agent`, `doctor`, etc. have their own usage documentation.
See also: `zeroclaw`.

openclaw onboard --install-daemon

Run the onboarding wizard to set up the gateway and channels:

openclaw gateway --allow-unconfigured --port {{18789}} --verbose

Start the gateway server:

openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"

Send a message to a contact:

🔍

truncate

View Details ▼

Shrink or extend the size of a file to the specified size.

truncate {{[-s|--size]}} 10G {{path/to/file}}

Set a size of 10 GB to an existing file, or create a new file with the specified size:

truncate {{[-s|--size]}} +50M {{path/to/file}}

Extend the file size by 50 MiB, fill with holes (which reads as zero bytes):

truncate {{[-s|--size]}} -2G {{path/to/file}}

Shrink the file by 2 GiB, by removing data from the end of file:

// repository documentation