@the-aico/cli 1.0.0 → 1.0.2
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 +43 -0
- package/dist/index.js +450 -131
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @the-aico/cli
|
|
2
|
+
|
|
3
|
+
Build your AI team in seconds, start working immediately. aico provides customizable, extensible AI "employees" (skills + commands + docs) that you can use and modify in your own projects.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @the-aico/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Initialize aico in your project
|
|
15
|
+
aico init
|
|
16
|
+
|
|
17
|
+
# Add an AI employee
|
|
18
|
+
aico add pm
|
|
19
|
+
|
|
20
|
+
# List available employees
|
|
21
|
+
aico list
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
| Command | Description |
|
|
27
|
+
| ------------------------ | ---------------------------------- |
|
|
28
|
+
| `aico init` | Initialize aico in your project |
|
|
29
|
+
| `aico add <employee>` | Add an AI employee |
|
|
30
|
+
| `aico remove <employee>` | Remove an AI employee |
|
|
31
|
+
| `aico list` | List available/installed employees |
|
|
32
|
+
| `aico update` | Update installed employees |
|
|
33
|
+
| `aico search <query>` | Search for employees/skills |
|
|
34
|
+
| `aico diff` | Check for updates |
|
|
35
|
+
| `aico check` | Verify installation |
|
|
36
|
+
|
|
37
|
+
## Documentation
|
|
38
|
+
|
|
39
|
+
Visit https://the-aico.com/docs for full documentation.
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
[Apache License 2.0](https://github.com/yellinzero/aico/blob/main/LICENSE)
|