@alexkroman1/aai 0.3.0 → 0.4.0
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 +40 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# aai
|
|
2
|
+
|
|
3
|
+
Voice agent development kit. Define agents in TypeScript, deploy anywhere.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g @alexkroman1/aai
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or run directly with npx:
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npx @alexkroman1/aai
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick start
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
# Create a new agent
|
|
21
|
+
aai init my-agent
|
|
22
|
+
cd my-agent
|
|
23
|
+
|
|
24
|
+
# Start local dev server
|
|
25
|
+
aai dev
|
|
26
|
+
|
|
27
|
+
# Deploy to production
|
|
28
|
+
aai deploy
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Commands
|
|
32
|
+
|
|
33
|
+
| Command | Description |
|
|
34
|
+
|---------|-------------|
|
|
35
|
+
| `aai init [dir]` | Scaffold a new agent project |
|
|
36
|
+
| `aai dev` | Start a local development server |
|
|
37
|
+
| `aai deploy` | Bundle and deploy to production |
|
|
38
|
+
| `aai start` | Start production server from build |
|
|
39
|
+
| `aai secret <cmd>` | Manage secrets |
|
|
40
|
+
| `aai rag <url>` | Ingest a site into the vector store |
|