diff --git a/README.md b/README.md
index 2cd120f..bd1ffaa 100644
--- a/README.md
+++ b/README.md
@@ -1,88 +1,25 @@
-# Eremos
+# π Eremos
-
+
+
+
+
+
-**Autonomous swarm agents for early on-chain signal detection**
-
-Eremos is a lightweight framework for deploying modular agents that monitor blockchain activity - tracking wallet clusters, mint patterns, and contract anomalies.
-Designed for devs who want low-noise, early signals embedded into their workflows.
-
----
-
-
- 
- Theron - Agent (000)
-
-
-**Meet Theron - Agent-000**
-*The first deployed agent in the swarm. Passive. Pattern-sensitive.
-Modular and extendable by design.*
-
-
-**Agent-001 Coming Soon** [Teaser #1](https://x.com/EremosCore/status/1949154939923833239), [Teaser #2](https://x.com/EremosCore/status/1954856345284567218)
-
----
-
-## Features
-
-- **Modular Agents** - Scoped logic for detecting wallet activity, contract spawns, and anomalies
-- **Signal Emission** - Structured signals for logging, alerting, or downstream use
-- **Swarm Design** - Each agent operates independently with shared utilities
-- **Extensible Core** - Plug in watchers, inference layers, or custom triggers
-- **Minimal Output** - Log only what matters
-- **Launch Wallet Detection** - Agents can trace freshly funded wallets (e.g. from CEXs), track their contract interactions, and flag high-confidence deploys in real time
-- **Ghost Watcher** - Monitors long-dormant wallets that suddenly become active again. Useful for tracing old dev wallets or rug setups.
-- *+ More to come.*
-
-
----
-
-## Example Signal
-
-An example signal emitted by an agent detecting a live token deployment:
-
-```ts
-[agent-observer] β fresh funding detected from kraken (wallet: 6Yxk...P2M8) at 04:41:12Z
-[agent-observer] β contract probing detected within 4s (pump.fun interaction traced)
-[agent-observer] β token created at 04:41:17Z (tx: 5gW...pump)
-[agent-observer] β 5 bundle-linked wallets interacted within 8s of deploy
-[agent-observer] β launch confidence spike (0.91) - emitting signal (elapsed: 13s)
-
-{
- agent: "Observer",
- type: "launch_detected",
- glyph: "Ξ",
- hash: "sig_c7f9a3d2bc",
- timestamp: "2025-06-12T04:41:25Z",
- source: "agent-observer",
- confidence: 0.91
-}
-```
-
----
-
-## Signal Confidence
-
-Each emitted signal includes a `confidence` score (0-1) based on behavioral heuristics:
-- CEX-origin funding (e.g. Kraken, Coinbase)
-- Time between funding β deploy
-- Wallet linkage density (bundled activity)
-- Token metadata validation
-
-Confidence is computed via agent-side scoring and logged alongside the signal.
+Eremos is an **open framework for agent-based systems** on Solana and beyond.
+It provides modular pieces for researchers, swarm builders, and developers to create and experiment with autonomous agents that watch on-chain activity and emit useful signals.
---
-## Tech Stack
-
-- **Frontend:** Next.js, Tailwind CSS
-- **Backend:** Node.js (TypeScript-based agent runner)
-- **Language:** TypeScript (typed logic across agents, utils, and infra)
-- **Chain Layer:** RPC watchers, mempool filters, native triggers
+## π Features
+- **TypeScript-first** β strongly typed logic across agents, utils, and infra
+- **Agent templates** β observers, triggers, responders you can extend
+- **Swarm-ready** β coordinate multiple agents in parallel
+- **Developer-friendly** β clear structure, onboarding, and scripts
---
-## Getting Started
+## π¦ Getting Started
```bash
git clone https://github.com/EremosCore/Eremos.git
@@ -99,34 +36,51 @@ npm run dev
---
-## Key Folders
+## π Project Structure
-- `/agents` - Agent templates + logic
-- `/utils` - Shared signal/logging utilities
-- `/types` - TypeScript interfaces + definitions
-- `/scripts` - Bootstrap and dev scripts
-- `/docs` - Swarm structure, architecture, & our artwork/official whitepaper
+- `/agents` β Agent templates + logic
+- `/utils` β Shared signal/logging utilities
+- `/types` β TypeScript interfaces + definitions
+- `/scripts` β Bootstrap and dev scripts
+- `/docs` β Swarm structure, architecture, & whitepaper/artwork
---
-## Contributing
+## π§ͺ Example (observer stub)
+
+```ts
+// example.ts
+import { Observer } from "./agents/example";
-Weβre open to contributors.
-If you are experienced in TypeScript and like agent-based systems, check `example.ts` and build your own observer.
-If you're a designer, artist, or just have ideas that fit the mythos - send us a DM on Twitter. [@EremosCore](https://x.com/EremosCore)
+const obs = new Observer();
+obs.listen("mempool:tx", (tx) => {
+ console.log("Observed transaction:", tx);
+});
+```
---
-## License
+## π€ Contributing
-MIT Β© Eremos LLC
+We welcome contributions!
+
+1) β Star & Watch this repo
+2) Fork the repo
+3) Improve docs/formatting/onboarding, or add helpful tooling
+4) Open a clean Pull Request
+
+Designers/artists/storytellers who align with the mythos are welcome too β say hi on X.
---
-## Links
+## π Links
- **Twitter/X:** [@EremosCore](https://x.com/EremosCore)
- **Website:** [Eremos.io](https://www.eremos.io/)
- **Whitepaper:** [v1.0 PDF](docs/whitepaper.pdf)
-_Maintained by the Eremos Core team π._
+---
+
+## π License
+MIT Β© Eremos LLC
+Maintained with π by the Eremos Core team.