@inkeep/create-agents 0.48.2 → 0.48.3

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 (3) hide show
  1. package/README.md +4 -4
  2. package/dist/utils.js +11 -12
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -40,13 +40,13 @@ Ensure Docker Desktop (or Docker daemon) is running before running the setup scr
40
40
  pnpm setup-dev
41
41
  ```
42
42
 
43
- Or if you are using a cloud database, you can skip the docker database startup by running:
43
+ Or if you are using a cloud database, you can skip the local Docker database startup by running:
44
44
 
45
45
  ```bash
46
- pnpm setup-dev --skip-docker
46
+ pnpm setup-dev:cloud
47
47
  ```
48
48
 
49
- Make sure your DATABASE_URL environment variable is configured for your cloud database.
49
+ Make sure your `INKEEP_AGENTS_MANAGE_DATABASE_URL` and `INKEEP_AGENTS_RUN_DATABASE_URL` environment variables are configured in `.env` for your cloud databases.
50
50
 
51
51
  ### Step 3: Launch the dev environment
52
52
 
@@ -54,7 +54,7 @@ Make sure your DATABASE_URL environment variable is configured for your cloud da
54
54
  pnpm dev
55
55
  ```
56
56
 
57
- The Visual Builder will auto-open at http://localhost:3000.
57
+ The Visual Builder will auto-open at http://localhost:3000. You'll be signed in automatically.
58
58
 
59
59
  ### Step 4: Chat with your agent
60
60
 
package/dist/utils.js CHANGED
@@ -378,18 +378,17 @@ export const createAgents = async (args = {}) => {
378
378
  if (!skipInkeepMcp) {
379
379
  await addInkeepMcp();
380
380
  }
381
- p.note(`${color.green('✓')} Workspace created at: ${color.cyan(directoryPath)}\n\n` +
382
- `${color.yellow('Next steps:')}\n` +
383
- ` cd ${dirName}\n` +
384
- ` pnpm setup # Setup project in database\n` +
385
- ` pnpm dev # Start development servers\n\n` +
386
- `${color.yellow('Available services:')}\n` +
387
- ` Agents API: http://127.0.0.1:3002\n` +
388
- ` Manage UI: Available with management API\n` +
389
- `\n${color.yellow('Configuration:')}\n` +
390
- ` • Edit .env for environment variables\n` +
391
- ` Edit files in src/projects/${projectId}/ for agent definitions\n` +
392
- ` • Use 'inkeep push' to deploy agents to the platform\n`, 'Ready to go!');
381
+ p.log.success(`Workspace created at: ${color.cyan(directoryPath)}`);
382
+ p.note(`${color.yellow('1. Start:')}\n` +
383
+ ` cd ${dirName}\n` +
384
+ ` pnpm setup-dev\n` +
385
+ ` pnpm dev\n\n` +
386
+ `${color.yellow('2. Explore:')}\n` +
387
+ ` Dashboard: http://127.0.0.1:3000\n` +
388
+ ` Agents API: http://127.0.0.1:3002\n\n` +
389
+ `${color.yellow('3. Customize:')}\n` +
390
+ ` • Edit your agents in src/projects/\n` +
391
+ ` Use 'inkeep push' to apply`, 'Next steps 🚀');
393
392
  }
394
393
  catch (error) {
395
394
  s.stop();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.48.2",
3
+ "version": "0.48.3",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "degit": "^2.8.4",
34
34
  "fs-extra": "^11.0.0",
35
35
  "picocolors": "^1.0.0",
36
- "@inkeep/agents-core": "0.48.2"
36
+ "@inkeep/agents-core": "0.48.3"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/degit": "^2.8.6",