to send a message
+```
+
+Then you can use `/lm` to list all the agents in the chatroom. For how to install agents, please refer to the [install agents](./install_agent.md) page.
+
+```bash
+/lm
+────────────────────────────────────────────────── Members for 'room' ──────────────────────────────────────────────────
+User - Human user
+gpt - You are a helpful AI assistant
+────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
+```
+
+To chat with an agent, you need to add the agent to the current channel first. Channel is similar to a group chat in a message app where you can chat with multiple agents simultaneously. To add an agent to the current channel, use the `/am` command followed by the agent name. For example, to add the GPT agent to the current channel, use the following command.
+
+```bash
+/am gpt
+gpt joins the General channel.
+```
+
+After the agent is added to the channel, you can start chatting with the agent.
+
+```bash
+Tell me a joke
+[5/24/2024 10:21:08 PM] User: Tell me a joke
+[5/24/2024 10:21:09 PM] gpt: Sure, here's a joke for you:
+
+Why couldn't the bicycle stand up by itself?
+
+Because it was two-tired!
+```
diff --git a/website/icon.png b/website/icon.png
new file mode 100644
index 0000000..b7c0c7a
Binary files /dev/null and b/website/icon.png differ
diff --git a/website/images/chatroom-client.png b/website/images/chatroom-client.png
new file mode 100644
index 0000000..3cbfac4
Binary files /dev/null and b/website/images/chatroom-client.png differ
diff --git a/website/images/preface.png b/website/images/preface.png
new file mode 100644
index 0000000..2abf8ae
Binary files /dev/null and b/website/images/preface.png differ
diff --git a/website/index.md b/website/index.md
new file mode 100644
index 0000000..4d237c1
--- /dev/null
+++ b/website/index.md
@@ -0,0 +1,65 @@
+
+
Agent Chatroom
+
+
+
+
+
+
+
+ An extensible multi-agent platform built on top of AutoGen.Net and Orleans.
+
+
+---
+
+## 🌟 Highlights
+- **Multi-Agent Chat**: Chat with multiple agents simultaneously.
+- **Extensible**: Create your own agents and integrate them into the chatroom.
+
+---
+
+## 🚀 Quick Start
+
+- 🛠️ Install the Client
+To install the client, run the following command:
+```bash
+dotnet tool install --global ChatRoom.Client --version 0.0.7
+```
+
+- 🧩 Install the Agent
+To install the OpenAI agent, run the following command:
+```bash
+dotnet tool install --global ChatRoom.OpenAI --version 0.0.7
+```
+
+> [!Note]
+> As of 2024/05/24, the following agents are available as dotnet tools from NuGet:
+> - `ChatRoom.OpenAI`: OpenAI agent.
+> - `ChatRoom.Powershell`: Powershell GPT agent and Powershell executor agent.
+> - `ChatRoom.BingSearch`: Bing search agent.
+
+You can search for and install these agents from [nuget.org](https://www.nuget.org/).
+
+- 🚪 Start the Chatroom
+To start the chatroom service as an Orleans silo, run:
+```bash
+chatroom
+```
+
+- 🤖 Start the OpenAI Agent and Join the Chatroom
+To start the OpenAI agent, run:
+```bash
+chatroom-openai
+```
+
+After the OpenAI agent is started, you will see the following message in the chatroom:
+```bash
+gpt joined the chatroom.
+```
+
+- 💬 Add the OpenAI Agent to the Current Channel and Start Chatting
+Once the GPT agent is in the chatroom, you can add it to the current channel and start chatting with it using the following command:
+```bash
+/am gpt
+Hey, tell me a joke.
+```
\ No newline at end of file
diff --git a/website/toc.yml b/website/toc.yml
new file mode 100644
index 0000000..40e606b
--- /dev/null
+++ b/website/toc.yml
@@ -0,0 +1,5 @@
+- name: Get Start
+ href: get_start/
+
+- name: Release Notes
+ href: release_note/
\ No newline at end of file