docs: update OpenClaw integration docs v2#743
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | e401760 | Feb 17 2026, 06:24 AM |
How to use the Graphite Merge QueueAdd the label Main to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Merge activity
|
### docs: OpenClaw integration v2 documentation Restructure OpenClaw docs for Openclaw v2
cbcd3ad to
e401760
Compare
| openclaw supermemory setup # Configure API key | ||
| openclaw supermemory setup-advanced # Configure all options | ||
| openclaw supermemory status # View current configuration | ||
| openclaw supermemory search <query> # Search memories | ||
| openclaw supermemory profile # View user profile | ||
| openclaw supermemory wipe # Delete all memories (requires confirmation) | ||
| ``` |
There was a problem hiding this comment.
Bug: The documentation introduces new CLI setup commands (e.g., openclaw supermemory setup) that may not exist in the external OpenClaw plugin, blocking user setup.
Severity: HIGH
Suggested Fix
Verify that the openclaw supermemory setup, setup-advanced, and status commands are implemented and functional in the OpenClaw v2 plugin. If they are not, either remove them from the documentation or revert to the previous setup instructions that used environment variables until the CLI is ready.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: apps/docs/integrations/openclaw.mdx#L83-L89
Potential issue: The documentation for the OpenClaw integration was updated to use new
CLI commands like `openclaw supermemory setup` as the primary setup method. These
commands are not part of the main Supermemory codebase and are presumed to exist in the
separate OpenClaw v2 plugin repository. If these commands are not implemented in the
plugin as documented, users will encounter 'command not found' errors and will be unable
to configure the integration, as this is presented as the main setup path.
Did we get this right? 👍 / 👎 to inform future reviews.
| "openclaw-supermemory": { | ||
| "enabled": true, | ||
| "config": { | ||
| "apiKey": "${SUPERMEMORY_OPENCLAW_API_KEY}", |
There was a problem hiding this comment.
Bug: The documentation suggests using ${VAR} syntax for an API key inside a JSON configuration. Standard JSON does not support this, which will likely cause authentication failures.
Severity: HIGH
Suggested Fix
Remove the ${VAR} syntax from the JSON example. Instead, instruct users to set the environment variable in their shell profile and then use a placeholder in the JSON, like "apiKey": "YOUR_API_KEY_HERE", with a comment explaining that the plugin will read the SUPERMEMORY_OPENCLAW_API_KEY environment variable if the key is not hardcoded.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: apps/docs/integrations/openclaw.mdx#L118
Potential issue: The manual configuration section in the OpenClaw integration
documentation provides a JSON snippet where the API key is set using
`${SUPERMEMORY_OPENCLAW_API_KEY}`. Standard JSON does not support environment variable
interpolation with this syntax. When the configuration is parsed, the `apiKey` field
will contain the literal string `"${SUPERMEMORY_OPENCLAW_API_KEY}"` instead of the key's
value. This will cause API authentication to fail, rendering the integration
non-functional for users who follow the manual setup.
Did we get this right? 👍 / 👎 to inform future reviews.

docs: OpenClaw integration v2 documentation
Restructure OpenClaw docs for Openclaw v2