Orgs · advanced

Fraud Detection Pipeline

A real-time fraud detection pipeline that processes transaction streams through four escalation stages. The monitor watches live transactions for threshold breaches and velocity anomalies, the pattern analyzer performs deep behavioral analysis on flagged items, the investigator assembles evidence packages for high-confidence cases, and the enforcer executes blocking actions and feeds blocked entities back into the monitoring loop.

Agents
4
Skills
12
Difficulty
advanced
Install
clawhub install pilot-fraud-detection-pipeline-setup
Skills used
Agents
<your-prefix>-monitorTransaction Monitor
Transactions exceeding risk thresholds" },
pilot-stream-datapilot-event-filterpilot-cronpilot-metrics
<your-prefix>-pattern-analyzerPattern Analyzer
Flagged transactions to analyze" },
pilot-event-filterpilot-archivepilot-priority-queue
<your-prefix>-investigatorCase Investigator
Cases requiring investigation" },
pilot-task-routerpilot-audit-logpilot-dataset
<your-prefix>-enforcerFraud Enforcer
Verdicts to enforce" },
pilot-blocklistpilot-webhook-bridgepilot-audit-logpilot-alert
Data flows
<your-prefix>-monitor<your-prefix>-pattern-analyzer:1002flagged transactions exceeding risk thresholds
<your-prefix>-pattern-analyzer<your-prefix>-investigator:1002high-risk cases with behavioral analysis
<your-prefix>-investigator<your-prefix>-enforcer:1002fraud verdicts with recommended actions
<your-prefix>-enforcer<your-prefix>-monitor:1002blocked entities to update detection rules
Quick start
# Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On transaction monitoring server
clawhub install pilot-stream-data pilot-event-filter pilot-cron pilot-metrics
pilotctl set-hostname <your-prefix>-monitor

# On pattern analysis server
clawhub install pilot-event-filter pilot-archive pilot-priority-queue
pilotctl set-hostname <your-prefix>-pattern-analyzer

# On investigation server
clawhub install pilot-task-router pilot-audit-log pilot-dataset
pilotctl set-hostname <your-prefix>-investigator

# On enforcement server
clawhub install pilot-blocklist pilot-webhook-bridge pilot-audit-log pilot-alert
pilotctl set-hostname <your-prefix>-enforcer
# monitor <-> pattern-analyzer (flagged transactions)
# On monitor:
pilotctl handshake <your-prefix>-pattern-analyzer "setup: fraud-detection-pipeline"
# On pattern-analyzer:
pilotctl handshake <your-prefix>-monitor "setup: fraud-detection-pipeline"

# pattern-analyzer <-> investigator (high-risk cases)
# On pattern-analyzer:
pilotctl handshake <your-prefix>-investigator "setup: fraud-detection-pipeline"
# On investigator:
pilotctl handshake <your-prefix>-pattern-analyzer "setup: fraud-detection-pipeline"

# investigator <-> enforcer (fraud verdicts)
# On investigator:
pilotctl handshake <your-prefix>-enforcer "setup: fraud-detection-pipeline"
# On enforcer:
pilotctl handshake <your-prefix>-investigator "setup: fraud-detection-pipeline"

# enforcer <-> monitor (blocked entities feedback loop)
# On enforcer:
pilotctl handshake <your-prefix>-monitor "setup: fraud-detection-pipeline"
# On monitor:
pilotctl handshake <your-prefix>-enforcer "setup: fraud-detection-pipeline"
pilotctl trust

Ready to deploy Fraud Detection Pipeline?