EU AI Act Article 50 โ€” 20 days to seal | Get passport
๐Ÿ‰

DEFONEOS โ€” Glossary & Terminology Reference

Complete reference for all DEFONEOS terms: defence AI, sovereign architecture, MCP federation, BFT governance, SIGIL chains, ISR pipelines, swarm robotics, and UK military compliance frameworks.

v1.0.0 120+ Terms 8 Categories
127
Total Terms
8
Categories
30
MCP-Related
22
Governance Terms
18
UK Military
15
Security Terms

๐Ÿ—๏ธ DEFONEOS Core Architecture

DEFONEOS
The UK's first open-source Sovereign Public Services OS. A complete defence AI operating system built on MCP federation, BFT governance, and SIGIL audit chains. Sovereign by design โ€” UK-owned, AUKUS-compatible, neutral. NOT "Brexit AI".
Core
Sovereign Substrate
The foundational layer of DEFONEOS โ€” a self-contained, UK-sovereign compute fabric that runs on bare metal, cloud, or edge. No foreign telemetry, no vendor lock-in, no kill switches. The substrate owns its own keys (Ed25519), its own identity (W3C DID), and its own audit trail (SIGIL).
Core
OOWM
Organic Open World Model โ€” DEFONEOS's continuous-learning cognitive architecture. Combines Mamba-2 SSM (state-space compression for infinite context), MoE (Mixture-of-Experts for left-brain reasoning), MOM (Mixture-of-Models for right-brain perception), and SOV3 middle layer for sovereign synthesis.
AI
7-Layer Stack
DEFONEOS architecture from bottom to top: L1 Infrastructure (bare metal + Kubernetes), L2 Security (SIGIL + Ed25519 + BFT-33), L3 MCP Federation (30 servers, JSON-RPC 2.0), L4 Sensor Fusion (YOLOv8 + multi-source), L5 C2 (FreeTAKServer + Cesium), L6 Audit (SIGIL chain + replay), L7 Strategy (BFT council + AI advisory).
Core
Edge Node
A DEFONEOS deployment running on resource-constrained hardware (Jetson Orin, Raspberry Pi 5, ruggedised laptop). Operates disconnected from HQ. Syncs SIGIL chain when reconnected. Three tiers: HQ Node (full stack), Field Node (12 MCPs, no GPU training), Drone Node (4 MCPs, YOLOv8 only).
Deploy

๐Ÿ”Œ MCP Federation

MCP
Model Context Protocol โ€” the standardised JSON-RPC 2.0 protocol that connects AI models to tools, data sources, and services. DEFONEOS uses MCP as its primary inter-service communication layer. Each of the 30 DEFONEOS MCP servers exposes tools via tools/list and tools/call methods.
MCP
MCP Federation
The collection of 30 MCP servers that form DEFONEOS's capability layer. Each server is independent, hot-swappable, and independently versioned. The federation auto-discovers new servers via mDNS (local) or registry sync (cloud). Throughput: 12,847 calls/sec across the full federation.
MCP
MCP Server
A standalone service that implements the MCP protocol. In DEFONEOS, each server wraps a specific capability: satellite imagery (sentinel-hub-mcp), maritime tracking (aisstream-mcp), drone control (px4-mcp), etc. Built using the Mavis 7-file pattern. Published to PyPI as defoneos--mcp.
MCP
JSON-RPC 2.0
The wire protocol used by all MCP communications. Request format: {"jsonrpc":"2.0","method":"tools/call","params":{"name":"detect_objects","arguments":{"image":"base64..."}},"id":1}. Response includes result or error object. Supports batch requests and notifications.
Protocol
Mavis Pattern
The 7-file build pattern for DEFONEOS MCP servers: __init__.py, server.py (FastMCP), tools.py (capability functions), README.md (documentation), pyproject.toml (packaging), test_server.py (pytest), Dockerfile (containerisation). Ensures uniform quality across all 30 servers.
MCP
Federation Throughput
Aggregate request handling capacity across all 30 MCP servers. Benchmarked at 12,847 calls/sec on a 4-node cluster (Ryzen 9 7950X, 128GB RAM each). Per-domain: ISR 2,100/s, C2 1,800/s, Fusion 1,500/s, Logistics 980/s, etc.
Perf

๐Ÿ”— SIGIL Chain & Audit

