@hexabot-ai/cli 3.2.2-alpha.1 → 3.2.2-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # Hexabot CLI
2
2
 
3
- Hexabot CLI is a powerful command-line tool to help manage your Hexabot project instance. With it, you can create new projects, initialize environments, start services in various modes, run database migrations, and more. The CLI aims to make managing your chatbot seamless and intuitive.
3
+ Hexabot CLI is the command-line entry point for creating, configuring, and operating Hexabot v3 projects. With it, you can scaffold new automation workspaces, initialize environments, start services in local or Docker modes, run database migrations, and manage the project lifecycle.
4
4
 
5
5
 
6
- Not yet familiar with [Hexabot](https://hexabot.ai/)? It's a open-source chatbot / agent solution that allows users to create and manage AI-powered, multi-channel, and multilingual chatbots with ease. If you would like to learn more, please visit the [official github repo](https://github.com/Hexastack/Hexabot/).
6
+ Not yet familiar with [Hexabot](https://hexabot.ai/)? Hexabot v3 is an agentic AI automation platform for building and running workflows across channels with actions, bindings, memory, tools, MCP, and RAG. If you would like to learn more, please visit the [official GitHub repo](https://github.com/Hexastack/Hexabot/).
7
7
 
8
8
  ## Getting Started
9
9
 
@@ -23,16 +23,16 @@ npm install -g @hexabot-ai/cli
23
23
 
24
24
  ### Usage
25
25
 
26
- Once installed, you can use the `hexabot` command anywhere. The CLI focuses on a “zero to botflow: create a project, `cd` into it, and run `hexabot dev`. Docker is optional and available via `--docker` or the `hexabot docker ...` helpers.
26
+ Once installed, you can use the `hexabot` command anywhere. The CLI focuses on a “zero to running workflow automationpath: create a project, `cd` into it, and run `hexabot dev`. Docker is optional and available via `--docker` or the `hexabot docker ...` helpers.
27
27
 
28
28
  ### Commands
29
29
 
30
30
  #### `create <project-name>`
31
31
 
32
- Scaffold a new Hexabot project from the official NestJS starter template.
32
+ Scaffold a new Hexabot automation project from the official NestJS starter template.
33
33
 
34
34
  ```sh
35
- hexabot create support-bot
35
+ hexabot create support-automation
36
36
  ```
37
37
 
38
38
  Common options:
@@ -129,13 +129,13 @@ Run database migrations inside the Docker `api` container. Any extra args are fo
129
129
  1. **Create a new project** (installs dependencies automatically unless `--no-install`):
130
130
 
131
131
  ```sh
132
- npx @hexabot-ai/cli create support-bot
132
+ npx @hexabot-ai/cli create support-automation
133
133
  ```
134
134
 
135
135
  2. **Enter the project and start local dev (SQLite, no Docker required)**:
136
136
 
137
137
  ```sh
138
- cd support-bot
138
+ cd support-automation
139
139
  hexabot dev
140
140
  ```
141
141
 
@@ -147,7 +147,7 @@ Run database migrations inside the Docker `api` container. Any extra args are fo
147
147
  hexabot docker up --services postgres
148
148
  ```
149
149
 
150
- That’s it—`create → cd → dev` is the happy path, while Docker and env helpers remain available on demand.
150
+ That’s it—`create → cd → dev` is the happy path for a new Hexabot v3 automation project, while Docker and env helpers remain available on demand.
151
151
 
152
152
  ## Documentation
153
153
 
@@ -177,7 +177,7 @@ Feel free to join us on [Discord](https://discord.gg/rNb9t2MFkG)
177
177
 
178
178
  Copyright (c) 2025 Hexastack.
179
179
 
180
- This project is licensed under the **Fair Core License, Version 1.0**, with **Apache License 2.0** as the future license (abbrev. **FCL-1.0-ALv2**).
180
+ Hexabot is no longer distributed under GNU GPL v2. This project is licensed under the **Fair Core License, Version 1.0**, with **Apache License 2.0** as the future license (abbrev. **FCL-1.0-ALv2**).
181
181
 
182
182
  **Change date.** For each version of the software, the Fair Core License converts to Apache-2.0 on the **second anniversary** of the date that version is made available.
183
183
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexabot-ai/cli",
3
- "version": "3.2.2-alpha.1",
3
+ "version": "3.2.2-alpha.3",
4
4
  "description": "Official Hexabot CLI for creating and managing AI chatbot/agent projects built with Hexabot.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",