Wire.Band is semantic compression middleware that transforms structured data into a compact binary protocol using 240 emergent theta (θ) symbols. Where gzip compresses bytes, Wire.Band compresses meaning — achieving 60x ratios on structured payloads with sub-millisecond translation.
Core Innovation
**240 theta symbols across 14 semantic families** form a universal vocabulary for structured data:
- >SYS, NOUS, ERGON, WORK, SWARM, IDENTITY
- >GOVERNANCE, AUTHORITY, THETA, HIVEMIND
- >INGEST, EMIT, TRANSFORM, ORACLE
Each symbol encodes a semantic concept, not just a byte pattern. The binary frame format (magic header `0xAE05`) enables schema-free, version-aware compression.
Key Features
- >60x Compression: 888 bytes → 104 bytes on structured JSON (88.27% reduction)
- >Sub-Millisecond Speed: 0.11–0.163ms average translation latency
- >100% Semantic Preservation: Lossless round-trip verification on every frame
- >Three Packages: Private FastAPI server + Python edge client (PyPI v0.3.0, zero private deps) + Rust edge client (crates.io v0.4.0, PyO3 bindings)
- >Optional Encryption: AES-256-GCM or ChaCha20-Poly1305 with HKDF key derivation per frame
- >Multi-Format: JSON, XML, YAML, Protobuf, binary, HTTP, WebSocket
Semantic Intelligence Byproduct
Wire.Band's translation cache generates a valuable intelligence layer: - **Symbol fingerprints** with first-seen / last-seen timestamps and occurrence counts - **Novelty detection**: instantly flag payloads with symbols never seen before in a domain - **Cross-domain correlation**: patterns that appear in both IoT and DeFi data streams - **Anomaly scoring**: statistical deviation from domain baselines
Use Cases
- >IoT Sensor Networks: Reduce bandwidth across thousands of constrained devices
- >AI Agent Communication: Compress inter-agent messages for multi-agent swarms
- >DeFi Data Feeds: High-frequency market data with deterministic encoding
- >Legal / Compliance: Structured document compression with audit trails
- >Edge Computing: Rust client runs with zero server dependency on resource-constrained hardware
Tech Stack
FastAPI server with Redis caching and MQTT bridge. Python edge client (pure Python, PyPI). Rust edge client with PyO3 FFI bindings for Python interop. Binary frame protocol with adaptive codebook. HKDF-based per-frame key derivation for optional encryption.