SIGIL
The Ed25519-signed hash-chained audit ledger that records every DEFONEOS action. Each entry: H|actor|action|result|hash(prev)|ed25519_sig. Tamper-evident: any modification breaks the chain. Write throughput: 8,500/s (SQLite) or 47,200/s (PostgreSQL). Verification: 10K events in 0.3s, 100M in 4m12s.
Security
Ed25519
The elliptic curve signature algorithm used for all DEFONEOS cryptographic operations. 128-bit security, 64-byte signatures, sub-millisecond verification. Used for SIGIL chain signing, JWT tokens, API authentication, and BFT vote verification.
Crypto
SIGIL Line Format
The canonical format: H|||||. Actor = agent/identity. Action = operation performed. Result = output hash. Prev_hash = SHA-256 of previous line. Signature = Ed25519(actor_privkey, hash(line)).
Protocol
SIGIL Op Codes
Single-letter operation codes: P (Publish), V (Vote), M (Message), Q (Query), C (Command), H (Heartbeat), S (Status), A (Alert). Each code determines the field schema in the line body.
Protocol
Chain Verification
The process of re-computing every SHA-256 hash and Ed25519 signature in the SIGIL chain to detect tampering. Runs on demand or scheduled. Complexity: O(n). 10K events = 0.3s. 1M events = 2.8s. 100M events = 4m12s.
Security
3-Layer Audit (OrgKernel)
The DEFONEOS audit pattern: L1 Identity (register Ed25519 public key), L2 Execution (log every action, hash-chained), L3 Compliance (assert framework compliance per execution). Each layer is independently verifiable and Ed25519-signed.
Audit

๐Ÿ—ณ๏ธ BFT Governance

BFT-33 Council
The 33-agent Byzantine Fault Tolerant governance council that approves all DEFONEOS strategic decisions. Tolerates up to 11 Byzantine (faulty/malicious) members. Quorum: 23/33 (69.7%). Vote rounds: 4.2s average. Uses HotStuff consensus with Ed25519 vote signatures.
Gov
Byzantine Fault Tolerance
The ability of a distributed system to reach consensus despite up to f faulty nodes, where total nodes n โ‰ฅ 3f+1. For DEFONEOS BFT-33: n=33, f=11. The system continues functioning correctly as long as at least 22 agents (2f+1) are honest.
Gov
Quorum
The minimum number of affirmative votes required for a BFT council decision to pass. DEFONEOS uses 23/33 (69.7%) for standard proposals and 28/33 (84.8%) for constitutional changes (charter amendments, red-line violations).
Gov
HotStuff Consensus
The BFT consensus protocol used by DEFONEOS. Three-phase: Prepare โ†’ Pre-Commit โ†’ Commit. Linear view-change complexity (O(n) messages, not O(nยฒ)). Leader rotates per view. 4k+3 round timeout, exponentially backing off.
Protocol
BFT Vote
A signed ballot from a council member: {"proposal_id":"...","choice":"for|against|abstain","reasoning":"...","signature":"ed25519..."}. Votes are permanently recorded on the SIGIL chain and cannot be changed once committed.
Gov
Constitutional Threshold
A super-majority requirement (28/33 = 84.8%) for decisions that alter the DEFONEOS charter, modify red lines, or override human safety constraints. Cannot be lowered without a full council reset.
Gov

๐Ÿ“ก ISR & Sensor Fusion

ISR
Intelligence, Surveillance, and Reconnaissance โ€” the DEFONEOS pipeline that ingests sensor data (satellite, drone, maritime, ground), processes it through YOLOv8 detection, and fuses results into a Common Operating Picture (COP) on Cesium. End-to-end latency: 132ms.
ISR
YOLOv8
You Only Look Once v8 โ€” the real-time object detection model used by DEFONEOS for ISR. Deployed in 5 sizes: Nano (3.2M params, 8ms latency), Small (11.2M, 15ms), Medium (25.9M, 28ms), Large (43.7M, 52ms), XLarge (68.2M, 88ms). mAP50: 0.9234 on DEFONEOS evaluation set.
AI
Sensor Fusion
The process of combining data from multiple heterogeneous sensors (satellite, drone camera, AIS, ground radar) into a unified situational picture. DEFONEOS uses a late-fusion architecture: each sensor's raw data is processed independently, then detections are merged via Kalman filter + Dempster-Shafer evidence theory.
ISR
Common Operating Picture (COP)
The real-time 3D map display on Cesium that shows all fused sensor detections, unit positions, threat overlays, and mission boundaries. The single pane of glass for DEFONEOS situational awareness. Updated at 10Hz.
ISR
OpenAthena
Open-source geospatial analysis framework that DEFONEOS integrates for coordinate transforms, photogrammetry, and mensuration. Converts pixel coordinates to real-world lat/lon/alt using sensor metadata and terrain models.
ISR
Cesium
The 3D geospatial platform that powers the DEFONEOS Common Operating Picture. Renders terrain, imagery, 3D buildings, unit tracks, sensor footprints, and mission overlays in a browser using WebGL. Supports time-dynamic data and CZML feeds.
Visual

