From e25986dbeacfe68b6647287ea6cfe2db61089dbe Mon Sep 17 00:00:00 2001 From: Nikhil Bhagat Date: Thu, 29 Jan 2026 11:52:57 +0545 Subject: [PATCH 1/2] docs: Add Community Plugins section with ClawdBoost Added a new 'Community plugins' section to the plugin documentation to showcase community-contributed plugins. First community plugin: ClawdBoost - Smart context injection plugin - Pattern-matched and time-aware context snippets - npm: clawdboost - GitHub: https://github.com/NikeGunn/clawdboost --- docs/plugin.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/plugin.md b/docs/plugin.md index 1b5a20608..593ecd2ff 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -49,6 +49,14 @@ See [Voice Call](/plugins/voice-call) for a concrete example plugin. - Qwen OAuth (provider auth) — bundled as `qwen-portal-auth` (disabled by default) - Copilot Proxy (provider auth) — local VS Code Copilot Proxy bridge; distinct from built-in `github-copilot` device login (bundled, disabled by default) +## Community plugins + +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) + +> Want your plugin listed? Open a PR adding it to this section! + Moltbot plugins are **TypeScript modules** loaded at runtime via jiti. **Config validation does not execute plugin code**; it uses the plugin manifest and JSON Schema instead. See [Plugin manifest](/plugins/manifest). From cbc26cd710404e75d43ac849f72a6ce919387c5b Mon Sep 17 00:00:00 2001 From: Nikhil Bhagat Date: Thu, 29 Jan 2026 16:59:04 +0545 Subject: [PATCH 2/2] 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 --- docs/plugin.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/docs/plugin.md b/docs/plugin.md index 593ecd2ff..04edb404e 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -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) + +
+ClawdBoost Quick Start + +```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" +``` + +
> Want your plugin listed? Open a PR adding it to this section!