The free, open-source toolkit to configure, debug, and optimize OpenClaw.
Stop fighting ECONNREFUSED errors, YAML syntax bugs, and Windows path issues.
Live Site | Config Wizard | Local Doctor | Cost Estimator | Skill Registry
Setting up OpenClaw from scratch is painful:
- Config errors — One wrong indent in YAML/JSON and nothing works
ECONNREFUSED— The #1 error. localhost vs 127.0.0.1, IPv6 binding, port conflicts- Windows path hell —
C:\Users\youbreaks JSON. Every. Single. Time. - No idea what it costs — Running GPT-4.1 24/7 can burn $500+/mo without you knowing
- 7400+ skills, zero discoverability — How do you find the right plugin?
ClawKit fixes all of this in your browser. No install. No sign-up. No data leaves your machine.
"I spent 2 hours debugging a missing comma. Never again."
- One-click presets for OpenAI, Anthropic, DeepSeek, Google Gemini, Ollama
- Auto-escapes Windows backslash paths (
C:\\Users\\...) - Real-time JSON validation with Zod schema
- Test API connection directly from the browser
- Copy-paste ready
clawhub.jsonoutput
"npx clawkit-doctor@latest told me my Node.js was too old. Fixed in 2 minutes."
npx clawkit-doctor@latest- Checks Node.js version, config directory, port availability
- Works on macOS, Windows (PowerShell), and Linux
- Zero install — runs via
npx - 100% read-only, no data uploaded
Compare monthly costs across models with exponential context growth simulation:
| Model | ~50 runs/day, 10 steps | Cache 50% |
|---|---|---|
| GPT-4.1 | ~$320/mo | ~$190/mo |
| Claude Sonnet 4.5 | ~$150/mo | ~$95/mo |
| DeepSeek V3.2 | ~$12/mo | ~$8/mo |
Prices are estimates. Use the interactive calculator for your exact workload.
Searchable directory with one-click install commands:
- Browser Use — Let your agent control a web browser
- Memory Core — Long-term vector memory for agents
- Crypto Toolkit — On-chain data, wallet monitoring
- Discord/Slack Bots — Multi-platform messaging
- ...and 7,400+ more
Every skill page includes: install command, config snippet, source code link, metadata.
Fix: OpenClaw ECONNREFUSED / Connection Refused
The most common OpenClaw error. Usually caused by:
- Agent not running (
openclaw startfirst) - Node.js binding to IPv6 — use
127.0.0.1instead oflocalhost - Port 3000 already in use — check with
lsof -i :3000ornetstat -ano | findstr :3000
Quick fix: Run npx clawkit-doctor@latest to auto-diagnose.
Fix: JSON Parse Error / Invalid Config File
Common causes:
- Trailing commas in JSON (not allowed!)
- Unescaped Windows paths:
C:\Users→ must beC:\\Users - Copy-paste artifacts from documentation
Quick fix: Use the Config Wizard to generate a valid config.
Fix: Windows Backslash Path Issues in OpenClaw
Windows uses \ for paths, but JSON treats \ as escape character.
// WRONG
{ "dataPath": "C:\Users\you\.openclaw\data" }
// CORRECT
{ "dataPath": "C:\\Users\\you\\.openclaw\\data" }Quick fix: The Config Wizard auto-detects Windows and escapes paths for you.
How to Use DeepSeek with OpenClaw (90% Cost Savings)
DeepSeek V3.2 is fully compatible with the OpenAI API format:
{
"llm": {
"provider": "deepseek",
"model": "deepseek-chat",
"baseUrl": "https://api.deepseek.com/v1",
"apiKey": "sk-..."
}
}Use the Config Wizard DeepSeek preset for one-click setup.
How to Use Ollama (Local LLM) with OpenClaw
Run your agent 100% offline with Ollama:
{
"llm": {
"provider": "ollama",
"model": "llama3",
"baseUrl": "http://localhost:11434/v1",
"apiKey": "ollama"
}
}No API costs. Full data privacy. Use the Config Wizard Ollama preset.
- Node.js 22+
- Git
git clone https://github.com/branzoom/getclawkit-web.git
cd getclawkit-web
npm install
cp .env.example .env # fill in your keys
npm run devOpen http://localhost:3000.
# Required for skill data
DATABASE_URL=your_database_url
# GitHub token for skill crawler
GITHUB_TOKEN=ghp_...
# Optional: LLM for AI-generated skill summaries
LLM_API_KEY=sk-...
LLM_API_URL=https://api.deepseek.com/chat/completions
LLM_MODEL=deepseek-chat| Layer | Technology |
|---|---|
| Framework | Next.js 15 (App Router, RSC) |
| Styling | Tailwind CSS 4 |
| Components | shadcn/ui, Lucide Icons |
| Validation | Zod |
| Database | Prisma + PostgreSQL |
| Search | Fuse.js (client-side fuzzy search) |
| Analytics | Umami (privacy-first) |
| Deployment | Vercel |
We welcome contributions — new tools, bug fixes, skill submissions, docs improvements.
- Fork this repo
- Create a feature branch (
git checkout -b feature/my-feature) - Commit your changes
- Open a Pull Request
To submit a Skill: Open a PR adding your repo to the seed list, or open an issue.
- OpenClaw — The AI agent framework this toolkit supports
- clawkit-doctor — CLI diagnostic tool (
npx clawkit-doctor@latest)
MIT — free for personal and commercial use.
ClawKit is a community-built, unofficial toolkit. Not affiliated with the OpenClaw core team. Verify all generated configurations before production use. We are not responsible for any costs incurred by AI model usage.
