@plosson/agentio 0.5.5 → 0.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plosson/agentio",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "CLI for LLM agents to interact with communication and tracking services",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -255,9 +255,11 @@ export async function startGateway(): Promise<void> {
255
255
  };
256
256
  config.gateway = gatewayConfig;
257
257
  await saveConfig(config);
258
- console.log(`First run - generated API key: ${generatedKey}`);
259
258
  }
260
259
 
260
+ // Always display API key for easy access (e.g., Docker logs)
261
+ console.log(`API Key: ${gatewayConfig.apiKey}`);
262
+
261
263
  // Initialize database
262
264
  await initDatabase();
263
265
  console.log('Database initialized');