@inkeep/agents-cli 0.0.0-dev-20250912150847 → 0.0.0-dev-20250912152002

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.
@@ -393,12 +393,16 @@ DB_FILE_NAME=file:../../local.db
393
393
  # AI Provider Keys
394
394
  ANTHROPIC_API_KEY=${config.anthropicKey || "your-anthropic-key-here"}
395
395
  OPENAI_API_KEY=${config.openAiKey || "your-openai-key-here"}
396
+
397
+ AGENTS_RUN_API_URL=http://localhost:${config.runApiPort}
396
398
  `;
397
399
  const manageApiEnvContent = `# Environment
398
400
  ENVIRONMENT=development
399
401
 
400
402
  # Database (relative path from API directory)
401
403
  DB_FILE_NAME=file:../../local.db
404
+
405
+ AGENTS_MANAGE_API_URL=http://localhost:${config.manageApiPort}
402
406
  `;
403
407
  await fs.writeFile("apps/manage-api/.env", manageApiEnvContent);
404
408
  await fs.writeFile("apps/run-api/.env", runApiEnvContent);
package/dist/index.js CHANGED
@@ -15615,12 +15615,16 @@ DB_FILE_NAME=file:../../local.db
15615
15615
  # AI Provider Keys
15616
15616
  ANTHROPIC_API_KEY=${config.anthropicKey || "your-anthropic-key-here"}
15617
15617
  OPENAI_API_KEY=${config.openAiKey || "your-openai-key-here"}
15618
+
15619
+ AGENTS_RUN_API_URL=http://localhost:${config.runApiPort}
15618
15620
  `;
15619
15621
  const manageApiEnvContent = `# Environment
15620
15622
  ENVIRONMENT=development
15621
15623
 
15622
15624
  # Database (relative path from API directory)
15623
15625
  DB_FILE_NAME=file:../../local.db
15626
+
15627
+ AGENTS_MANAGE_API_URL=http://localhost:${config.manageApiPort}
15624
15628
  `;
15625
15629
  await fs.writeFile("apps/manage-api/.env", manageApiEnvContent);
15626
15630
  await fs.writeFile("apps/run-api/.env", runApiEnvContent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20250912150847",
3
+ "version": "0.0.0-dev-20250912152002",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -42,8 +42,8 @@
42
42
  "recast": "^0.23.0",
43
43
  "ts-morph": "^26.0.0",
44
44
  "tsx": "^4.20.5",
45
- "@inkeep/agents-core": "^0.0.0-dev-20250912150847",
46
- "@inkeep/agents-manage-ui": "^0.0.0-dev-20250912150847"
45
+ "@inkeep/agents-core": "^0.0.0-dev-20250912152002",
46
+ "@inkeep/agents-manage-ui": "^0.0.0-dev-20250912152002"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/fs-extra": "^11.0.4",