legionai 1.0.0-beta.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.
Files changed (3) hide show
  1. package/README.md +64 -0
  2. package/dist/legion.cjs +514 -0
  3. package/package.json +71 -0
package/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # LegionAI
2
+
3
+ > Deploy a Legion of AI Agents to Build Your Digital Empire
4
+
5
+ LegionAI is a CLI tool that runs inside Claude Code, deploying a coordinated team of AI agents to help you build digital businesses.
6
+
7
+ ## Quick Start
8
+
9
+ ```bash
10
+ # 1. Activate your license
11
+ legionai activate YOUR-LICENSE-KEY
12
+
13
+ # 2. Initialize a project
14
+ legionai init my-startup
15
+
16
+ # 3. Navigate to project
17
+ cd my-startup
18
+
19
+ # 4. Recruit your agents
20
+ legionai recruit
21
+
22
+ # 5. Deploy your Legion
23
+ legionai deploy
24
+ ```
25
+
26
+ ## The Legion
27
+
28
+ Your AI team consists of 5 specialized agents:
29
+
30
+ | Agent | Role | Specialty |
31
+ |-------|------|-----------|
32
+ | **Imperator** | Commander | Interprets intent, coordinates the legion |
33
+ | **Architect** | Designer | Plans architecture, technical decisions |
34
+ | **Legionnaire** | Builder | Implements code, builds features |
35
+ | **Praetorian** | Guardian | Reviews code, ensures security |
36
+ | **Herald** | Messenger | Marketing, communications, content |
37
+
38
+ ## Commands
39
+
40
+ ```bash
41
+ legionai activate <key> # Activate your license
42
+ legionai init [name] # Initialize a new project
43
+ legionai recruit # Recruit agents interactively
44
+ legionai recruit --all # Recruit all agents
45
+ legionai deploy # Deploy and start your Legion
46
+ legionai status # Check project & license status
47
+ legionai config # Configure settings
48
+ ```
49
+
50
+ ## Requirements
51
+
52
+ - **Node.js 18+**
53
+ - **Claude Code** - LegionAI runs inside Claude Code sessions
54
+ - **Valid License** - Get yours at https://legionai.dev
55
+
56
+ ## License
57
+
58
+ LegionAI requires a valid license key to operate.
59
+
60
+ Contact: support@legionai.dev
61
+
62
+ ---
63
+
64
+ *May your Legion conquer all challenges, Commander.*