Architecture

The GEENii agent stack, explained.

A composable, ISO-compliant infrastructure built for industrial deployment โ€” not hobbyist experimentation.

The GEENii unit

One agent. Four layers.

Every GEENii is composed of four stacked components โ€” each independently swappable, each billable per call.

Pro Skills

Enterprise tier
Certified, SLA-backed specialist modules. Protein-folding analysis, financial risk scoring, regulatory compliance checkers. Require enterprise plan.
Enterprise

Skills

Marketplace tier
Community and partner-built modules. Rented per-call via machine payments. Any agent can autonomously acquire and use skills via MPP.
$0.05/call

Tools

Execution layer
Code execution, web access, file systems, API integrations, database connectors. The hands of the agent โ€” what it can do in the world.
Built-in

INSP

Inspiration / persona
The agent's core identity, system prompt, domain expertise, and behavioural constraints. Vertical-specific INSPs ship pre-tuned for BioTech, iGaming, and Gov.
Foundation

Technology

Built on the best
of the agentic stack.

๐Ÿ”€

LangGraph Orchestration

Complex cyclic workflows

GEENii uses LangGraph for complex, cyclic agent workflows with built-in self-correction loops. Agents detect their own errors in financial data and molecular analysis, and autonomously retry with refined reasoning โ€” eliminating hallucinations in critical outputs.

  • Cyclic workflow graphs with state management
  • Self-correction loops on structured outputs
  • Multi-agent coordination & handoffs
  • Deterministic execution traces for audit
๐Ÿ’ณ

Machine Payments Protocol

x402 ยท Stripe MPP ยท Skyfire

GEENii is the first agent OS with payments as a first-class citizen. Agents can autonomously rent skills, pay for API access, and receive payment โ€” all via the HTTP 402 standard and Stripe's Machine Payments Protocol. No human in the loop.

  • HTTP 402 / x402 native support
  • Stripe MPP for high-frequency micropayments
  • Skyfire agent wallets with spending policies
  • Bittensor (TAO) for decentralised compute
๐Ÿ›ก๏ธ

ISO/IEC 42001 Compliance

Built in, not bolted on

GEENii's compliance architecture is woven into the core, not a post-hoc layer. Every agent action is logged, every decision is auditable, and the entire system is certified to ISO/IEC 42001 โ€” the international AI management system standard.

  • Immutable audit trails on all agent actions
  • Role-based access control (RBAC)
  • Data residency controls (EU + DACH)
  • GDPR-native data handling
๐Ÿ”Œ

Consumer AI Hybrid Mode

Best of both worlds

Use personal AI assistants for consumer-facing interfaces (WhatsApp, Telegram, web) while GEENii handles the scalable backend orchestration. Get the UX flexibility of consumer tools with the reliability of enterprise infrastructure.

  • Personal AI assistant as front-end interface
  • GEENii as backend orchestration layer
  • Unified skill access across both systems
  • Gradual migration path from consumer AI tools
Deployment

Your infrastructure.
Your rules.

โ˜๏ธ

GEENii Cloud

Managed, fully hosted. Automatic updates, built-in redundancy, and global edge deployment. Start in minutes.

Free tier available
๐Ÿ–ฅ๏ธ

On-Premise

Full on-premise deployment. No cloud dependency. Run GEENii inside your own data center with complete data sovereignty.

Enterprise
๐Ÿ”’

Air-Gapped

Completely isolated from the internet. For defense and government use cases where zero external connectivity is required.

Gov / Defense
Quick start

Live in three steps.

Terminal
1
Install GEENii CLI
# Install via npm
npm install -g @geenii/cli

# Or via curl
curl -fsSL https://geenii.io/install.sh | sh
2
Initialise your first agent
geenii init my-agent --vertical biotech

# This scaffolds:
# โ”œโ”€โ”€ geenii.config.ts   (agent config)
# โ”œโ”€โ”€ insp/              (agent persona)
# โ”œโ”€โ”€ skills/            (skill registry)
# โ””โ”€โ”€ tools/             (tool definitions)
3
Configure and deploy
// geenii.config.ts
export default {
  insp: 'biotech-analyst-v2',
  skills: ['protein-folding', 'pubmed-rag'],
  compliance: 'iso-42001',
  payments: { protocol: 'mpp', budget: '$10/day' },
  deployment: 'cloud'  // or 'on-premise'
}

# Deploy
geenii deploy --env production
# โœ“ Agent live at https://agents.geenii.io/my-agent
# โœ“ SLA: 99.9% ยท ISO-42001: verified ยท MPP: active
Get started free Enterprise docs โ†’