@inkeep/create-agents 0.0.0-dev-20251121000440 → 0.0.0-dev-20251121024138

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 +8 -0
  2. package/package.json +2 -2
package/dist/utils.js CHANGED
@@ -311,6 +311,7 @@ async function createWorkspaceStructure() {
311
311
  async function createEnvironmentFiles(config) {
312
312
  // Convert to forward slashes for cross-platform SQLite URI compatibility
313
313
  const jwtSigningSecret = crypto.randomBytes(32).toString('hex');
314
+ const betterAuthSecret = crypto.randomBytes(32).toString('hex');
314
315
  const envContent = `# Environment
315
316
  ENVIRONMENT=development
316
317
 
@@ -347,6 +348,13 @@ INKEEP_AGENTS_JWT_SIGNING_SECRET=${jwtSigningSecret}
347
348
 
348
349
  # initial project information
349
350
  DEFAULT_PROJECT_ID=${config.projectId}
351
+
352
+ # Auth Configuration
353
+ # INKEEP_AGENTS_MANAGE_UI_USERNAME=admin@example.com
354
+ # INKEEP_AGENTS_MANAGE_UI_PASSWORD=adminADMIN!@12
355
+ BETTER_AUTH_SECRET=${betterAuthSecret}
356
+ DISABLE_AUTH=true
357
+
350
358
  `;
351
359
  await fs.writeFile('.env', envContent);
352
360
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.0.0-dev-20251121000440",
3
+ "version": "0.0.0-dev-20251121024138",
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.0.0-dev-20251121000440"
37
+ "@inkeep/agents-core": "0.0.0-dev-20251121024138"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/degit": "^2.8.6",