Sovereign Operating Systems and OSINT Protocols
SocialCap AI / Milliways is a fractionally scalable network intelligence ecosystem engineered for sovereign wealth funds, institutional allocators, and task forces. Operating as a politically neutral, decentralized data mirror, the platform maps the invisible web of global relational assets and elite mobility shifts without compromising Personally Identifiable Information (PII) or sovereign state compliance.
At the core of our architectural philosophy are three fundamental pillars:
The Milliways Agentic API provides a programmatic interface optimized for external LLMs and Autonomous AI Agents. It returns encrypted JSON schemas mapping institutional relational gravity and non-financial connectivity parameters without exposing Personally Identifiable Information (PII).
All requests require a Bearer token issued after KYB verification. Tokens are scoped per institution and rotate every 90 days.
Authorization: Bearer sc_live_zk_<your_institutional_token>
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/vectors/congruence | ZK-proof entity alignment score between two nodes |
| GET | /v1/hubs | List all 45 sovereign venue nodes with AUM metadata |
| GET | /v1/hubs/{id} | Full OSINT profile for a single hub node |
| GET | /v1/aviation/streams | Live charter flight corridors (ME↔APAC, TRANSATLANTIC, EU↔ME) |
| POST | /v1/graph/query | Graph traversal — find shortest Dunbar path between two entities |
| GET | /v1/synergy/matrix | 12×12 cross-entity synergy index (LP overlap, board, sovereign) |
{
"status": "success",
"query_node": "Sovereign-APAC-01",
"congruence_matrix": {
"target_node": "Sovereign-Nordic-01",
"congruency_score": 0.9842,
"dunbar_degree": 2,
"verified_channels": [
"regulatory_acra",
"public_pr_media",
"sovereign_mobility"
],
"aggregated_aum_b_usd": 14.9,
"proof_merkle_root": "0x7a91bf32cde8e50f3b..."
}
}Integrate Milliways directly into your agentic workflows using the official Python library. The SDK handles token refresh, ZK-proof validation, and streaming graph traversal without exposing PII at any layer.
pip install socialcap-sdk>=2.4.0
Requires Python 3.11+. No transitive dependencies on Pandas or heavy ML libs.
import socialcap
# Initialize — token rotates automatically every 90 days
client = socialcap.Client(api_key="sc_live_zk_992f")
# ZK-verified proximity check (no PII disclosed)
matrix = client.vectors.verify_congruence(
source_node="Sovereign-APAC-01",
target_node="Sovereign-Nordic-01",
min_confidence_level=0.95
)
print(f"Alignment Proved : {matrix.is_verified}") # True
print(f"Confidence Level : {matrix.confidence:.2%}") # 98.42%
print(f"Dunbar Degree : Ring-{matrix.dunbar_degree}") # Ring-2
print(f"ZK Merkle Root : {matrix.merkle_root[:20]}...")# Stream all APAC hubs above $3T AUM with LIVE or URGENT status
for hub in client.hubs.stream(
region="APAC",
min_aum_t_usd=3.0,
temporal_states=["LIVE", "URGENT"]
):
print(f"{hub.city:15s} {hub.aum:8s} {hub.temporal_state}")# stdout: Singapore $12.5T LIVE Hong Kong $3.5T URGENT Mumbai $4.1T URGENT
# Designed for LLM tool-use: returns serialisable dict
result = client.graph.shortest_path(
source="Sovereign-APAC-01",
target="Sovereign-EU-03",
max_hops=3,
verified_only=True # Only ZK-proven edges
)
# Serialize for GPT-4o / Claude tool_result
print(result.to_json())
# Output:
# {
# "path_length": 2,
# "hops": ["SIN", "DXB", "LDN"],
# "path_aum_total_t_usd": 31.5,
# "confidence": 0.961
# }import asyncio, socialcap
async def monitor_aviation():
async with socialcap.AsyncClient(api_key="sc_live_zk_992f") as client:
async for event in client.aviation.stream(corridor="ME_APAC"):
print(f"[{event.timestamp}] {event.route} {event.status}")
# [2026-06-07T14:21Z] DXB → SIN EN ROUTE
asyncio.run(monitor_aviation())The Milliways Data Refinery resolves the core challenge of multi-source entity duplication — matching inconsistent profile aliases across ACRA corporate registers, SEC filings, academic rosters, and public media into a single, verified graph node without exposing raw PII at any stage.
The engine computes a weighted congruence score across three dimensions. If the combined score exceeds the merge threshold, disparate hashes are collapsed into a single Sovereign Node and raw source data is purged.
ER_score(A, B) = 0.40 × jaro_winkler(name_hash_A, name_hash_B) // String similarity + 0.35 × shared_neighbors(A, B) / max_neighbors // Graph topology + 0.25 × co_event_appearances(A, B) / total_events // Conference co-presence merge_threshold = 0.88 // Nodes merged when ER_score ≥ 0.88 pii_scrub = True // Raw source strings purged post-merge
{
"node_id": "Sovereign-APAC-01",
"resolution_confidence": 0.994,
"source_cluster_count": 3, // Merged from 3 input domains
"pii_status": "SCRUBBED", // Raw strings purged
"dunbar_ring_1_count": 5,
"dunbar_ring_2_count": 12,
"dunbar_ring_3_count": 38,
"aum_b_usd": 12500,
"temporal_state": "LIVE",
"hub_city": "Singapore" // Non-PII geographic anchor retained
}Our R&D models specify that every verified connection, mobility shift, or LP board alignment is hashed via SHA-256 as a leaf in the Merkle Tree. The system continuously computes the Merkle Root. External institutional agents can verify the absolute validity of any connection path by executing a lightweight Merkle Proof validation against the root hash—confirming mathematical truth without decrypting transaction metadata or exposing identity.
[ Root R ] ← Published on-chain
/ \
[ H(L1∥L2) ] [ H(L3∥L4) ]
/ \ / \
[L1: SIN→DXB] [L2: DXB→LDN] [L3: Board] [L4: LP-overlap]
SHA-256 hash SHA-256 hash SHA-256 SHA-256
Proof for L1 = { H(L2), H(L3∥L4) } // 2 hashes, O(log N)
Verifier computes: H(H(L1∥L2) ∥ H(L3∥L4)) == R → VALID# Verify edge SIN→DXB exists in graph WITHOUT decrypting metadata
proof = client.zkp.verify_edge(
edge_hash="sha256:3f4a91bc...", # Hash of the claimed edge
merkle_root="0x7a91bf32cde8...", # Published root (on-chain)
sibling_path=["0x4bc1...", "0x9de3..."] # Path from API
)
print(f"Proof Valid : {proof.is_valid}") # True
print(f"Leaf Index : {proof.leaf_index}") # 0
print(f"Tree Height : {proof.tree_height}")# 18
print(f"PII Exposed : none") # Zero-knowledge guarantee| Standard | Jurisdiction | Status |
|---|---|---|
| PDPA 2012 | Singapore | COMPLIANT |
| GDPR Art. 25 | European Union | COMPLIANT |
| MAS Notice 655 | MAS Singapore | ALIGNED |
| FATF Rec. 16 | G20 / FATF | ALIGNED |
| ISO/IEC 27001 | International | PURSUING |
SocialCap AI is engineered to meet the highest global standards of data protection and privacy sovereignty. The platform's ZK-OSINT architecture operates on a zero-ingest model for raw PII — all data markers are hashed off-chain on client nodes before any graph resolution or Merkle root commitment.
| Regulation | Jurisdiction | Scope | Status |
|---|---|---|---|
| PDPA 2012 | Singapore | Primary jurisdiction | COMPLIANT |
| GDPR Art. 17/25 | European Union | Data minimisation & erasure | COMPLIANT |
| CCPA / CPRA | United States | California consumer rights | COMPLIANT |
| PIPL 2021 | China | Cross-border data transfer | ALIGNED |
| PDPL | Saudi Arabia / UAE | GCC sovereign data | ALIGNED |
| Privacy Act 1988 | Australia | APPs 1-13 framework | ALIGNED |
| POPIA 2013 | South Africa | BRICS-aligned processing | ALIGNED |
| FZ-152 | Russia | Local data residency | REVIEWED |
| LGPD | Brazil | Latin American data rights | ALIGNED |
| APPI (Revised) | Japan | East Asian sovereignty | ALIGNED |
External Source Data
│
▼ (client-side, off-chain)
SHA-256 Hash(entity_alias + jurisdiction_salt)
│
▼
Hashed Leaf → Merkle Tree Commit
│ No raw strings cross this boundary
▼
Graph Resolution Engine
│
▼
Sovereign Node (PII_STATUS: "SCRUBBED")Milliways.live operates under an architectural data-compliance framework aligned with Singapore's PDPA 2012. Access to commercial API environments is granted strictly under evaluation licenses after institutional KYB verification. All usage is logged and auditable.
| Tier | Permitted Use | Prohibited |
|---|---|---|
| Explorer | R&D, internal analysis, sandbox testing | Commercial resale, public distribution |
| Institutional | Investment due diligence, sovereign fund workflows | Sub-licensing, competitive benchmarking |
| Sovereign | Full graph access, custom ER pipeline, white-label | Only per custom MSA agreement |