diff --git a/README.md b/README.md
index a805d0d6..329b9add 100644
--- a/README.md
+++ b/README.md
@@ -2,307 +2,214 @@
-> **π Welcome Early Adopter!**
->
-> You've discovered AgentField before our official launch. We're currently in private beta, gathering feedback from early users to shape the future of the autonomous software. Feel free to explore and test, and we'd love to hear your thoughts! Share feedback via [GitHub Issues](https://github.com/Agent-Field/agentfield/issues) or email us at contact@agentfield.ai. Please note that features and APIs are still being refined before our public release.
-
-### Kubernetes for AI Agents - **Deploy, Scale, Observe, and Prove**
-
-Open-source (Apache-2.0) **control plane** that runs AI agents like microservices.
-Every agent gets **REST/gRPC APIs**, **async execution & webhooks**, **built-in observability**, and **cryptographic identity & audit**.
+# Kubernetes for AI Agents
+### **Deploy, Scale, Observe, and Prove.**
[](LICENSE)
[](https://go.dev/)
[](https://www.python.org/)
[](https://docs.docker.com/)
-**[π Docs](https://agentfield.ai/docs)** β’ **[β‘ Quickstart](#quickstart-in-60-seconds)** β’ **[π§ Why AgentField](#why-agentfield)**
+**[π Documentation](https://agentfield.ai/docs)** β’ **[β‘ Quick Start](#-quick-start-in-60-seconds)** β’ **[π§ Why AgentField](#-why-agentfield)**
---
-## π **Ship Production-Ready AI Agents in Minutes**
-
-β
**Write agents in Python/Go** (or any language via REST/gRPC)
-
-β
**Deploy independently** like microservices-zero coordination between teams
+> **π Welcome Early Adopter!**
+>
+> You've discovered AgentField before our official launch. We're currently in private beta, gathering feedback from early users to shape the future of the autonomous software. Feel free to explore and test, and we'd love to hear your thoughts! Share feedback via [GitHub Issues](https://github.com/Agent-Field/agentfield/issues) or email us at contact@agentfield.ai. Please note that features and APIs are still being refined before our public release.
-β
**Get production infrastructure automatically**:
-- **IAM & cryptographic audit trails** - W3C DIDs + Verifiable Credentials
-- **REST APIs, streaming, async queues** - auto-generated endpoints
-- **Built-in observability & metrics** - Prometheus + workflow DAGs
+---
-β
**Run anywhere**: local dev, Docker, Kubernetes, cloud
+## π What is AgentField?
-```bash
-curl -fsSL https://agentfield.ai/install.sh | bash && af init my-agent --defaults
-```
+**AgentField is "Kubernetes for AI Agents."**
-**[π Full Docs](https://agentfield.ai/docs)** β’ **[β‘ Quick Start](https://agentfield.ai/docs/quick-start)** β’ **[π― Examples](https://github.com/agentfield/agentfield-examples)**
+It is an open-source **Control Plane** that treats AI agents as first-class citizens. Instead of building fragile, monolithic scripts, AgentField lets you deploy agents as **independent microservices** that can discover each other, coordinate complex workflows, and scale infinitelyβall with built-in observability and cryptographic trust.
----
-## π Try AgentField in 2 Minutes
+Write standard Python (or Go). Get a production-grade distributed system automatically.
-### Option 1: Local Install
+```python
+from agentfield import Agent
-```bash
-# macOS/Linux - install CLI
-curl -fsSL https://agentfield.ai/install.sh | bash
+# 1. Define an Agent (It's just a microservice)
+app = Agent(node_id="researcher", model="gpt-4o")
-# Start control plane + create your first agent
-af init my-agent --defaults && cd my-agent
-af run
-```
+# 2. Create a Skill (Deterministic code)
+@app.skill()
+def fetch_url(url: str) -> str:
+ return requests.get(url).text
-### Option 2: Docker Compose
-
-```bash
-git clone https://github.com/agentfield/agentfield
-cd agentfield && docker compose up
+# 3. Create a Reasoner (AI-powered logic)
+# This automatically becomes a REST API endpoint: POST /execute/researcher.summarize
+@app.reasoner()
+async def summarize(url: str) -> dict:
+ content = fetch_url(url)
+ # Native AI call with structured output
+ return await app.ai(f"Summarize this content: {content}")
+
+# 4. Run it
+if __name__ == "__main__":
+ app.run()
```
-Your control plane is running at `http://localhost:8080`
+**What you get for free:**
+* β
**Instant API:** `POST /api/v1/execute/researcher.summarize`
+* β
**Durable Execution:** Resumes automatically if the server crashes.
+* β
**Observability:** You get a full execution DAG, metrics, and logs automatically.
+* β
**Audit:** Every step produces a cryptographically signed Verifiable Credential.
-
+---
-**Heads-up:** When your agent nodes run outside the Docker network (local shell, another VM, etc.) they can't be reached through `localhost`. Before starting any agent, set a callback URL that the control plane can dial:
+## π Quick Start in 60 Seconds
+### 1. Install
```bash
-export AGENT_CALLBACK_URL="http://host.docker.internal:8001"
+curl -fsSL https://agentfield.ai/install.sh | bash
```
-Replace `host.docker.internal` with whatever host/IP the control plane can reach if you're on Linux or a remote machine.
-
-export AGENT_CALLBACK_URL="http://host.docker.internal:8001"π³ Docker / Troubleshooting
-**TL;DR:** Most agent frameworks are built for prototypes. AgentField is infrastructure for production. If you've tried running multi-agent systems in production, you've hit these problems: agents deployed as a monolith (one team's change redeploys everyone), no proof of what your AI did for auditors, manual service discovery between agents, and building your own queues/webhooks/state management for long running AI nested calls. AgentField ships as a control plane + agent nodes architecture - like Kubernetes for autonomous software. Deploy agents independently, get cryptographic audit trails, and coordinate through zero-config shared memory. Every reasoner becomes a REST endpoint automatically.
+If you are running AgentField in Docker, you may need to set a callback URL so the Control Plane can reach your agent:
-### From Prototype to Production
-
-| π΄ Building Without AgentField | π Building With AgentField |
-| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| **No cryptographic identity** - agents are names in logs; when regulators ask "prove this AI made this decision," you have editable logs with no tamper-proof record | **DIDs + Verifiable Credentials** - every agent gets a W3C DID; every execution produces a signed VC; export cryptographic proof chains that auditors verify offline with `af verify audit.json` |
-| **Monolithic deployments** - all agents in one codebase; Marketing team's update redeploys Support team's agents; coordination nightmare across teams | **Control plane coordinates independent agents** - each team deploys their agent on their own schedule; discovery/routing/orchestration handled by stateless control plane; zero coordination needed |
-| **Lost context across agent boundaries** - Agent A calls Agent B, you can't trace the full execution; no visibility into multi-agent workflows | **Context propagation built-in** - `workflow_id`, `execution_id`, `session_id` flow automatically through headers; see complete DAG of which agent called which, when, why - distributed tracing without instrumentation |
-| **Manual state management** - set up Redis/database yourself; handle race conditions; write sync logic for agents to share data | **Zero-config shared memory fabric** - `await app.memory.set("key", val)` works across distributed agents; hierarchical scopes (workflow/session/actor/global); real-time change events via `@app.memory.on_change("key")` |
-| **DIY async infrastructure** - implement PostgreSQL queues with `FOR UPDATE SKIP LOCKED`, build webhook delivery with HMAC signing and retries, handle backpressure, graceful shutdown | **Durable execution ships working** - PostgreSQL-backed queues, automatic retries with exponential backoff, HMAC webhook delivery (GitHub-style), fair scheduling, Prometheus metrics, health checks for K8s - no assembly required |
-| **Timeout hell for nested AI calls** - HTTP timeouts kill long-running reasoners; Agent A calls Agent B calls Agent C fails after 60s; build custom async queues and polling infrastructure | **Durable async execution** - reasoners run for hours/days without timeout; nested agent workflows (AβBβC) work natively; async endpoints + webhooks built-in; no external queue infrastructure needed |
-| **Hardcoded integrations** - manually wire up service discovery; build custom REST wrappers for frontend teams; maintain API gateway; coordinate URLs across deployments | **Auto-discovery + instant APIs** - call any agent via `await app.call("agent.function")`; every `@app.reasoner()` becomes `/api/v1/execute/agent.function` automatically; React/iOS/Android call via HTTP, no SDK needed |
+```bash
+export AGENT_CALLBACK_URL="http://host.docker.internal:8001"
+```
+
-
+
-
+