secure-openclaw

(β˜… 1,187)

A personal 24x7 AI assistant like OpenClaw that runs on your messaging platforms. Send a message on WhatsApp, Telegram, Signal, or iMessage and get responses from Claude with full tool access, persistent memory, scheduled reminders, and integrations with 500+ apps.

  • .dockerignore
  • .env.example
  • .gitignore
  • cli.js
  • config.js
  • docker-compose.yml
  • Dockerfile
  • entrypoint.sh
  • gateway.js
  • LICENSE.md
  • package-lock.json
  • package.json
  • README.md
  • setup.sh

# Installation Guide

1. Get the code
git clone https://github.com/composio-community/secure-openclaw

Downloads the entire project code from GitHub to your computer.

cd secure-openclaw

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Node.js Node.js must be installed to use npm.
npm install -g @anthropic-ai/claude-code

Installs the package published on the npm registry globally β€” no need to clone the source.

curl -fsSL https://opencode.ai/install | bash

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

curl -fsSL https://composio.dev/install | bash

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

curl -fsSL https://get.docker.com | sh

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Docker

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
curl -fsSL https://get.docker.com | sh

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

docker compose up -d --build

Builds and starts all defined containers (server, database, etc.) at once, in the background.

docker compose logs -f # live logs

Runs the command against the services defined in the compose file.

docker compose down && docker compose up -d # restart

Builds and starts all defined containers (server, database, etc.) at once, in the background.

docker compose exec openclaw sh # shell into container

Runs the command against the services defined in the compose file.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

Pulled directly from this repo's README.

4. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
npm install

Downloads and installs the libraries listed in package.json.

npm install -g @anthropic-ai/claude-code

Installs the package published on the npm registry globally β€” no need to clone the source.

βœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation