Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Integrate PromptDome prompt injection screening into OpenClaw. Use when setting up automatic protection against prompt injection, jailbreaks, and PII exfiltr...
Integrate PromptDome prompt injection screening into OpenClaw. Use when setting up automatic protection against prompt injection, jailbreaks, and PII exfiltr...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
API key required โ Get yours free at https://promptdome.cyberforge.one/dashboard/api-keys (Sign up โ Dashboard โ API Keys โ Create Key) Adds automatic prompt injection detection to any OpenClaw agent. Two components work together: ComponentWhat it doesWhen it firespromptdome-gate hookAuto-scans every incoming message; injects โ ๏ธ warning if injection detectedEvery message:received โ zero agent code requiredpromptdome_scan toolExplicit scan agent can call on any contentOn demand โ web content, files, tool outputs
bash skills/promptdome/scripts/setup.sh --api-key sk_shield_live_YOUR_KEY That's it. The script: Tests your API key against the PromptDome API Installs promptdome-gate hook โ ~/.openclaw/hooks/promptdome-gate/ Installs promptdome_scan plugin โ ~/.openclaw/extensions/promptdome/ Saves API key to openclaw.json env block Enables the hook automatically Prompts you to restart the gateway Get an API key: https://promptdome.cyberforge.one/dashboard/api-keys
# Hook (auto-scanning) mkdir -p ~/.openclaw/hooks/promptdome-gate cp skills/promptdome/hook/HOOK.md ~/.openclaw/hooks/promptdome-gate/ cp skills/promptdome/hook/handler.ts ~/.openclaw/hooks/promptdome-gate/ # Plugin (explicit tool) mkdir -p ~/.openclaw/extensions/promptdome cp skills/promptdome/plugin/index.ts ~/.openclaw/extensions/promptdome/
Add to ~/.openclaw/openclaw.json: { "env": { "PROMPTDOME_API_KEY": "sk_shield_live_YOUR_KEY" } } Or set PROMPTDOME_API_KEY in your shell environment.
openclaw hooks enable promptdome-gate openclaw gateway restart
Every incoming message โ scanned automatically before the model processes it BLOCK (score โฅ 70): [PROMPTDOME BLOCK] warning injected into conversation WARN (score โฅ 40): Soft caution note injected ALLOW: Silent โ no overhead in conversation history Scan log: ~/.openclaw/logs/promptdome-gate.log Fail-open: if API is unreachable, messages pass through unblocked
Enable promptdome_scan in your agent's tool allowlist: { "agents": { "list": [{ "id": "main", "tools": { "allow": ["promptdome_scan"] } }] } } Then agents call it like any tool โ before processing web fetches, search results, uploaded files, or any external content.
Override the API endpoint: { "env": { "PROMPTDOME_API_KEY": "sk_shield_live_...", "PROMPTDOME_API_URL": "https://your-instance.com/api/v1/shield" } }
PromptDome engine covers 32 attack categories including: Prompt injection & jailbreaks Fake system events / gateway spoofing PII & credential exfiltration ClickFix / social engineering HTML/DOM injection (browser agents) Agentic chain poisoning Multilingual evasion (18 languages) Full category list: https://promptdome.cyberforge.one/docs
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.