@claude-flow/cli 3.0.0-alpha.182 → 3.0.0-alpha.183

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 +42 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -404,7 +404,7 @@ swarm_init({
404
404
 
405
405
  ### Prerequisites
406
406
 
407
- - **Node.js 18+** or **Bun 1.0+** (Bun is faster)
407
+ - **Node.js 20+** (required)
408
408
  - **npm 9+** / **pnpm** / **bun** package manager
409
409
 
410
410
  **IMPORTANT**: Claude Code must be installed first:
@@ -419,23 +419,56 @@ claude --dangerously-skip-permissions
419
419
 
420
420
  ### Installation
421
421
 
422
+ #### One-Line Install (Recommended)
423
+
422
424
  ```bash
423
- # With npm/npx (Node.js)
424
- npm install claude-flow@v3alpha
425
- npx claude-flow@v3alpha init
425
+ # curl-style installer with progress display
426
+ curl -fsSL https://raw.githubusercontent.com/ruvnet/claude-flow/main/scripts/install.sh | bash
427
+
428
+ # Or with options:
429
+ CLAUDE_FLOW_GLOBAL=1 curl -fsSL https://raw.githubusercontent.com/ruvnet/claude-flow/main/scripts/install.sh | bash
430
+ ```
431
+
432
+ #### npm/npx Install
433
+
434
+ ```bash
435
+ # Quick start (no install needed)
436
+ npx claude-flow@alpha init
437
+
438
+ # Or install globally
439
+ npm install -g claude-flow@alpha
440
+ claude-flow init
426
441
 
427
442
  # With Bun (faster)
428
- bun add claude-flow@v3alpha
429
- bunx claude-flow@v3alpha init
443
+ bunx claude-flow@alpha init
444
+ ```
445
+
446
+ #### Install Profiles
447
+
448
+ | Profile | Size | Use Case |
449
+ |---------|------|----------|
450
+ | `--omit=optional` | ~340MB | Core features only |
451
+ | Default | ~340MB | Standard install |
452
+
453
+ ```bash
454
+ # Minimal install (skip ML/embeddings)
455
+ npm install -g claude-flow@alpha --omit=optional
456
+ ```
457
+
458
+ ### Basic Usage
459
+
460
+ ```bash
461
+ # Initialize project
462
+ npx claude-flow@alpha init
430
463
 
431
464
  # Start MCP server for Claude Code integration
432
- npx claude-flow@v3alpha mcp start
465
+ npx claude-flow@alpha mcp start
433
466
 
434
467
  # Run a task with agents
435
- npx claude-flow@v3alpha --agent coder --task "Implement user authentication"
468
+ npx claude-flow@alpha --agent coder --task "Implement user authentication"
436
469
 
437
470
  # List available agents
438
- npx claude-flow@v3alpha --list
471
+ npx claude-flow@alpha --list
439
472
  ```
440
473
 
441
474
  ### Upgrading
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.0.0-alpha.182",
3
+ "version": "3.0.0-alpha.183",
4
4
  "type": "module",
5
5
  "description": "Claude Flow CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
6
6
  "main": "dist/src/index.js",