@inkeep/create-agents 0.33.1 → 0.33.2

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.
@@ -67,7 +67,7 @@ describe('create-agents quickstart e2e', () => {
67
67
  await verifyFile(path.join(projectDir, 'src/inkeep.config.ts'));
68
68
  console.log('inkeep.config.ts verified');
69
69
  console.log('Setting up project in database');
70
- await runCommand('pnpm', ['setup-dev'], projectDir);
70
+ await runCommand('pnpm', ['db:migrate'], projectDir);
71
71
  console.log('Project setup in database');
72
72
  console.log('Starting dev servers');
73
73
  // Start dev servers in background with output monitoring
package/dist/utils.js CHANGED
@@ -349,7 +349,27 @@ export const myProject = project({
349
349
  }
350
350
  }
351
351
  async function installDependencies() {
352
- await execAsync('pnpm install');
352
+ try {
353
+ const { stderr } = await execAsync('pnpm install');
354
+ if (process.env.CI && stderr) {
355
+ console.log('pnpm install stderr:', stderr);
356
+ }
357
+ }
358
+ catch (error) {
359
+ // Capture and log full error details for debugging
360
+ console.error('pnpm install failed!');
361
+ console.error('Exit code:', error.code);
362
+ if (error.stdout) {
363
+ console.error('stdout:', error.stdout);
364
+ }
365
+ if (error.stderr) {
366
+ console.error('stderr:', error.stderr);
367
+ }
368
+ if (error.message) {
369
+ console.error('Error message:', error.message);
370
+ }
371
+ throw error;
372
+ }
353
373
  }
354
374
  async function initializeGit() {
355
375
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.33.1",
3
+ "version": "0.33.2",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "drizzle-kit": "^0.31.5",
35
35
  "fs-extra": "^11.0.0",
36
36
  "picocolors": "^1.0.0",
37
- "@inkeep/agents-core": "0.33.1"
37
+ "@inkeep/agents-core": "0.33.2"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/degit": "^2.8.6",