@inkeep/create-agents 0.1.6 → 0.1.7
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 +9 -9
- package/dist/index.js +0 -0
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ npx @inkeep/create-agents my-agent-directory --tenant-id my-tenant --project-id
|
|
|
44
44
|
- `--project-id <project-id>` - Project identifier for your agents
|
|
45
45
|
- `--openai-key <openai-key>` - OpenAI API key (optional)
|
|
46
46
|
- `--anthropic-key <anthropic-key>` - Anthropic API key (recommended)
|
|
47
|
-
- `--manage-api-port <port>` -
|
|
47
|
+
- `--manage-api-port <port>` - Manage API port (default: 3002)
|
|
48
48
|
- `--run-api-port <port>` - Run API port (default: 3003)
|
|
49
49
|
|
|
50
50
|
## What's Created
|
|
@@ -59,12 +59,12 @@ my-agent-directory/
|
|
|
59
59
|
│ ├── inkeep.config.ts # Inkeep CLI configuration
|
|
60
60
|
│ └── .env # CLI environment variables
|
|
61
61
|
├── apps/
|
|
62
|
-
│ ├── manage-api/ #
|
|
62
|
+
│ ├── manage-api/ # Manage API service
|
|
63
63
|
│ │ ├── src/index.ts # API server entry point
|
|
64
64
|
│ │ ├── package.json # Service dependencies
|
|
65
65
|
│ │ ├── tsconfig.json # TypeScript config
|
|
66
66
|
│ │ └── .env # Service environment
|
|
67
|
-
│ ├── run-api/ #
|
|
67
|
+
│ ├── run-api/ # Run API service
|
|
68
68
|
│ │ ├── src/index.ts # API server entry point
|
|
69
69
|
│ │ ├── package.json # Service dependencies
|
|
70
70
|
│ │ ├── tsconfig.json # TypeScript config
|
|
@@ -90,11 +90,11 @@ my-agent-directory/
|
|
|
90
90
|
|
|
91
91
|
2. **Start the services:**
|
|
92
92
|
```bash
|
|
93
|
-
# Start both
|
|
93
|
+
# Start both Manage API and Run API
|
|
94
94
|
npm run dev
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
3. **In a new terminal, start the
|
|
97
|
+
3. **In a new terminal, start the Manage UI:**
|
|
98
98
|
```bash
|
|
99
99
|
npx inkeep dev
|
|
100
100
|
```
|
|
@@ -114,15 +114,15 @@ my-agent-directory/
|
|
|
114
114
|
|
|
115
115
|
After setup, you'll have access to:
|
|
116
116
|
|
|
117
|
-
- **
|
|
117
|
+
- **Manage API** (Port 3002): Agent configuration and management
|
|
118
118
|
- **Run API** (Port 3003): Agent execution and chat processing
|
|
119
|
-
- **
|
|
119
|
+
- **Manage UI** (Port 3000): Visual agent builder (via `npx inkeep dev`)
|
|
120
120
|
|
|
121
121
|
## Commands Available in Your Directory
|
|
122
122
|
|
|
123
123
|
- `npm run dev` - Start both API services with hot reload
|
|
124
124
|
- `npm run db:push` - Apply database schema changes
|
|
125
|
-
- `npx inkeep dev` - Start the
|
|
125
|
+
- `npx inkeep dev` - Start the Manage UI
|
|
126
126
|
- `npx inkeep push <graph-file>` - Deploy agent configurations
|
|
127
127
|
- `npx inkeep chat` - Interactive chat with your agents
|
|
128
128
|
|
|
@@ -149,7 +149,7 @@ LOG_LEVEL=debug
|
|
|
149
149
|
```
|
|
150
150
|
|
|
151
151
|
### Service-specific `.env` files
|
|
152
|
-
- `apps/manage-api/.env` -
|
|
152
|
+
- `apps/manage-api/.env` - Manage API configuration
|
|
153
153
|
- `apps/run-api/.env` - Run API configuration
|
|
154
154
|
- `src/<project-id>/.env` - CLI configuration
|
|
155
155
|
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Create an Inkeep Agent Framework project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,16 +12,6 @@
|
|
|
12
12
|
"LICENSE.md",
|
|
13
13
|
"SUPPLEMENTAL_TERMS.md"
|
|
14
14
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "tsx src/index.ts",
|
|
17
|
-
"build": "tsc",
|
|
18
|
-
"lint": "biome lint .",
|
|
19
|
-
"lint:fix": "biome check --write .",
|
|
20
|
-
"format": "biome format --write .",
|
|
21
|
-
"test": "vitest --run --passWithNoTests",
|
|
22
|
-
"test:watch": "vitest",
|
|
23
|
-
"typecheck": "tsc --noEmit"
|
|
24
|
-
},
|
|
25
15
|
"keywords": [
|
|
26
16
|
"inkeep",
|
|
27
17
|
"agents",
|
|
@@ -38,8 +28,8 @@
|
|
|
38
28
|
"author": "Inkeep <support@inkeep.com>",
|
|
39
29
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
40
30
|
"dependencies": {
|
|
41
|
-
"
|
|
42
|
-
"
|
|
31
|
+
"commander": "^12.0.0",
|
|
32
|
+
"@inkeep/agents-cli": "^0.1.7"
|
|
43
33
|
},
|
|
44
34
|
"devDependencies": {
|
|
45
35
|
"@types/node": "^20.12.0",
|
|
@@ -58,5 +48,15 @@
|
|
|
58
48
|
"publishConfig": {
|
|
59
49
|
"access": "public",
|
|
60
50
|
"registry": "https://registry.npmjs.org/"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "tsx src/index.ts",
|
|
54
|
+
"build": "tsc",
|
|
55
|
+
"lint": "biome lint src",
|
|
56
|
+
"lint:fix": "biome check --write .",
|
|
57
|
+
"format": "biome format --write .",
|
|
58
|
+
"test": "vitest --run --passWithNoTests",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"typecheck": "tsc --noEmit"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|