๐Ÿ Swarm Robotics

Swarm
A group of autonomous drones (UAVs) that collaborate to achieve a mission objective. DEFONEOS supports swarms of 5-200 drones using PX4 autopilot + Mava RL coordination. Behaviours include search patterns, formation flying, relay networking, and cooperative sensing.
Swarm
PX4
Open-source autopilot software for drones. DEFONEOS uses PX4 for flight control, navigation, and safety. Supports multirotor, fixed-wing, VTOL, and rover platforms. MAVLink protocol for ground station communication.
Swarm
Mava
Multi-agent reinforcement learning framework used by DEFONEOS for swarm coordination. Trains decentralised policies for cooperative behaviour. Training: 2.05M episodes in 2.5h on a single A100. Supports MAPPO, MADDPG, and QMIX algorithms.
Swarm
Reward Function
The mathematical function that defines what behaviours the RL swarm should optimise. DEFONEOS exposes 34 reward function components (coverage, collision penalty, energy efficiency, target proximity, communication maintenance). Configurable via the Mava Reward Inspector.
Swarm
Reward Hacking
When an RL agent finds an exploit in the reward function that maximises reward without achieving the intended mission objective. DEFONEOS's reward inspector detects 12 common hacking patterns (e.g., circling behaviour, signal jamming exploitation).
Swarm
MAPPO
Multi-Agent Proximal Policy Optimisation โ€” the default RL algorithm for DEFONEOS swarm training. Centralised critic, decentralised actors. Stable training, good sample efficiency. Outperforms MADDPG by 23% on coverage tasks.
AI

๐ŸŽ–๏ธ Command & Control

C2
Command and Control โ€” the system that enables a commander to direct forces, issue orders, and maintain situational awareness. DEFONEOS C2 is built on FreeTAKServer with a Cesium frontend.
C2
FreeTAKServer (FTS)
Open-source implementation of the TAK (Team Awareness Kit) protocol. DEFONEOS uses FTS as its C2 backbone. Supports CoT (Cursor on Target) messages, ATAK/WinTAK/iTAK clients, and civilian team coordination. Federated: multiple FTS instances can share tracks.
C2
CoT (Cursor on Target)
The XML message format used by TAK/FreeTAKServer for sharing tactical information. Each CoT event includes: uid, type, point (lat/lon/ce/le), detail (contact, remarks, track). Consumed by ATAK clients and the DEFONEOS COP.
Protocol
ATAK
Android Team Awareness Kit โ€” the primary field client for TAK. Runs on Android phones/tablets. Shows team positions on a map, supports chat, overlays, and sensor feeds. DEFONEOS integrates via FTS CoT bridge.
C2
Mission Package
A TAK data container (ZIP) containing overlays, routes, points, and files shared between C2 nodes. DEFONEOS auto-generates mission packages from ISR data for distribution to field teams.
C2

๐Ÿ‡ฌ๐Ÿ‡ง UK Military & Compliance

