# Send HiveFence 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": "hivefence",
    "name": "HiveFence",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/seojoonkim/hivefence",
    "canonicalUrl": "https://clawhub.ai/seojoonkim/hivefence",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/hivefence",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hivefence",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hivefence",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T20:28:32.258Z",
      "expiresAt": "2026-05-08T20:28:32.258Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hivefence",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hivefence",
        "contentDisposition": "attachment; filename=\"hivefence-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hivefence"
      },
      "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/hivefence"
    },
    "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/hivefence",
    "downloadUrl": "https://openagent3.xyz/downloads/hivefence",
    "agentUrl": "https://openagent3.xyz/skills/hivefence/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hivefence/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hivefence/agent.md"
  }
}
```
## Documentation

### HiveFence v1.0.0

🐝 When one is attacked, all become immune.

Collective prompt injection defense network for AI agents.

### What is HiveFence?

HiveFence extends prompt-guard with a distributed immunity system:

Detect — Your agent scans incoming prompts against 15+ attack patterns
Report — New attack patterns are hashed and submitted to the network
Immunize — Community validates the pattern, then every connected agent gets the update

### Features

🔍 Real-time Detection — Pattern matching + semantic analysis in <50ms
🌍 Multi-language — EN, KO, JA, ZH attack detection
🗳️ Community Governance — Democratic voting on new patterns
🔐 Privacy-preserving — Only SHA-256 hashes shared, not raw content
📊 Severity Scoring — Risk-based prioritization (0-100)
⚡ Edge-first — Cloudflare Workers at 300+ locations

### Installation

# Via ClawdHub
npx clawhub install hivefence

# Or via npm
npm install hivefence

### Quick Start

import { protect, reportThreat } from 'hivefence'

// Scan incoming prompt
const result = await protect(userInput)

if (result.blocked) {
  console.log(\`Threat blocked: ${result.category}\`)
  // Pattern automatically reported to network
}

### Security Stack Recommendation

For maximum protection, use HiveFence with:

ACIP — Advanced Cognitive Inoculation Prompt (behavioral boundaries)
HiveFence — Pattern detection + collective immunity
SkillGuard — Audit skills before installation

As recommended in @VittoStack's Security Guide (34K+ views)

### API Endpoints

MethodEndpointDescriptionPOST/api/v1/threats/reportSubmit new threat patternGET/api/v1/threats/pendingGet patterns awaiting votesPOST/api/v1/threats/:id/voteVote on a patternGET/api/v1/threats/latestFetch approved patternsGET/api/v1/statsNetwork statistics

Base URL: https://hivefence-api.seojoon-kim.workers.dev

### Why HiveFence?

Without protection:

91% injection attack success rate
84% data extraction success rate
System prompts leaked on turn 1

(Source: ZeroLeaks Security Assessment)

With HiveFence:

Real-time pattern blocking
Collective immunity from the network
Community-validated patterns (zero false positives)

### Links

Website: https://hivefence.com
GitHub: https://github.com/seojoonkim/hivefence
API Docs: https://hivefence.com/docs

### License

MIT © 2026 Simon Kim (@seojoonkim)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: seojoonkim
- Version: 1.0.0
## 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-01T20:28:32.258Z
- Expires at: 2026-05-08T20:28:32.258Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hivefence)
- [Send to Agent page](https://openagent3.xyz/skills/hivefence/agent)
- [JSON manifest](https://openagent3.xyz/skills/hivefence/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hivefence/agent.md)
- [Download page](https://openagent3.xyz/downloads/hivefence)