docs: update openclaw install URLs to install.cmem.ai

Replace raw.githubusercontent.com URLs with install.cmem.ai/openclaw.sh
across install script, SKILL.md, and docs. Add OpenClaw section with
install one-liner to README.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Alex Newman
2026-02-13 01:46:49 -05:00
parent 548d3677f0
commit f435ae32ce
4 changed files with 40 additions and 7 deletions
+10
View File
@@ -118,6 +118,16 @@ Start a new Claude Code session in the terminal and enter the following commands
Restart Claude Code. Context from previous sessions will automatically appear in new sessions. Restart Claude Code. Context from previous sessions will automatically appear in new sessions.
### 🦞 OpenClaw Gateway
Install claude-mem as a persistent memory plugin on [OpenClaw](https://openclaw.ai) gateways with a single command:
```bash
curl -fsSL https://install.cmem.ai/openclaw.sh | bash
```
The installer handles dependencies, plugin setup, AI provider configuration, worker startup, and optional real-time observation feeds to Telegram, Discord, Slack, and more. See the [OpenClaw Integration Guide](https://docs.claude-mem.ai/openclaw-integration) for details.
**Key Features:** **Key Features:**
- 🧠 **Persistent Memory** - Context survives across sessions - 🧠 **Persistent Memory** - Context survives across sessions
+23
View File
@@ -263,6 +263,29 @@ The feed only sends `new_observation` events — not raw tool usage. Observation
## Installation ## Installation
Run this one-liner to install everything automatically:
```bash
curl -fsSL https://install.cmem.ai/openclaw.sh | bash
```
The installer handles dependency checks (Bun, uv), plugin installation, memory slot configuration, AI provider setup, worker startup, and optional observation feed configuration.
You can also pre-select options:
```bash
# With a specific AI provider
curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --provider=gemini --api-key=YOUR_KEY
# Fully unattended (defaults to Claude Max Plan)
curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --non-interactive
# Upgrade existing installation
curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --upgrade
```
### Manual Configuration
Add `claude-mem` to your OpenClaw gateway's plugin configuration: Add `claude-mem` to your OpenClaw gateway's plugin configuration:
```json ```json
+4 -4
View File
@@ -7,7 +7,7 @@ This guide walks through setting up the claude-mem plugin on an OpenClaw gateway
Run this one-liner to install everything automatically: Run this one-liner to install everything automatically:
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash curl -fsSL https://install.cmem.ai/openclaw.sh | bash
``` ```
The installer handles dependency checks (Bun, uv), plugin installation, memory slot configuration, AI provider setup, worker startup, and optional observation feed configuration — all interactively. The installer handles dependency checks (Bun, uv), plugin installation, memory slot configuration, AI provider setup, worker startup, and optional observation feed configuration — all interactively.
@@ -17,19 +17,19 @@ The installer handles dependency checks (Bun, uv), plugin installation, memory s
Pre-select your AI provider and API key to skip interactive prompts: Pre-select your AI provider and API key to skip interactive prompts:
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash -s -- --provider=gemini --api-key=YOUR_KEY curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --provider=gemini --api-key=YOUR_KEY
``` ```
For fully unattended installation (defaults to Claude Max Plan, skips observation feed): For fully unattended installation (defaults to Claude Max Plan, skips observation feed):
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash -s -- --non-interactive curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --non-interactive
``` ```
To upgrade an existing installation (preserves settings, updates plugin): To upgrade an existing installation (preserves settings, updates plugin):
```bash ```bash
curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash -s -- --upgrade curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --upgrade
``` ```
After installation, skip to [Step 4: Restart the Gateway and Verify](#step-4-restart-the-gateway-and-verify) to confirm everything is working. After installation, skip to [Step 4: Restart the Gateway and Verify](#step-4-restart-the-gateway-and-verify) to confirm everything is working.
+3 -3
View File
@@ -5,9 +5,9 @@ set -euo pipefail
# Installs the claude-mem persistent memory plugin for OpenClaw gateways. # Installs the claude-mem persistent memory plugin for OpenClaw gateways.
# #
# Usage: # Usage:
# curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash # curl -fsSL https://install.cmem.ai/openclaw.sh | bash
# # Or with options: # # Or with options:
# curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh | bash -s -- --provider=gemini --api-key=YOUR_KEY # curl -fsSL https://install.cmem.ai/openclaw.sh | bash -s -- --provider=gemini --api-key=YOUR_KEY
# # Direct execution: # # Direct execution:
# bash install.sh [--non-interactive] [--upgrade] [--provider=claude|gemini|openrouter] [--api-key=KEY] # bash install.sh [--non-interactive] [--upgrade] [--provider=claude|gemini|openrouter] [--api-key=KEY]
@@ -1613,7 +1613,7 @@ print_completion_summary() {
fi fi
echo "" echo ""
echo -e " ${COLOR_BOLD}To re-run this installer:${COLOR_RESET}" echo -e " ${COLOR_BOLD}To re-run this installer:${COLOR_RESET}"
echo " bash <(curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/openclaw/install.sh)" echo " bash <(curl -fsSL https://install.cmem.ai/openclaw.sh)"
echo "" echo ""
} }