Install
openclaw skills install llmboosterA 4-step thinking framework to boost LLM output quality. Enforces structured reasoning (Plan → Draft → Self-Critique → Refine) to improve low-end LLM responses. No LLM endpoint needed - LLM follows the framework itself. Triggered by "detailed analysis", "in-depth analysis", "use booster", or /booster command.
openclaw skills install llmboosterA Thinking Framework, Not an Automation Tool
LLMBooster is a 4-step thinking framework that improves LLM output quality through structured reasoning. No LLM endpoint needed - the LLM follows the framework itself.
Problem with low-end LLMs: Jump to conclusions, miss details, lack self-review.
Booster solution: Enforce structured thinking process.
Plan → Draft → Self-Critique → Refine
LLM executes the framework itself, no Python calls needed:
prompts/plan.md → Create structured planprompts/draft.md → Write complete draftprompts/self_critique.md → Review issuesprompts/refine.md → Polish final outputWhen user enters /booster command, execute:
cd ~/.openclaw/workspace/skills/llmbooster && python3 -c "
from config_loader import ConfigLoader
from state_manager import SkillStateManager
from cli_handler import CLICommandHandler
loader = ConfigLoader()
config = loader.load('config.schema.json')
state_mgr = SkillStateManager(config)
cli = CLICommandHandler(state_mgr)
result = cli.handle('/booster status')
print(result.message)
"
| Command | Description |
|---|---|
/booster enable | Enable LLMBooster |
/booster disable | Disable LLMBooster |
/booster status | Show current status |
/booster stats | Show usage statistics |
/booster depth <1-4> | Set thinking depth |
/booster help | Show help |
| Depth | Steps | Quality | Speed | Use Case |
|---|---|---|---|---|
| 1 | Plan | ★★☆☆ | Fastest | Quick analysis, brainstorm |
| 2 | Plan → Draft | ★★★☆ | Fast | General tasks, simple Q&A |
| 3 | + Self-Critique | ★★★★ | Medium | Code review, technical docs |
| 4 | Full pipeline | ★★★★★ | Slowest | Important docs, complex analysis |
When executing, Booster displays:
🚀 **Booster Pipeline Started**: Analyzing task...
────────────────────────────────────────
🚀 Booster [█░░░░] Step 1/4: **Plan**
✅ Plan completed (2.3s)
🚀 Booster [██░░░] Step 2/4: **Draft**
✅ Draft completed (5.1s)
🚀 Booster [███░░] Step 3/4: **Self-Critique**
✅ Self-Critique completed (1.8s)
🚀 Booster [████] Step 4/4: **Refine**
✅ Refine completed (3.2s)
────────────────────────────────────────
✅ **Booster Complete** - 4 steps, 12.4s total
All templates are in prompts/ directory:
plan.md - Step 1: Create structured plandraft.md - Step 2: Write complete draftself_critique.md - Step 3: Review and list improvementsrefine.md - Step 4: Apply improvements| Low-End LLM Problem | Booster Solution |
|---|---|
| Jumps to conclusions | Plan step forces structured thinking |
| Misses details | Draft step requires complete coverage |
| No self-review | Self-Critique step finds issues |
| Rough output | Refine step polishes final result |
/booster stats
# 📊 **Booster Statistics**
# ───────────────────────
# Status: enabled
# Thinking Depth: 4
# Tasks Processed: 5
# Last Used: 2026-03-22T09:30:00
| File | Purpose |
|---|---|
SKILL.md | Skill definition + trigger conditions |
README.md | Documentation |
booster.py | Core module + helpers |
cli_handler.py | CLI command processing |
state_manager.py | State + statistics |
stream_handler.py | Visual feedback |
config_loader.py | Config loading |
prompts/*.md | Step prompt templates |