diff --git a/README.md b/README.md
index a4cf55b..5517678 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,13 @@
+
+
+
+
+
+
+
---
## π Quick Start
-```bash
-python3 -m venv isek_env && source isek_env/bin/activate
-```
+### Prerequisites
+- **Python 3.10+**
+- **Node.js 18+** (for P2P functionality)
### Installation
```bash
+python3 -m venv isek_env && source isek_env/bin/activate
pip install isek
isek setup
```
-### Prerequisites
-- **Python 3.10+**
-- **Node.js 18+** (for P2P functionality)
+### Hosting your Agent:
+```python
+node = Node(host="127.0.0.1", port=9999, node_id="openai-agent")
+app = Node.create_server(your_agent_executor, agent_card)
+node.build_server(app, name="OpenAI Agent", daemon=False)
+```
-> π‘ **Tip:** The `isek setup` command automatically handles both Python and JavaScript dependencies.
+### Query your Agent:
+```python
+node = Node(host="127.0.0.1", port=8888, node_id="a2a-client")
+message_content = await node.send_message("http://localhost:9999", query)
+```
+### P2P Relay setup
+```bash
+isek run-realy
+```
+Expected output:
+Relay peer started. peerId=
-
---
## π€ Contributing
@@ -195,18 +184,6 @@ We welcome collaborators, researchers, and early adopters!
---
-## π License
-
-Licensed under the [MIT License](LICENSE).
-
----
-## β οΈ Legal Notice
-
-ISEK is an open-source, permissionless framework for building decentralized agent coordination systems.
-The contributors do not operate, control, or monitor any deployed agents or their behavior.
-By using this project, you accept full responsibility for your actions. See [LEGAL.md](./LEGAL.md) for more details.
-
----
Made with β€οΈ by the Isek Team
Autonomy is not isolation. It's cooperation, at scale.
diff --git a/examples/Agent_servers/Pydantic/openai_agent_a2a_p2p.py b/examples/Agent_servers/Pydantic/openai_agent_a2a_p2p.py
index 928193b..84f25ad 100644
--- a/examples/Agent_servers/Pydantic/openai_agent_a2a_p2p.py
+++ b/examples/Agent_servers/Pydantic/openai_agent_a2a_p2p.py
@@ -58,7 +58,7 @@ def main():
p2p_enabled=True,
p2p_server_port=9001,
relay_ip="155.138.145.190",
- relay_peer_id="12D3KooWShd5s1ziziZNkiqN56XVpWH3chZHeq7EeSzHKMzR12vf"
+ relay_peer_id="12D3KooWAom1Up6ZmpWgCSZGU5miehN5j2fczRNaiPUU4ZqmSCJq"
)
# Run blocking wait so we can print the peer address before starting the agent server
p2p.start_p2p_server(wait_until_ready=True)
diff --git a/isek/cli.py b/isek/cli.py
index 4a94f8d..f109658 100644
--- a/isek/cli.py
+++ b/isek/cli.py
@@ -60,14 +60,6 @@ def clean():
click.secho("β Cleanup completed", fg="green")
-@cli.command()
-def registry():
- """Start local development registry"""
- from isek.isek_center import main
-
- main()
-
-
@cli.command()
def setup():
"""Install ISEK Python and JavaScript dependencies"""
@@ -144,7 +136,16 @@ def is_development_environment():
click.secho(" P2P functionality may not work correctly", fg="yellow")
click.secho("π ISEK setup completed successfully!", fg="green")
- click.secho(" You can now run examples with 'isek example run