Community-driven ATR rule consensus platform. Scanners propose threat patterns, the community confirms them, and confirmed rules are distributed back to all scanners.
Panguard Threat Cloud is a community-driven threat intelligence platform built around ATR (Agent Threat Rules) proposals and consensus. When any scanner (CLI, Website, or Guard) detects a suspicious pattern in an MCP skill, it submits a proposal to Threat Cloud. Other scanners that encounter the same pattern confirm it. Once a proposal reaches 3 or more confirmations, it is automatically promoted to a confirmed rule and distributed to all connected scanners.
Proposals are submitted automatically when a scanner detects high-severity findings. The endpoint is POST /api/atr-proposals. Each submission includes the pattern hash, the proposed rule content, and the LLM model that generated the self-review verdict.If the pattern hash already exists, the submission counts as a confirmation rather than a new proposal.
Threat Cloud uses a simple, transparent consensus mechanism:
Each unique scanner instance (identified by an anonymous client ID) can confirm a proposal once
When a proposal reaches 3 or more confirmations, it is automatically promoted to confirmed status
No manual review is required for community consensus — the process is fully automated
The promoteConfirmedProposals() function handles promotion on each sync cycle
This means a threat pattern must be independently detected by at least 3 separate scanners before it becomes a confirmed rule. This reduces false positives while keeping the pipeline fully automated.
Confirmed ATR rules are distributed to all scanners via a single endpoint:
GET /api/atr-rulesGET /api/atr-rules?since=2025-01-01T00:00:00Z
The ?since= parameter allows incremental fetching — scanners only download rules confirmed after their last sync. Guard agents sync automatically every hour. CLI and Website fetch rules on each scan invocation.
No configuration needed. Guard automatically connects to the public Threat Cloud when started:
panguard guard start --dashboard
Threat Cloud sync happens automatically every hour in the background. Your agent contributes anonymized threat data and receives updated ATR rules and IoC feeds.
Zero configuration required. The public Threat Cloud at tc.panguard.ai is free for all
Panguard users. No API key needed for standard agent sync.
For organizations requiring isolated threat intelligence infrastructure, private Threat Cloud instances are available. Contact us for deployment options.
Contact for Private Instance
Organizations can deploy dedicated Threat Cloud infrastructure.
Privacy
Anonymized data, zero telemetry, and opt-out controls.
API Reference
REST API for querying and submitting threat intelligence.