squidclaw 0.3.0 → 0.3.1
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/bin/squidclaw.js +4 -3
- package/lib/cli/setup.js +2 -2
- package/package.json +1 -1
package/bin/squidclaw.js
CHANGED
|
@@ -24,8 +24,9 @@ program
|
|
|
24
24
|
|
|
25
25
|
// ── Setup ──────────────────────────────────────────────
|
|
26
26
|
program
|
|
27
|
-
.command('
|
|
28
|
-
.
|
|
27
|
+
.command('hatch')
|
|
28
|
+
.alias('setup')
|
|
29
|
+
.description('🥚 Hatch your first Squidclaw agent')
|
|
29
30
|
.action(async () => {
|
|
30
31
|
const { setup } = await import('../lib/cli/setup.js');
|
|
31
32
|
await setup();
|
|
@@ -492,7 +493,7 @@ if (process.argv.length <= 2) {
|
|
|
492
493
|
🦑 Squidclaw v${pkg.version}
|
|
493
494
|
AI agent platform — human-like agents for WhatsApp & more
|
|
494
495
|
|
|
495
|
-
${chalk.gray('Get started:')} squidclaw
|
|
496
|
+
${chalk.gray('Get started:')} squidclaw hatch
|
|
496
497
|
${chalk.gray('Help:')} squidclaw --help
|
|
497
498
|
${chalk.gray('Docs:')} https://squidclaw.dev
|
|
498
499
|
`));
|
package/lib/cli/setup.js
CHANGED
|
@@ -13,8 +13,8 @@ import crypto from 'crypto';
|
|
|
13
13
|
export async function setup() {
|
|
14
14
|
console.clear();
|
|
15
15
|
console.log(chalk.cyan('\n ╔══════════════════════════════════════╗'));
|
|
16
|
-
console.log(chalk.cyan(' ║
|
|
17
|
-
console.log(chalk.cyan(' ║
|
|
16
|
+
console.log(chalk.cyan(' ║ 🥚 Squidclaw Hatch ║'));
|
|
17
|
+
console.log(chalk.cyan(' ║ Hatching your AI agent... ║'));
|
|
18
18
|
console.log(chalk.cyan(' ╚══════════════════════════════════════╝\n'));
|
|
19
19
|
p.intro(chalk.gray("Let's get you up and running"));
|
|
20
20
|
|