@hexabot-ai/cli 3.2.2-alpha.10 → 3.2.2-alpha.11
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.
- package/README.md +1 -1
- package/dist/commands/create.js +5 -0
- package/package.json +1 -1
- package/src/commands/create.ts +7 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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/)? 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/
|
|
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/hexabot-ai/Hexabot/).
|
|
7
7
|
|
|
8
8
|
## Getting Started
|
|
9
9
|
|
package/dist/commands/create.js
CHANGED
|
@@ -211,4 +211,9 @@ const logSuccessMessage = (projectName, options) => {
|
|
|
211
211
|
console.log(chalk.yellow(` hexabot docker up --services postgres`));
|
|
212
212
|
console.log(chalk.gray(`Need env files? Run hexabot env init --docker`));
|
|
213
213
|
console.log('\n');
|
|
214
|
+
console.log(chalk.blue('Optional: Install Hexabot skills'));
|
|
215
|
+
console.log(chalk.gray('You can add official skills to accelerate your workflow:'));
|
|
216
|
+
console.log(chalk.yellow(' npx skills add hexabot-ai/action-creator'));
|
|
217
|
+
console.log(chalk.yellow(' npx skills add hexabot-ai/workflow-writer'));
|
|
218
|
+
console.log('\n');
|
|
214
219
|
};
|
package/package.json
CHANGED
package/src/commands/create.ts
CHANGED
|
@@ -306,4 +306,11 @@ const logSuccessMessage = (
|
|
|
306
306
|
console.log(chalk.yellow(` hexabot docker up --services postgres`));
|
|
307
307
|
console.log(chalk.gray(`Need env files? Run hexabot env init --docker`));
|
|
308
308
|
console.log('\n');
|
|
309
|
+
console.log(chalk.blue('Optional: Install Hexabot skills'));
|
|
310
|
+
console.log(
|
|
311
|
+
chalk.gray('You can add official skills to accelerate your workflow:'),
|
|
312
|
+
);
|
|
313
|
+
console.log(chalk.yellow(' npx skills add hexabot-ai/action-creator'));
|
|
314
|
+
console.log(chalk.yellow(' npx skills add hexabot-ai/workflow-writer'));
|
|
315
|
+
console.log('\n');
|
|
309
316
|
};
|