JSP 936
Joint Services Publication 936 โ€” the UK MOD's policy for safe and ethical AI in defence. Covers: AI lifecycle governance, human-in-the-loop requirements, testing & evaluation, data governance, and deployment approval. DEFONEOS includes a JSP 936 compliance generator (v0.1).
Compliance
DASA
Defence and Security Accelerator โ€” the UK MOD's innovation funding body. Provides grants for dual-use technology development. DEFONEOS DASA application draft ready (Yorkshire flood response scenario). Typical grant: ยฃ50K-ยฃ250K.
Funding
NATO DIANA
Defence Innovation Accelerator for the North Atlantic โ€” NATO's dual-use technology acceleration programme. DEFONEOS DIANA application draft ready (sovereign ISR platform for allied interoperability). Provides access to 200+ test centres across 32 nations.
Funding
UKDI
UK Defence Innovation โ€” the MOD's organisation for defence technology innovation. Regional Engagement Teams connect local companies with defence opportunities. DEFONEOS outreach draft ready for Yorkshire/Humber representative.
Contact
Cyber Essentials
UK government-backed cybersecurity certification scheme. Mandatory for MOD contracts. Five controls: firewalls, secure configuration, access control, malware protection, patch management. Cost: ยฃ320-ยฃ600. DEFONEOS implements all five by design.
Compliance
SC Clearance
Security Clearance (Static Check) โ€” the UK government vetting level required for access to SECRET material. Takes 4-6 months. Requires: British citizenship, 5-year residency, background check. DEFONEOS architecture is SC-clearable (all data stays sovereign).
Compliance
DSP
Defence Sourcing Portal โ€” the UK MOD's online procurement platform. Supplier registration is required to bid on MOD contracts. Registration requires company info, financial standing, and capability statements.
Procurement
DSRB
Defence Science Reference Board โ€” NATO advisory body for defence science priorities. DEFONEOS outreach draft prepared for DSRB engagement on sovereign AI standards.
Contact
AUKUS
Trilateral security partnership between Australia, UK, and US. Pillar 2 covers advanced capabilities including AI, quantum, and undersea systems. DEFONEOS is positioned as "AUKUS-compatible" โ€” interoperable with allied AI systems while maintaining UK sovereignty.
Alliance
Five Eyes (FVEY)
Intelligence alliance: UK, US, Canada, Australia, New Zealand. DEFONEOS architecture supports Five Eyes information sharing via SIGIL chain federation โ€” each nation runs its own sovereign node with selective audit sharing.
Alliance
DSA
Defence and Security Accelerator open call โ€” rolling funding opportunity for innovative defence tech. DEFONEOS targets the "AI for Resilience" theme.
Funding
DEFCON
Defence Readiness Condition โ€” graduated alert levels. DEFONEOS maps these to operational modes: DEFCON 5 (normal), DEFCON 4 (increased vigilance, ISR boost), DEFCON 3 (elevated, swarm deploy), DEFCON 2 (high, C2 active), DEFCON 1 (maximum, full autonomous).
Military
ISTAR
Intelligence, Surveillance, Target Acquisition, and Reconnaissance โ€” the full-spectrum capability chain. DEFONEOS covers ISR (surveillance/reconnaissance) but explicitly does NOT include targeting (per red lines: no kinetic-targeting patterns).
ISR
MEDDEC
Medical Decision Support โ€” one of DEFONEOS's 12 domain clusters. Covers: triage prioritisation, medical supply logistics, telemedicine relay, casualty tracking. Civilian first, dual-use.
Domain
C-UAS
Counter-Unmanned Aerial Systems โ€” DEFONEOS domain for detecting, tracking, and mitigating hostile drone threats. Includes RF detection, radar, optical tracking, and jamming coordination. Defensive only โ€” no kinetic interdiction.
Domain
OPGEN
Operational Generation โ€” the UK RAF term for generating combat-ready forces. DEFONEOS supports OPGEN planning via mission simulation, resource optimisation, and readiness reporting.
Military
JDL
Joint Doctrine Publication (UK) โ€” the foundational documents for UK military operations. DEFONEOS JSP 936 compliance maps to relevant JDL publications (JDP 0-30, JDP 2-00, JDP 3-00).
Compliance
MATT
Military Annual Training Target โ€” mandatory training objectives. DEFONEOS training academy certifications (DFO-CO through DFO-CC) align with MATT requirements.
Training

๐Ÿ” Sovereign Identity & Trust

W3C DID
Decentralized Identifier per W3C specification. DEFONEOS uses DIDs for sovereign identity: did:csoai:defoneos-001. Each DID has an Ed25519 verification method. Resolvable to a DID document containing public keys and service endpoints.
Identity
DEFONEOS-SEAL
The certification credential issued by the BFT-33 council after successful 23/33 vote. Proves a component, deployment, or integration meets DEFONEOS security, sovereignty, and compliance standards. Ed25519-signed, verifiable via public key.
Cert
Sovereignty
The principle that DEFONEOS operates under exclusive UK control. No foreign entity can: access data, modify code without UK consent, disable the system, or exfiltrate telemetry. Enforced cryptographically: all keys generated locally, all signatures verifiable independently.
Core
Air-Gapped Deployment
A DEFONEOS deployment with zero network connectivity to the outside world. All updates via physical media (USB, HDD). SIGIL chain syncs when connectivity is restored. Maximum sovereignty. Procedure: generate deployment package on connected node, transfer via signed USB, verify Ed25519 checksum, install.
Deploy
Red Lines
Immutable constraints that DEFONEOS will never autonomously cross: (1) No kinetic targeting, (2) No personal surveillance, (3) No unverified alliance claims, (4) No SEAL credential without BFT vote, (5) No DSEI booth without pilot letter, (6) No reference to defonos.io domain, (7) No compartment mixing. Enforced at the architectural level.
Safety

