GEIANT provides the delegation, jurisdiction, and audit layer that AI orchestrators don't have. Ed25519 identity. H3 jurisdictional binding. SHA-256 hash-chained audit trail. Framework-agnostic.
AI agents operate on OAuth tokens, API keys, and mutable log files — infrastructure designed for human users, not autonomous systems making thousands of decisions per hour across jurisdictions. Three structural gaps remain open.
Service accounts, API keys, and mutable log files. Designed for humans clicking buttons — not for autonomous agents making thousands of decisions per hour across jurisdictions.
Every agent gets an Ed25519 identity. Every action is checked against a delegation certificate before execution. Every operation produces a signed, hash-chained breadcrumb that no one can tamper with.
Every agent action passes through the same cryptographic pipeline — from identity provisioning to compliance report generation. Pre-flight enforcement, not post-hoc logging.
Ed25519 keypair generated. The public key is the identity — same key signs breadcrumbs, delegation certificates, and (optionally) Stellar transactions.
A human principal signs a certificate authorizing the agent: which H3 cells, which capabilities, until when. Verifiable offline — no server round-trip.
Before every tool call: Is the certificate valid? Is the H3 cell authorized? Is the capability in scope? If any check fails, the operation is blocked — not logged after the fact.
Tool executes. Agent signs the result with Ed25519. SHA-256 context digest of input + output. Chained to previous block. Written to audit store.
Breadcrumbs are periodically Merkle-rolled into epochs — compact, signed summaries. Compliance reports generated on demand for any time period.
Delegation certificates, breadcrumb chains, and H3 jurisdiction binding are regulation-agnostic by design. The compliance report endpoint formats evidence for whichever framework applies to your deployment.
Art. 12 requires automatic event recording traceable through the AI system's lifecycle. Art. 14 requires human oversight with "seamless chain traceable to a living person." Delegation certificates + breadcrumb chains satisfy both.
Federal executive order on AI safety. Colorado's algorithmic discrimination law. NIST AI Risk Management Framework. Fragmented but converging on the same requirement: prove what your AI did and who authorized it.
Already enforced. Requires algorithm registration, content traceability, and user identity verification. AI providers must maintain audit logs of generated content and decisions.
ISO 42001 (AI Management System) is available now for certification. SOC 2 Type II requires continuous monitoring evidence. GDPR Art. 22 requires proof of human oversight for automated decisions.
Start with the SDK for identity and compliance. Extend to the full runtime when agents need geospatial perception.
Install @gns-aip/sdk. Generate agent identity. Create delegation certificate. Every tool call drops a signed breadcrumb. Works with LangChain, CrewAI, OpenAI Agents, or any custom stack.
The complete GEIANT runtime adds perception: Sentinel-2 satellite imagery, Prithvi-EO flood detection, weather data, geospatial embeddings. Every observation cryptographically signed and audit-trailed.
Agents deployed across millions of smart meters. Every anomaly alert backed by satellite classification, weather context, and a cryptographic proof chain — no false positives without physical evidence.
Agents manage fiber cabinets, splice points, and customer premises equipment. Each piece of infrastructure gets a permanent geographic address. Maintenance events are timestamped, signed, and anchored.
The GEIANT perception service is deployed on Railway with audit breadcrumbs stored in MobyDB — every breadcrumb Ed25519-signed, Merkle-sealed per epoch, and queryable via MobyQL. Compliance reports available via HTTP endpoint.
Self-hostable SDK under Apache 2.0 and MIT. Managed platform for teams that need infrastructure, SLA, and dedicated support.
The SDK is the standalone identity and delegation layer — open source, framework-agnostic, and deployable in under 10 minutes. LangChain, CrewAI, OpenAI Agents, or custom stacks.
Every AI agent that runs code, queries data, or takes action needs to answer three questions a regulator will eventually ask: Who authorized this agent? What scope was it given? Can you prove it?
The SDK answers all three with Ed25519 cryptographic identity, signed delegation chains, and a virtual breadcrumb trail — without recording prompts or outputs. The identity primitive is the same whether the agent runs in the cloud, at the edge, or in the full GEIANT geospatial runtime.
→ Full developer docs at docs.geiant.com// npm install @gns-aip/sdk import { generateAgentIdentity, createDelegationCert, createVirtualBreadcrumb } from '@gns-aip/sdk'; // 1. Provision: create agent identity (Ed25519 keypair) const agent = generateAgentIdentity(); // 2. Delegate: human principal authorizes the agent const cert = await createDelegationCert({ agentIdentity: agent.publicKey, principalIdentity: human.publicKey, territoryCells: ['851e8053fffffff'], // Rome metro facetPermissions: ['energy'], validityHours: 720, }, human.secretKey); // 3. Operate: every tool call drops a signed breadcrumb const crumb = await createVirtualBreadcrumb({ agentIdentity: agent.publicKey, operationCell: '851e8053fffffff', meta: { operationType: 'weather_query', delegationCertHash: cert.certHash, facet: 'energy', withinTerritory: true }, }, agent.secretKey, null); // null = genesis block
// npm install langchain-gns-aip import { GNSAgentIdentity } from 'langchain-gns-aip'; // 1. Provision + delegate const id = await GNSAgentIdentity.provision({ domain: 'energy' }); await id.delegate(principalPk, { scope: { territoryCells: ['851e8053fffffff'], facets: ['energy'] } }); // 2. Wrap: every tool call now drops an audit breadcrumb const agent = id.wrap(myLangChainAgent); // That's it. Your existing agent is now governance-compliant. // Delegation certificate verifiable offline. // Breadcrumb chain verifiable by any third party. // Compliance report available on demand.
SDK vs. Full Runtime. The SDK gives you identity, delegation, and audit trails — works with any orchestrator. The full GEIANT runtime adds geospatial perception: satellite imagery, weather, flood detection, and a managed MCP server. Start with the SDK, scale to the runtime when you need the physical world.
The SDK is open source under Apache 2.0. The managed platform provides audit storage, compliance report generation, and GPU inference endpoints.
GEIANT is deployed with enterprise customers in the energy and telecom sectors. Describe your use case and a member of our team will respond within 24 hours.
A member of our team will reach out within 24 hours.
In the meantime, check out the developer docs and the SDK quick start.
No pitch decks. No sales process. Just a direct conversation about your deployment.