@inkeep/create-agents 0.0.0-dev-20250912142126 → 0.1.6

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 +9 -9
  2. package/dist/index.js +0 -0
  3. 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>` - Manage API port (default: 3002)
47
+ - `--manage-api-port <port>` - Management 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/ # Manage API service
62
+ │ ├── manage-api/ # Management 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/ # Run API service
67
+ │ ├── run-api/ # Execution 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 Manage API and Run API
93
+ # Start both Management and Run APIs
94
94
  npm run dev
95
95
  ```
96
96
 
97
- 3. **In a new terminal, start the Manage UI:**
97
+ 3. **In a new terminal, start the Management Dashboard:**
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
- - **Manage API** (Port 3002): Agent configuration and management
117
+ - **Management API** (Port 3002): Agent configuration and management
118
118
  - **Run API** (Port 3003): Agent execution and chat processing
119
- - **Manage UI** (Port 3000): Visual agent builder (via `npx inkeep dev`)
119
+ - **Management Dashboard** (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 Manage UI
125
+ - `npx inkeep dev` - Start the Management Dashboard
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` - Manage API configuration
152
+ - `apps/manage-api/.env` - Management 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.0.0-dev-20250912142126",
3
+ "version": "0.1.6",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,6 +12,16 @@
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
+ },
15
25
  "keywords": [
16
26
  "inkeep",
17
27
  "agents",
@@ -28,8 +38,8 @@
28
38
  "author": "Inkeep <support@inkeep.com>",
29
39
  "license": "SEE LICENSE IN LICENSE.md",
30
40
  "dependencies": {
31
- "commander": "^12.0.0",
32
- "@inkeep/agents-cli": "^0.0.0-dev-20250912142126"
41
+ "@inkeep/agents-cli": "workspace:^",
42
+ "commander": "^12.0.0"
33
43
  },
34
44
  "devDependencies": {
35
45
  "@types/node": "^20.12.0",
@@ -48,15 +58,5 @@
48
58
  "publishConfig": {
49
59
  "access": "public",
50
60
  "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
+ }