# Send PromptDome to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "promptdome",
    "name": "PromptDome",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tschew72/promptdome",
    "canonicalUrl": "https://clawhub.ai/tschew72/promptdome",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/promptdome",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=promptdome",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "hook/HOOK.md",
      "hook/handler.ts",
      "plugin/index.ts",
      "plugin/openclaw.plugin.json",
      "scripts/setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "promptdome",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T13:07:40.546Z",
      "expiresAt": "2026-05-14T13:07:40.546Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=promptdome",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=promptdome",
        "contentDisposition": "attachment; filename=\"promptdome-1.3.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "promptdome"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/promptdome"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/promptdome",
    "downloadUrl": "https://openagent3.xyz/downloads/promptdome",
    "agentUrl": "https://openagent3.xyz/skills/promptdome/agent",
    "manifestUrl": "https://openagent3.xyz/skills/promptdome/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/promptdome/agent.md"
  }
}
```
## Documentation

### PromptDome × OpenClaw

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

### Quick Setup (60 seconds)

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

### 1. Copy files

# 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/

### 2. Set API key

Add to ~/.openclaw/openclaw.json:

{
  "env": {
    "PROMPTDOME_API_KEY": "sk_shield_live_YOUR_KEY"
  }
}

Or set PROMPTDOME_API_KEY in your shell environment.

### 3. Enable hook and restart

openclaw hooks enable promptdome-gate
openclaw gateway restart

### What Happens After Install

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

### Using the Agent Tool

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.

### Self-Hosted PromptDome

Override the API endpoint:

{
  "env": {
    "PROMPTDOME_API_KEY": "sk_shield_live_...",
    "PROMPTDOME_API_URL": "https://your-instance.com/api/v1/shield"
  }
}

### Detection Coverage

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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tschew72
- Version: 1.3.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T13:07:40.546Z
- Expires at: 2026-05-14T13:07:40.546Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/promptdome)
- [Send to Agent page](https://openagent3.xyz/skills/promptdome/agent)
- [JSON manifest](https://openagent3.xyz/skills/promptdome/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/promptdome/agent.md)
- [Download page](https://openagent3.xyz/downloads/promptdome)