docs: Fix formatting in OpenClaw installation instructions#42
docs: Fix formatting in OpenClaw installation instructions#42SecretSettler merged 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the OpenClaw integration guide’s manual installation snippet.
Changes:
- Adjusts the
python -m contextpilot.server.http_servercommand formatting/flags in the “Manual” section.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| pip install contextpilot | ||
| python -m contextpilot.server.http_server \ | ||
| --stateless --port 8765 \ | ||
| --port 8765 \ | ||
| --infer-api-url https://api.anthropic.com |
There was a problem hiding this comment.
This edit drops the --stateless flag from the manual http_server invocation. That’s a behavioral change (switches from stateless to stateful mode by default) and doesn’t match a “formatting fix”; it can also change how /health and /reorder behave for users following this guide. If the intent was only formatting, keep --stateless and just rewrap the args; if the intent is to recommend stateful mode here, the surrounding guide text should explain why stateful mode is preferred for OpenClaw.
No description provided.