diff --git a/README.md b/README.md
index f1227e4..f0d6997 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,9 @@
## Description
-[Hexabot](https://hexabot.ai/) is an open-source chatbot solution that allows users to create and manage AI-powered, multi-channel, and multilingual chatbots with ease. Hexabot is designed for flexibility and customization, offering powerful text-to-action capabilities. Originally a closed-source project (version 1), we've now open-sourced version 2 to contribute to the community and enable developers to customize and extend the platform with extensions.
+[Hexabot](https://hexabot.ai/) is an open-source AI chatbot / agent solution. It allows you to create and manage multi-channel, and multilingual chatbots / agents with ease. Hexabot is designed for flexibility and customization, offering powerful text-to-action capabilities. Originally a closed-source project (version 1), we've now open-sourced version 2 to contribute to the community and enable developers to customize and extend the platform with extensions.
+**NOTE:** We are currently working to package it in a way that it would be easy to install and use, hence there's no version release just yet.
## Features
@@ -45,8 +46,8 @@ To ensure Hexabot runs smoothly, you'll need the following:
$ git clone https://github.com/hexastack/hexabot.git
```
-2. **Install:**
-
+2. **Installation:**
+Install node dependencies:
```bash
$ npm install
```
diff --git a/cli/src/index.ts b/cli/src/index.ts
index 1ed0f4c..cbf5d0a 100644
--- a/cli/src/index.ts
+++ b/cli/src/index.ts
@@ -205,9 +205,9 @@ program
// Get the last part of the repository name
const repoName = repository.split('/').pop();
- // If the repo name starts with "hexabot-channel-", remove that prefix
- const extensionName = repoName.startsWith('hexabot-channel-')
- ? repoName.replace('hexabot-channel-', '')
+ // If the repo name starts with "hexabot--", remove that prefix
+ const extensionName = repoName.startsWith(`hexabot-${type}-`)
+ ? repoName.replace(`hexabot-${type}-`, '')
: repoName;
const extensionPath = path.resolve(