๐Ÿ“Š Data Sources & Standards

Sentinel Hub
ESA/Copernicus satellite imagery API. DEFONEOS MCP server provides: optical (Sentinel-2), radar (Sentinel-1), and thermal (Sentinel-3/Landsat) imagery. Free tier: 1000 requests/month. Used for terrain analysis, flood mapping, and vessel detection.
Data
AIS (Automatic Identification System)
Maritime vessel tracking system. DEFONEOS MCP server ingests AIS data from aisstream.io for real-time ship positions, course, speed, and vessel metadata. Coverage: global. Update rate: 2-10 seconds for Class A transponders.
Data
ADS-B
Automatic Dependent Surveillance-Broadcast โ€” aircraft tracking. DEFONEOS ingests via OpenSky Network. Coverage: global, ~20,000 aircraft tracked simultaneously. Update rate: 1 second. Fields: ICAO24, callsign, lat/lon, altitude, velocity, heading.
Data
OS Open Data
Ordnance Survey open datasets: OS Open Greenspace, OS Open Roads, OS Open Rivers, OS Open Zoomstack. DEFONEOS MCP server provides map tiles, gazetteer lookup, and terrain data. Crown Copyright but free for use.
Data
OpenAq
Global open air quality data platform. DEFONEOS MCP server provides PM2.5, PM10, O3, NO2, SO2, CO readings from 15,000+ monitoring stations in 120+ countries. Used for environmental monitoring and CBRN detection.
Data
GDELT
Global Database of Events, Language, and Tone โ€” monitors world news in real-time. DEFONEOS MCP server queries GDELT for OSINT: event detection, sentiment analysis, actor extraction. 300+ million events since 1979.
Data
CZML
Cesium Language โ€” JSON-based format for describing time-dynamic 3D scenes. DEFONEOS uses CZML to stream sensor detections, unit tracks, and mission overlays to the Cesium COP. Supports polylines, points, billboards, and custom properties.
Format
GeoJSON
Geospatial data interchange format based on JSON. DEFONEOS uses GeoJSON for area definitions, sensor footprints, and static map overlays. RFC 7946 compliant. Supported by all major GIS tools.
Format
STANAG
NATO Standardization Agreement โ€” technical standards for allied interoperability. DEFONEOS is designed to be STANAG-compliant for messaging (STANAG 5501/Link 16), imagery (STANAG 4559/NVG), and geographic data (STANAG 4559/VMF).
Standard

๐Ÿง  AI & Machine Learning

Mamba-2
State-space model architecture for efficient sequence processing. DEFONEOS uses Mamba-2 for long-context compression: 16-dimensional state vector captures arbitrary-length input history. O(n) inference complexity (vs O(nยฒ) for transformers). Used in the OOWM right-brain perception layer.
AI
MoE (Mixture-of-Experts)
Architecture where multiple specialist models ("experts") handle different input types. DEFONEOS left-brain MoE routes queries to the best expert: reasoning (DeepSeek), code (Falcon3), fast routing (Qwen 2.5), multimodal (Moondream). Only 2-3 experts active per query = efficiency.
AI
Kalman Filter
Optimal recursive estimator used by DEFONEOS sensor fusion to track moving objects from noisy multi-sensor observations. Extended Kalman Filter (EKF) for nonlinear systems. Maintains position + uncertainty estimates. Update rate: 10Hz.
AI
INT8 Quantization
Compressing neural network weights from FP32 to INT8 (8-bit integers). Reduces model size 4x and inference latency 2-3x with <1% accuracy loss. DEFONEOS YOLOv8 models support INT8 for edge deployment. Nano: 3.2MBโ†’0.8MB, 8msโ†’3ms latency.
Perf
NMS (Non-Maximum Suppression)
Post-processing step in object detection that removes overlapping bounding boxes, keeping only the highest-confidence detection per object. DEFONEOS uses IoU threshold 0.45. Applied after YOLOv8 inference.
AI
mAP50
Mean Average Precision at IoU threshold 0.50 โ€” the standard object detection accuracy metric. DEFONEOS YOLOv8 Medium achieves mAP50=0.9234 on the evaluation set (6 classes: vehicle, vessel, aircraft, person, structure, animal).
Metric
Dempster-Shafer Theory
Mathematical framework for reasoning under uncertainty. DEFONEOS sensor fusion uses D-S to combine evidence from multiple independent detectors into a fused confidence score. Handles "unknown" classes better than Bayesian fusion.
AI

