Install
openclaw skills install hivefenceCollective immunity network for AI agents. When one agent detects a prompt injection attack, all connected agents become immune. Real-time pattern detection, community voting, and distributed threat intelligence. Built on top of prompt-guard.
openclaw skills install hivefence🐝 When one is attacked, all become immune.
Collective prompt injection defense network for AI agents.
HiveFence extends prompt-guard with a distributed immunity system:
# Via ClawdHub
npx clawhub install hivefence
# Or via npm
npm install hivefence
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
}
For maximum protection, use HiveFence with:
As recommended in @VittoStack's Security Guide (34K+ views)
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/v1/threats/report | Submit new threat pattern |
| GET | /api/v1/threats/pending | Get patterns awaiting votes |
| POST | /api/v1/threats/:id/vote | Vote on a pattern |
| GET | /api/v1/threats/latest | Fetch approved patterns |
| GET | /api/v1/stats | Network statistics |
Base URL: https://hivefence-api.seojoon-kim.workers.dev
Without protection:
(Source: ZeroLeaks Security Assessment)
With HiveFence:
MIT © 2026 Simon Kim (@seojoonkim)