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 CHANGED
@@ -24,8 +24,9 @@ program
24
24
 
25
25
  // ── Setup ──────────────────────────────────────────────
26
26
  program
27
- .command('setup')
28
- .description('Interactive first-time setup wizard')
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 setup
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(' ║ 🦑 Squidclaw Setup ║'));
17
- console.log(chalk.cyan(' ║ Your AI agent in 2 minutes ║'));
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squidclaw",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "🦑 AI agent platform — human-like agents for WhatsApp, Telegram & more",
5
5
  "main": "lib/engine.js",
6
6
  "bin": {