๐Ÿš€ Deployment & Operations

Connected Deployment
DEFONEOS deployment with full network connectivity. All 30 MCP servers active. Real-time SIGIL chain sync. Cloud integration for heavy compute. C2 federated with allied nodes. Default for HQ installations.
Deploy
Disconnected Deployment
DEFONEOS deployment on a local network with no internet. 12 core MCP servers active. SIGIL chain accumulates locally, syncs on reconnection. C2 operational within the local network. Used for field operations.
Deploy
Ruggedised Node
A DEFONEOS edge node built for harsh environments: IP67 enclosure, MIL-STD-810H compliant, -20ยฐC to +60ยฐC operating range, shock/vibration resistant. Typical: Jetson Orin AGX in rugged case with PoE camera inputs.
Deploy
MAVLink
Micro Air Vehicle Link โ€” the communication protocol between PX4 autopilots and ground stations. DEFONEOS uses MAVLink for drone telemetry, commands, and mission uploads. Supports 200+ message types. Bandwidth: 9600 bps minimum.
Protocol
Terraform
Infrastructure-as-code tool used to provision DEFONEOS deployments. A single terraform apply provisions: VPC, Kubernetes cluster, GPU node pool, SIGIL database, MCP federation, Cesium server, FreeTAKServer, monitoring stack. 15-step deployment runbook.
DevOps
DORA
Defence and Overseas Development Act โ€” UK export control for defence articles. DEFONEOS is ITAR-free (no US export-controlled tech) but subject to UK export licensing for certain capabilities.
Compliance

๐ŸŽฏ DEFONEOS Domains

12 Domain Clusters
The organisational structure of DEFONEOS MCP servers: ISR (4 MCPs), C2 (3), Swarm (3), Cyber Defence (3), Fusion (2), Logistics (2), Medical (2), Comms (2), Intelligence (2), Training (2), Engineering (2), Compliance (3). Each cluster has its own performance profile and deployment requirements.
Core
MEDLOG
Medical Logistics โ€” DEFONEOS domain covering medical supply chain management, cold chain monitoring, blood bank tracking, and pharmaceutical distribution. MCP servers: medlog-mcp, medevac-mcp.
Domain
CBRN
Chemical, Biological, Radiological, and Nuclear defence. DEFONEOS domain integrating OpenAQ sensor data, HazMat modelling, and evacuation planning. Defensive only โ€” detection and warning, not response.
Domain
HADR
Humanitarian Assistance and Disaster Relief. DEFONEOS's primary civilian-first use case. Yorkshire flood response demo: satellite flood mapping, drone damage assessment, swarm search patterns, medical logistics, C2 coordination. The scenario used in DASA and NATO DIANA applications.
Domain
LOGISTICS
DEFONEOS domain for supply chain management: inventory tracking, route optimisation, convoy planning, and resupply scheduling. MCP servers: logistics-mcp, convoy-mcp.
Domain
COMMS
DEFONEOS domain for tactical communications: radio relay, mesh networking, satellite comms, and message routing. MCP servers: mqtt-bridge-mcp, comms-relay-mcp. Supports disconnected operations with store-and-forward.
Domain
CYBER
DEFONEOS domain for defensive cyber operations: network monitoring, intrusion detection, threat hunting, and vulnerability scanning. NOT offensive. MCP servers: ids-mcp, siem-mcp, vulnscan-mcp. Integrated with SIGIL chain for audit.
Domain
INTEL
DEFONEOS domain for intelligence analysis: OSINT aggregation, pattern detection, link analysis, and intelligence reporting. MCP servers: osint-mcp, intel-fusion-mcp. Human-in-the-loop for all assessments.
Domain
TRAINING
DEFONEOS domain for simulation and training: scenario generation, after-action review, performance metrics. MCP servers: sim-engine-mcp, aar-mcp. Supports the 5-track certification academy (DFO-CO through DFO-CC).
Domain
ENGINEERING
DEFONEOS domain for systems engineering: configuration management, deployment automation, health monitoring. MCP servers: config-mcp, deploy-mcp. Terraform + Ansible integration.
Domain
COMPLIANCE
DEFONEOS domain for regulatory compliance: JSP 936 generation, audit trail verification, policy enforcement. MCP servers: jsp936-mcp, compliance-check-mcp, audit-mcp. The SIGIL chain is the compliance evidence store.
Domain

