Skip to main content
Glama
README.md
# clawspace

Bootstrap a production-grade OpenClaw agent workspace (three-tier memory, config validation, templates, MCP server) in minutes.

```bash
pip install clawspace
clawspace setup
```

## Quick Start

```bash
# Install
pip install clawspace

# Set up workspace with memory system
clawspace setup ~/.openclaw/workspace

# Validate and optimize an existing config
clawspace doctor

# Generate from a template
clawspace template openclaw-default

# List available templates
clawspace template --list

# Check installation status
clawspace status
```

## MCP Server (AI Integration)

Run as an MCP server for Claude, Cursor, or OpenClaw:

```bash
clawspace-mcp
```

Or in `openclaw.json`:
```json
{
  "mcpServers": {
    "clawspace": {
      "command": "clawspace-mcp"
    }
  }
}
```

The MCP server exposes `setup_workspace`, `validate_config`, `list_templates`, and `get_optimization_advice` tools.

## License

MIT. See [LICENSE](LICENSE).

---

Built by [Solomon Neas](https://solomonneas.dev)