@inkeep/create-agents 0.1.9 → 0.2.0
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/README.md +3 -3
- package/dist/utils.js +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,10 +96,10 @@ my-agent-directory/
|
|
|
96
96
|
inkeep dev
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
4. **Deploy your
|
|
99
|
+
4. **Deploy your project:**
|
|
100
100
|
```bash
|
|
101
101
|
cd src/<project-id>/
|
|
102
|
-
pnpm inkeep push
|
|
102
|
+
pnpm inkeep push
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
5. **Test your agents:**
|
|
@@ -120,7 +120,7 @@ After setup, you'll have access to:
|
|
|
120
120
|
- `pnpm dev` - Start both API services with hot reload
|
|
121
121
|
- `pnpm db:push` - Apply database schema changes
|
|
122
122
|
- `inkeep dev` - Start the Manage UI
|
|
123
|
-
- `inkeep push
|
|
123
|
+
- `inkeep push` - Deploy project configurations
|
|
124
124
|
- `inkeep chat` - Interactive chat with your agents
|
|
125
125
|
|
|
126
126
|
## Environment Variables
|
package/dist/utils.js
CHANGED
|
@@ -283,6 +283,11 @@ async function setupPackageConfigurations(dirName) {
|
|
|
283
283
|
node: '>=22.x',
|
|
284
284
|
},
|
|
285
285
|
packageManager: 'pnpm@10.10.0',
|
|
286
|
+
pnpm: {
|
|
287
|
+
onlyBuiltDependencies: [
|
|
288
|
+
'keytar'
|
|
289
|
+
]
|
|
290
|
+
},
|
|
286
291
|
};
|
|
287
292
|
await fs.writeJson('package.json', rootPackageJson, { spaces: 2 });
|
|
288
293
|
// Create pnpm-workspace.yaml for pnpm workspaces
|
|
@@ -517,7 +522,7 @@ dotenv.config();
|
|
|
517
522
|
const dbUrl = process.env.DB_FILE_NAME || 'file:local.db';
|
|
518
523
|
const tenantId = '${config.tenantId}';
|
|
519
524
|
const projectId = '${config.projectId}';
|
|
520
|
-
const projectName = '${config.
|
|
525
|
+
const projectName = '${config.projectId}';
|
|
521
526
|
const projectDescription = 'Generated Inkeep Agents project';
|
|
522
527
|
|
|
523
528
|
async function setupProject() {
|