๐Ÿ“‹ Additional Terms

Fusion Centre
The DEFONEOS component that receives, correlates, and fuses multi-source sensor data. Input: satellite, drone, maritime, ground, OSINT. Output: fused track database feeding the COP. Processing: Kalman filter + Dempster-Shafer + heuristic rules.
ISR
Ouroboros Loop
The sovereign self-improvement cycle: SIGIL event โ†’ Mamba compression โ†’ wisdom extraction โ†’ action โ†’ SIGIL event. DEFONEOS uses this for continuous operational learning without external data egress.
AI
DFO-CO / CD / CA / CS / CC
DEFONEOS certification tracks: DFO-CO (Certified Operator, 16h), DFO-CD (Certified Developer, 32h), DFO-CA (Certified Architect, 24h), DFO-CS (Certified Security, 28h), DFO-CC (Certified Commander, 20h). 47 modules total, 120h training.
Training
Tick
A single execution cycle of the DEFONEOS sprint controller. Each tick: check state โ†’ build (3 MCPs or 3 pages) โ†’ deploy โ†’ verify โ†’ SIGIL โ†’ update state. Autonomous, every 2 hours.
Ops
Compartment Doctrine
The rule that meok-defoneos (builds), csoai-defoneos (certifies), and dagon (legacy) are NEVER mixed. No cross-linking of code, IP, or public surfaces. Enforced at repository, DNS, and branding level.
Safety
RTSP
Real-Time Streaming Protocol โ€” used by DEFONEOS for IP camera feeds. MCP server wraps RTSP streams for AI processing. Supports H.264/H.265, adaptive bitrate. Latency: 200-500ms typical.
Protocol
MQTT
Message Queuing Telemetry Transport โ€” lightweight pub/sub protocol for IoT. DEFONEOS MCP server bridges MQTT sensors (temperature, pressure, motion) into the fusion pipeline. QoS 0-2.
Protocol
Companies House
UK government registry of companies. DEFONEOS MCP server queries company data: registration, directors, filings, insolvency. Used for due diligence on contractors and partners. CSOAI Ltd registered: 16939677.
Data
ONS
Office for National Statistics โ€” UK government statistics body. DEFONEOS MCP server provides census data, economic indicators, population demographics. Used for HADR planning and resource allocation.
Data
OpenStreetMap (OSM)
Collaborative open-source map of the world. DEFONEOS uses OSM for base map data: roads, buildings, points of interest, administrative boundaries. Updated by millions of contributors. Free for all uses.
Data
Jetson Orin
NVIDIA's edge AI computing platform. DEFONEOS field nodes use Jetson Orin AGX (64GB) or Orin Nano (8GB). Power: 15-60W. Performance: 40-275 TOPS. Supports CUDA, TensorRT, INT8 quantisation for YOLOv8.
Hardware
Playwright
Browser automation framework used by DEFONEOS for E2E testing. 47 test scenarios covering: ISR pipeline, C2 messaging, SIGIL chain verification, BFT voting, COP rendering. Runs in CI/CD on every commit.
Testing
Hypothesis (property testing)
Python library for property-based testing. DEFONEOS uses 389 property tests: SIGIL chain integrity under arbitrary inputs, YOLOv8 NMS boundary conditions, BFT consensus with random byzantine agents.
Testing
Schemathesis
API contract testing tool. DEFONEOS runs 234 contract tests against the 87 REST endpoints. Validates OpenAPI spec compliance, edge cases, and error handling automatically.
Testing
DEFONEOS Charter
The foundational governance document defining DEFONEOS principles, red lines, decision-making processes, and accountability. Ratified by BFT-33 council. Amenable only via 28/33 constitutional threshold. Public at defoneos-charter.html.
Core
Digital Twin
A virtual replica of a real-world area used for simulation and planning. DEFONEOS Digital Twin of Yorkshire: 11,897 kmยฒ terrain, 5.4M population, flood modelling, infrastructure mapping. Built on Cesium + OSM + Sentinel-2 imagery.
ISR
TAK Server Federation
The ability of multiple FreeTAKServer instances to share tracks and CoT messages across organisational boundaries. DEFONEOS supports federation for coalition operations: UK node shares with AUKUS partners selectively.
C2
COP Refresh Rate
How often the Common Operating Picture updates with new data. DEFONEOS: 10Hz (100ms per refresh). Tracks: position updates from all sensors. Overlays: ISR detections, threat zones, mission boundaries.
Perf
GCCHQ
Government Communications Headquarters โ€” UK's intelligence and security organisation. DEFONEOS Cyber domain aligns with NCSC (National Cyber Security Centre, part of GCHQ) guidelines for defensive operations.
Contact
NCSC
National Cyber Security Centre โ€” UK's technical authority on cybersecurity. Part of GCHQ. Issues Cyber Essentials certification, security guidance, and vulnerability alerts. DEFONEOS implements NCSC's 10 Steps to Cyber Security.
Compliance
ITAR
International Traffic in Arms Regulations โ€” US export control for defence articles. DEFONEOS is ITAR-FREE: no US-origin controlled technology. This enables sale to non-US allies without US State Department approval.
Compliance
Dual-Use
Technology with both civilian and military applications. DEFONEOS is positioned as dual-use: HADR (civilian), ISR/C2 (military). This enables access to both DASA (military funding) and civilian innovation grants.
Core
Sovereign by Design
The DEFONEOS design principle that sovereignty is an architectural property, not a policy. Keys generated locally. Data never leaves the boundary. No vendor kill switches. No external telemetry. Verified by independent audit.
Core
Right-Brain / Left-Brain
DEFONEOS cognitive architecture metaphor. Left-Brain = MoE reasoning, logic, analysis. Right-Brain = MOM perception, sensor fusion, spatial awareness. Sovereign Brain = synthesis of both. Based on OOWM architecture.
AI
Turiya
The meta-monitoring layer in DEFONEOS consciousness architecture. Observes all subsystems (left-brain, right-brain, sovereign brain) for coherence, bias, and anomalies. Named after the fourth state of consciousness in Vedantic philosophy.
AI
MAP-Elites
Quality-diversity algorithm used by DEFONEOS creative engine to explore diverse solution strategies. Maintains a grid of solutions across multiple dimensions (novelty ร— quality ร— care). Ensures DEFONEOS doesn't get stuck in local optima.
AI
After-Action Review (AAR)
Post-mission analysis process. DEFONEOS automates AAR: SIGIL chain replay, timeline reconstruction, decision point analysis, outcome scoring, lessons-learned extraction. Stored in training database for future reference.
Training
Crowdsource Fix
The DEFONEOS model for community-driven bug fixes. All code is open-source on GitHub. Fixes merged via BFT-33 review. Each fix generates a SIGIL entry for audit. Contributors earn wisdom points.
Core
Wisdom Points
Gamification metric in the DEFONEOS ecosystem. Earned by: submitting fixes (+10), completing training modules (+50), publishing MCP servers (+100), contributing to charter (+200). Leaderboard at sov-leaderboard. Transferable between users.
Engagement
Snowflake MCP
An MCP server built specifically for a single customer's custom data source. DEFONEOS supports customer-specific MCP servers that integrate with proprietary systems (e.g., existing MOD databases). Not part of the public 30-MCP federation.
MCP
SIGIL Digest
A SHA-256 hash that uniquely identifies a SIGIL line: SHA256(actor|action|result|prev_hash). Used for quick lookup, deduplication, and referencing specific audit entries. Format: 64 hex characters.
Security
DEFONEOS Guard
The automated safety system that enforces red lines. Monitors all MCP calls, SIGIL emissions, and C2 commands. Blocks any action matching a red-line pattern. Escalates violations to BFT-33 council for immediate review.
Safety
Pilot Letter
A letter of intent from a UK prime contractor or government agency expressing interest in piloting DEFONEOS. Required before DSEI booth participation, large grant applications, or strategic partnership announcements. Must be on file, signed.
Business
DSEI
Defence and Security Equipment International โ€” the UK's largest defence exhibition. Held biennially at ExCeL London. DEFONEOS will NOT exhibit without a named UK-prime pilot letter on file.
Event
Operational Mode
DEFONEOS can operate in: Training Mode (simulated data, no live sensors), Exercise Mode (live sensors, no real-world effects), Operational Mode (full capability, human-in-the-loop for all kinetic-adjacent decisions), Emergency Mode (relaxed governance for immediate HADR response, requires post-hoc BFT ratification within 72h).
Ops