Orgs · advanced

Supply Chain Orchestrator

An end-to-end supply chain orchestration pipeline coordinating inventory management, logistics routing, procurement, and regulatory compliance across four specialized agents. The inventory manager monitors stock levels and predicts demand, triggering reorder flows that cascade through procurement for supplier negotiation, routing for delivery optimization, and compliance for regulatory validation before any goods move.

Agents
4
Skills
10
Difficulty
advanced
Install
clawhub install pilot-supply-chain-orchestrator-setup
Skills used
Agents
<your-prefix>-inventory Inventory Manager
Reorder requests when stock is low" },
pilot-metricspilot-cronpilot-alertpilot-stream-data
<your-prefix>-routing Logistics Router
Fulfillment orders to route" },
pilot-task-routerpilot-stream-datapilot-receipt
<your-prefix>-procurement Procurement Agent
Reorder requests from inventory" },
pilot-webhook-bridgepilot-audit-logpilot-escrow
<your-prefix>-compliance Compliance Checker
Purchase orders to validate" },
pilot-audit-logpilot-event-filterpilot-alert
Data flows
<your-prefix>-inventory <your-prefix>-procurement :1002 reorder requests when stock drops below threshold
<your-prefix>-inventory <your-prefix>-routing :1002 fulfillment orders for customer deliveries
<your-prefix>-procurement <your-prefix>-compliance :1002 purchase orders requiring regulatory validation
<your-prefix>-routing <your-prefix>-compliance :1002 shipping manifests for export/import checks
<your-prefix>-compliance <your-prefix>-inventory :1002 compliance clearance to release held stock
Quick start
# Replace <your-prefix> with a unique name for your deployment (e.g. acme)
# On inventory warehouse server
clawhub install pilot-metrics pilot-cron pilot-alert pilot-stream-data
pilotctl set-hostname <your-prefix>-inventory

# On logistics routing server
clawhub install pilot-task-router pilot-stream-data pilot-receipt
pilotctl set-hostname <your-prefix>-routing

# On procurement server
clawhub install pilot-webhook-bridge pilot-audit-log pilot-escrow
pilotctl set-hostname <your-prefix>-procurement

# On compliance server
clawhub install pilot-audit-log pilot-event-filter pilot-alert
pilotctl set-hostname <your-prefix>-compliance
# inventory <-> procurement (reorder requests)
# On inventory:
pilotctl handshake <your-prefix>-procurement "setup: supply-chain-orchestrator"
# On procurement:
pilotctl handshake <your-prefix>-inventory "setup: supply-chain-orchestrator"

# inventory <-> routing (fulfillment orders)
# On inventory:
pilotctl handshake <your-prefix>-routing "setup: supply-chain-orchestrator"
# On routing:
pilotctl handshake <your-prefix>-inventory "setup: supply-chain-orchestrator"

# procurement <-> compliance (purchase orders)
# On procurement:
pilotctl handshake <your-prefix>-compliance "setup: supply-chain-orchestrator"
# On compliance:
pilotctl handshake <your-prefix>-procurement "setup: supply-chain-orchestrator"

# routing <-> compliance (shipping manifests)
# On routing:
pilotctl handshake <your-prefix>-compliance "setup: supply-chain-orchestrator"
# On compliance:
pilotctl handshake <your-prefix>-routing "setup: supply-chain-orchestrator"

# compliance <-> inventory (compliance clearance)
# On compliance:
pilotctl handshake <your-prefix>-inventory "setup: supply-chain-orchestrator"
# On inventory:
pilotctl handshake <your-prefix>-compliance "setup: supply-chain-orchestrator"
pilotctl trust

Ready to deploy Supply Chain Orchestrator?