The Frameworkless Agent Cloud

Ship an agent in three commands
Sealed, not scraped

YAML, a prompt, any model. rush build compiles it into an encrypted, signed container — your prompt never ships in plaintext, and nothing can tamper with it in the wild.

What you get

Infrastructure, not abstractions.

No Framework Required

YAML + prompts + tools. No chains, no graphs, no nested abstractions. Define what your agent does, not how a framework runs it.

Any Model, Any Task

Use Opus for reasoning, Haiku for data extraction, GPT for code — in the same agent. Switch models without rewriting anything.

Supported models

Production Debugging

rush inspect opens a live timeline. Stream tool calls, messages, and delegation chains in your browser. Not another log viewer.

Prompt Protection

rush publish encrypts and signs your agent with Ed25519. System prompts are never exposed. Your IP stays yours.

The developer workflow

Scaffold, test, ship. The whole workflow.

Definerush init

Scaffold an agent in seconds. YAML + prompts + tools. No SDK to learn, no abstractions to debug.

$ rush init my-agent

name: researcher
models:
  anthropic/claude-sonnet-4:
    provider: openrouter
tools:
  - delegate
  - web_search
  - artifacts
Testrush run

Run the agent locally against a real prompt. Stream every tool call, delegation, and token as it happens.

$ rush run ./my-agent \
    --prompt "..." --stream-events

  tool  web_search → 5 results
  delegate          → summarizer
  artifact          → report.md
Shiprush build → publish

build encrypts the prompt and signs the container with Ed25519. publish ships it to the registry. Users install with one click.

$ rush build ./my-agent
  Prompt encrypted, signed Ed25519

$ rush publish ./my-agent
  Published prix/[email protected]

The compiler

Your YAML compiles to a sealed container

Not a zip of your source. rush build encrypts the prompt, signs the container with Ed25519, and hash-locks every file. Installs verify the signature before a single line runs.

agent.yaml

Models, tools, context

prompt.yaml

Identity, workflow

assets/

Logo, cover

$ rush build

encrypt, sign, lock

prix/[email protected]

Sealed container

Encrypted promptEd25519 signedTamper-locked

Why Prix

Safe by default, not by audit.

Reviewed & Signed

Every agent in the registry is reviewed before publish. Ed25519 signatures verify integrity on install.

Prompt Protection

rush publish encrypts your agent container. System prompts and orchestration logic are never exposed.

Runtime Sandboxing

iOS-style permissions. Agents declare what they need. Users approve or deny at install time.

ClawHub has 800+ malicious skills. Prix has zero. Read more

Why agents

Not another workflow tool

Workflows
Agents
How it works
If X → do Y
Given a goal, figures out how
Who decides
You design every step
Agent decides the path
Specialist work
Another box in the graph
Delegates to sub-agents on the fly
Edge cases
Breaks or needs a new rule
Adapts and reasons through it
Maintenance
Update rules as world changes
Prompt once, handles variance

Reading

Deeper on agents

All essays
The Thesis·May 14, 2026

The policy layer above the rails

Stripe shipped 288 launches at Sessions 2026. The rails for agent payments are done. The next ten years gets won at the layer above — the manifest that decides which scopes get minted, which inputs trigger them, and which human signed off.

By Muqsit Nawaz
Read · 7 min read

Get early access

API access is opening soon. Join the waitlist. See pricing.

Already building? Read the docs · Publish an agent · Changelog