feat(kb): add OpenClaw — messaging-channel gateway for LLM agents#56
Merged
jonathansantilli merged 1 commit intomainfrom Apr 22, 2026
Merged
feat(kb): add OpenClaw — messaging-channel gateway for LLM agents#56jonathansantilli merged 1 commit intomainfrom
jonathansantilli merged 1 commit intomainfrom
Conversation
OpenClaw (openclaw.ai, github.com/openclaw/openclaw) exposes LLM agents through WhatsApp, Telegram, Signal, Slack, iMessage, Discord, LINE, Matrix, Teams, Zalo, and voice-call channels. Not a coding assistant, but a materially different agentic-LLM surface worth scanning: - Untrusted inbound messages feed LLM tool-use directly (prompt-injection surface on every connected channel). - Plugin system installs via `npm install --omit=dev` with arbitrary package content — lifecycle scripts execute in-process. - hooks.json5 declares shell commands run before/after agent tool calls. Registered KB entry covers: - config_paths (6): openclaw.json, custom.json, hooks.json5, exec-approvals.json, .env, telegram.token - skill_paths (3): extensions/*/package.json (plugin manifests), agents/*/agent (agent configs), workspace/IDENTITY.md (persona) - extension_mechanisms (3): npm_plugin, messaging_channel, hook
github-actions Bot
pushed a commit
that referenced
this pull request
Apr 22, 2026
# [0.15.0](v0.14.4...v0.15.0) (2026-04-22) ### Features * **kb:** add OpenClaw — messaging-channel gateway for LLM agents ([#56](#56)) ([854505f](854505f))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds OpenClaw to CodeGate's knowledge base so `inventory` picks it up like any other AI tool.
OpenClaw (openclaw.ai, github.com/openclaw/openclaw) routes LLM agents through messaging channels (WhatsApp, Telegram, Signal, Slack, iMessage, Discord, LINE, Matrix, Teams, Zalo, voice). It's a different shape of risk than a coding assistant, but squarely in CodeGate's remit:
KB entry
```
config_paths: 6 — openclaw.json, custom.json, hooks.json5,
exec-approvals.json, .env, telegram.token
skill_paths: 3 — extensions//package.json, agents//agent,
workspace/IDENTITY.md
extension_mechanisms: npm_plugin, messaging_channel, hook
```
Verification
```
$ node -e 'const kb = require("codegate-ai/dist/layer1-discovery/knowledge-base.js").loadKnowledgeBase(); console.log(kb.entries.find(e => e.tool === "openclaw"))'
tool: 'openclaw', config_paths: 6, skill_paths: 3, extension_mechanisms: 3
```