@inkeep/create-agents 0.0.0-dev-20250913033021 → 0.0.0-dev-20250913035831

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 (2) hide show
  1. package/dist/utils.js +3 -3
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -219,7 +219,7 @@ export const createAgents = async (args = {}) => {
219
219
  await setupDatabase();
220
220
  // Setup project in database
221
221
  s.message('Setting up project in database...');
222
- await setupProjectInDatabase(config);
222
+ await setupProjectInDatabase();
223
223
  s.stop();
224
224
  // Success message with next steps
225
225
  p.note(`${color.green('✓')} Project created at: ${color.cyan(directoryPath)}\n\n` +
@@ -517,7 +517,7 @@ dotenv.config();
517
517
  const dbUrl = process.env.DB_FILE_NAME || 'file:local.db';
518
518
  const tenantId = '${config.tenantId}';
519
519
  const projectId = '${config.projectId}';
520
- const projectName = '${config.dirName}';
520
+ const projectName = '${config.projectId}';
521
521
  const projectDescription = 'Generated Inkeep Agents project';
522
522
 
523
523
  async function setupProject() {
@@ -993,7 +993,7 @@ Once services are running, view the OpenAPI documentation:
993
993
  async function installDependencies() {
994
994
  await execAsync('pnpm install');
995
995
  }
996
- async function setupProjectInDatabase(config) {
996
+ async function setupProjectInDatabase() {
997
997
  const s = p.spinner();
998
998
  s.start('🚀 Starting development servers and setting up database...');
999
999
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.0.0-dev-20250913033021",
3
+ "version": "0.0.0-dev-20250913035831",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {