@inkeep/create-agents 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 +1 -1
- package/dist/utils.js +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -118,7 +118,7 @@ After setup, you'll have access to:
|
|
|
118
118
|
## Commands Available in Your Directory
|
|
119
119
|
|
|
120
120
|
- `pnpm dev` - Start both API services with hot reload
|
|
121
|
-
- `pnpm db:
|
|
121
|
+
- `pnpm db:migrate` - Apply database migrations
|
|
122
122
|
- `inkeep dev` - Start the Manage UI
|
|
123
123
|
- `inkeep push` - Deploy project configurations
|
|
124
124
|
- `inkeep chat` - Interactive chat with your agents
|
package/dist/utils.js
CHANGED
|
@@ -373,8 +373,8 @@ async function setupProjectInDatabase(config) {
|
|
|
373
373
|
}
|
|
374
374
|
async function setupDatabase() {
|
|
375
375
|
try {
|
|
376
|
-
// Run drizzle-kit
|
|
377
|
-
await execAsync('pnpm db:
|
|
376
|
+
// Run drizzle-kit migrate to apply migrations to database
|
|
377
|
+
await execAsync('pnpm db:migrate');
|
|
378
378
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
379
379
|
}
|
|
380
380
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Create an Inkeep Agent Framework project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"commander": "^12.0.0",
|
|
33
33
|
"degit": "^2.8.4",
|
|
34
34
|
"fs-extra": "^11.0.0",
|
|
35
|
-
"picocolors": "^1.0.0"
|
|
35
|
+
"picocolors": "^1.0.0",
|
|
36
|
+
"drizzle-kit": "^0.31.5"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
39
|
"@types/degit": "^2.8.6",
|