The AI Cloud OS

Run AI like it's native to your cloud.

imperal.io is the first complete implementation of ICNLI โ€” the open protocol where AI agents live inside the kernel, not on top of it. Write one function; the OS handles authorization, isolation, audit, retries, and chain orchestration.

Read the docs

Welcome to Web 3.0.3 โ€” three patches past the hype.

A new category

AI Cloud OS โ€” and we built the first one.

Other platforms ship an AI you have to trust. We ship an OS the AI runs inside. Six properties separate an AI Cloud OS from a plugin store โ€” imperal.io is the first to satisfy all six.

Other platforms ask the AI to behave.

Tool-use protocols. Agent libraries. Plugin stores owned by one vendor. Every safety guarantee lives on the honor system โ€” your code, your audit, your problem.

We built the kernel that contains it.

Every action the AI takes passes through a federal contract โ€” authorization, per-user isolation, audit ledger, anti-hallucination invariants โ€” before your extension code runs. The same way Linux contains a network driver.

Anyone can implement ICNLI. We're the first who shipped.

Infrastructure Contextual Natural Language Interface โ€” the open protocol we authored at icnli.org under CC BY-SA 4.0. Deployed, multi-tenant, federally-contracted, in production. First of its kind.

For skeptics, see the six-property test, named-alternative scoring, and engineering receipts in Why this is the AI Cloud OS.

The agent

Webbee โ€” cloud-modular by design, proactive by default.

Two more firsts in one agent. Both structural, neither bolt-on.

First cloud-modular AI agent

Capabilities arrive like packages, not plugins.

Every other AI today is a closed monolith with a bolted-on plugin store owned by one vendor. Webbee gains capabilities the way an OS does โ€” through federally-contracted extension packages authored by anyone, installable per-user, runtime-dynamic, LLM-provider-agnostic.

First proactive AI agent by design

Speaks first when something changes.

ChatGPT, Claude, Gemini โ€” all reactive. They wait for the user. Webbee is structural: ambient skeletons keep it aware, schedules let it act on time, webhooks let it react to events, and the platform owns chat-injection. No polling loops. No author plumbing.

The contract

Write one function. The OS handles the rest.

The same way a Linux developer doesn't write a network driver, you don't write your own AI-safety layer. Every imperal.io extension satisfies the federal contract โ€” 117+ named runtime invariants enforced at the kernel before your handler runs.

You write

pip install imperal-sdk

# my_extension/app.py
from imperal_sdk import Extension, ChatExtension, ActionResult
from pydantic import BaseModel, Field

class GreetParams(BaseModel):
    name: str = Field(description="Person to greet")

ext = Extension(
    "hello-world",
    version="1.0.0",
    display_name="Hello World",
    description="Demo extension.",
    icon="icon.svg",
    actions_explicit=True,
)

chat = ChatExtension(ext, tool_name="hello_world",
                     description="Friendly greetings.")

@chat.function("greet", action_type="read",
               description="Greet someone by name.")
async def greet(ctx, params: GreetParams) -> ActionResult:
    return ActionResult.success(
        data={"text": f"Hello, {params.name}! ๐Ÿ"},
        summary=f"Greeted {params.name}",
    )

The OS provides

  • โœ“Authentication & per-user isolation
  • โœ“RBAC scopes & confirmation gates
  • โœ“Audit ledger (federal retention class)
  • โœ“Retries, timeouts, cancellations
  • โœ“Long-running task delivery
  • โœ“Anti-hallucination invariants
  • โœ“Chain orchestration across extensions
  • โœ“Pydantic typed-args + LLM feedback loop

The marketplace

Build extensions. Earn real money.

imperal.io Marketplace is a real revenue surface โ€” not a vanity store. Every user action through your extension generates token flow; your developer_share accrues in real time, withdrawable to USD via Stripe Connect.

  • 70 โ€“ 95%
    Developer revenue share, across 4 tiers
  • Per-action
    Token-metered, accrues in real time
  • 2 โ€“ 7 days
    Stripe Connect payouts to USD

The OS shipped. The AI is inside.

Three patches past the hype. Real federal contract. Real marketplace revenue. Real production traffic.

Read the docs