docs: Enhanced ClawdBoost plugin entry with Quick Start guide

- Added collapsible Quick Start section with installation steps
- Included full feature list (pattern matching, time-aware rules, CLI, AI tool)
- Added direct link to Quick Start anchor
- Updated description to reflect v1.0.5 capabilities
This commit is contained in:
Nikhil Bhagat 2026-01-29 16:59:04 +05:45
parent e25986dbea
commit cbc26cd710

View File

@ -53,7 +53,35 @@ See [Voice Call](/plugins/voice-call) for a concrete example plugin.
Community-contributed plugins that extend Moltbot:
- **[ClawdBoost](https://github.com/NikeGunn/clawdboost)** — `clawdboost` — Smart context injection plugin. Automatically boosts AI conversations with pattern-matched, time-aware context snippets. [npm](https://www.npmjs.com/package/clawdboost)
- **[ClawdBoost](https://github.com/NikeGunn/clawdboost)** — `clawdboost` — Smart context injection plugin. Automatically injects relevant context into AI conversations based on pattern matching and time-aware rules. Features include keyword triggers, time-based context (morning/evening, weekdays/weekends), CLI management (`moltbot cb`), and AI tool integration. [npm](https://www.npmjs.com/package/clawdboost) | [Quick Start](#clawdboost-quick-start)
<details>
<summary id="clawdboost-quick-start"><strong>ClawdBoost Quick Start</strong></summary>
```bash
# Install
npm install clawdboost
# Initialize with examples
npx clawdboost init
```
Add to `~/.clawdbot/moltbot.json`:
```json
{
"plugins": {
"entries": { "clawdboost": { "enabled": true } },
"load": { "paths": ["node_modules/clawdboost"] }
}
}
```
```bash
# Use
moltbot cb status
moltbot cb add "Work Context" --content "I work at Acme Corp" --patterns "work,job"
```
</details>
> Want your plugin listed? Open a PR adding it to this section!