Contributing to These Docs
These docs are community-maintained and hosted at github.com/clawdocs/clawdocs.github.io. We welcome contributions of all sizes.
Quick Edits​
Every page has an "Edit this page" link at the bottom. Click it to edit directly on GitHub.
Local Development​
git clone https://github.com/clawdocs/clawdocs.github.io.git
cd clawdocs
npm install
npm start
This starts a local dev server at http://localhost:3000 with hot reload.
Adding a New Page​
- Create a Markdown file in the appropriate
docs/subdirectory - Add frontmatter with
sidebar_position,title, anddescription - Add the page to
sidebars.ts - Submit a PR
Frontmatter Template​
---
sidebar_position: 1
title: Your Page Title
description: A brief description for SEO
---
# Your Page Title
Content here...
Style Guidelines​
- Be practical — Focus on real-world usage, not theory
- Show code — Every concept should have a code example
- Link liberally — Cross-reference other pages in these docs
- Warn about risks — Use
:::dangerand:::warningadmonitions for security concerns - Stay current — OpenClaw moves fast. Mark outdated info clearly
Submitting Changes​
- Fork the repository
- Create a branch:
git checkout -b improve-security-docs - Make your changes
- Test locally:
npm run build - Submit a PR with a clear description
Reporting Issues​
- Missing documentation? Open an issue
- Incorrect information? Edit the page or file a bug
- Feature request? Start a discussion
Note​
These docs are community-maintained and not officially affiliated with the OpenClaw project. For official documentation, see openclaw.ai.