diff --git a/src/components/CapabilityFlow.astro b/src/components/CapabilityFlow.astro
deleted file mode 100644
index 0b88e50..0000000
--- a/src/components/CapabilityFlow.astro
+++ /dev/null
@@ -1,212 +0,0 @@
----
-// Liquid blob animation: a capability flowing from the client through the
-// contract-validating runtime out to cloud, edge, and AI targets.
-// Pure SVG + CSS (gooey filter + offset-path), zero JS.
----
-
- A capability leaves your app, passes the contract gate, and lands wherever it runs best. Same binary, same behavior, every target.
- \n Traverse is a contract-driven WASM runtime. Write business logic once with a machine-readable contract and run it identically across browser, edge, cloud, and AI pipelines.\n \n Three steps from idea to a portable, contract-governed piece of business logic running in any environment.\n Write a TOML file with your capability name, the WASM binary path, and JSON Schema definitions for inputs and outputs. Link it to the governing spec document your team actually works from. Implement the logic in Rust and compile to Add the capability to the registry with From contract validation to AI agent discovery, Traverse handles the entire lifecycle. Every capability call validates inputs against a JSON Schema precondition before execution. Postconditions validate the output. Bad data never reaches your logic. Each capability runs in its own Wasmtime WASM instance with linear memory isolation. A capability cannot access host resources it was not explicitly granted. Expose your entire capability registry to AI agents via the MCP stdio server. Claude, GPT-4, and any MCP-compatible agent can discover and call capabilities safely. One WASM binary runs on the local target today. The same binary will run unchanged on browser, edge, cloud, and AI pipeline targets as they ship. Every execution produces a trace artifact: the input, the output, the contract version, and a timestamp. Audit any past run without re-executing anything. Every contract links to the governing spec document it implements. When the policy changes, you update the spec and bump the contract version. The paper trail is built in. Pricing rules, eligibility checks, compliance logic — any deterministic computation that needs to run reliably everywhere. Encode complex pricing rules as a contract with a link to your pricing policy document. The same capability runs in your frontend, your backend, and inside AI agent pipelines with identical results. Run eligibility logic as a sandboxed WASM capability so an AI agent can check a user's eligibility for a product, service, or feature without risk of hallucinating the answer. Capture regulatory and compliance rules in versioned contracts with governing spec links. Every execution is traced. Auditors can replay any historical decision from the trace artifact. Give your AI agents a set of contract-governed capabilities to call. The agent cannot exceed the contract's boundaries. Postcondition checks block invalid outputs before they propagate.Logic that travels.
- \n Define once.
\n
Run anywhere.\n [capability]\nname = \"calculate-price\"\nversion = \"1.2.0\"\nwasm = \"pricing.wasm\"\n\n[governing_spec]\ntitle = \"Pricing Policy v3\"\nsource = \"docs/pricing-policy.md\"\n\n[input]\ntype = \"object\"\nproperties.sku = \"string\"\nproperties.quantity = \"integer\"\nproperties.region = \"string\"\nrequired = [\"sku\", \"quantity\"]\n\n[output]\ntype = \"object\"\nproperties.total = \"number\"\nproperties.currency = \"string\"\nrequired = [\"total\", \"currency\"]
\n \n Write a contract.
\n
Ship a capability.\n Define the contract
\n Compile to WASM
\n wasm32-wasi. The same binary runs on every placement target without recompilation.Register and run
\n traverse add. Call it from the CLI, from an AI agent via MCP, or from your app directly. Every call is validated and traced.Everything business logic needs
\n Contract-first validation
\n WASM sandbox isolation
\n AI agent integration
\n Cross-platform portability
\n Trace artifacts
\n Governing specs
\n One runtime. Any environment.
\n Built for real business logic
\n Pricing and discount logic
\n Eligibility and access rules
\n Compliance and audit logic
\n AI agent guardrails
\n
Install the CLI, write your first contract, and run it in under five minutes.
\n