@inkeep/agents-manage-api 0.10.1 → 0.11.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 +6 -9
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -26,18 +26,15 @@ This API handles the configuration and management layer:
|
|
|
26
26
|
|
|
27
27
|
### Setup
|
|
28
28
|
|
|
29
|
-
If you do not have the db setup:
|
|
30
|
-
|
|
31
29
|
```bash
|
|
32
|
-
cd
|
|
33
|
-
pnpm
|
|
30
|
+
cd agents-run-api
|
|
31
|
+
pnpm install
|
|
34
32
|
```
|
|
35
33
|
|
|
36
|
-
|
|
34
|
+
If you do not have the database setup, run migrations from the monorepo root:
|
|
37
35
|
|
|
38
36
|
```bash
|
|
39
|
-
|
|
40
|
-
pnpm install
|
|
37
|
+
pnpm db:migrate
|
|
41
38
|
```
|
|
42
39
|
|
|
43
40
|
### Environment Variables
|
|
@@ -60,9 +57,9 @@ pnpm format # Format code
|
|
|
60
57
|
|
|
61
58
|
### Database Operations
|
|
62
59
|
```bash
|
|
63
|
-
pnpm db:
|
|
60
|
+
pnpm db:generate # Generate migration files from schema changes
|
|
61
|
+
pnpm db:migrate # Apply migration files to database
|
|
64
62
|
pnpm db:studio # Open Drizzle Studio for inspection
|
|
65
|
-
pnpm db:generate # Generate migration files
|
|
66
63
|
```
|
|
67
64
|
|
|
68
65
|
## Builder Patterns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-manage-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Agents Manage API for Inkeep Agent Framework - handles CRUD operations and OAuth",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"openid-client": "^6.6.4",
|
|
24
24
|
"pino": "^9.7.0",
|
|
25
25
|
"zod": "^4.1.5",
|
|
26
|
-
"@inkeep/agents-core": "^0.
|
|
26
|
+
"@inkeep/agents-core": "^0.11.0"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
29
|
"keytar": "^7.9.0"
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"@hono/vite-dev-server": "^0.20.1",
|
|
33
33
|
"@types/node": "^20.11.24",
|
|
34
34
|
"@vitest/coverage-v8": "^2.0.0",
|
|
35
|
-
"drizzle-kit": "^0.31.4",
|
|
36
35
|
"nodemon": "^3.1.0",
|
|
37
36
|
"pino-pretty": "^13.0.0",
|
|
38
37
|
"tsx": "^4.7.1",
|