@inkeep/create-agents 0.10.2 → 0.11.1

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 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:push` - Apply database schema changes
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 push to create database file and apply schema
377
- await execAsync('pnpm db:push');
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.10.2",
3
+ "version": "0.11.1",
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",