@inkeep/create-agents 0.30.3 → 0.30.4
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/dist/utils.js +8 -1
- package/package.json +2 -2
package/dist/utils.js
CHANGED
|
@@ -203,7 +203,7 @@ export const createAgents = async (args = {}) => {
|
|
|
203
203
|
s.start('Cleaning existing directory...');
|
|
204
204
|
await fs.emptyDir(directoryPath);
|
|
205
205
|
}
|
|
206
|
-
s.message('Building template...');
|
|
206
|
+
s.message('Building template (this may take a while)...');
|
|
207
207
|
await cloneTemplateHelper({
|
|
208
208
|
targetPath: directoryPath,
|
|
209
209
|
localPrefix: localAgentsPrefix,
|
|
@@ -350,6 +350,13 @@ export const myProject = project({
|
|
|
350
350
|
}
|
|
351
351
|
async function installDependencies() {
|
|
352
352
|
await execAsync('pnpm install');
|
|
353
|
+
try {
|
|
354
|
+
await execAsync('pnpm upgrade-agents');
|
|
355
|
+
}
|
|
356
|
+
catch (error) {
|
|
357
|
+
console.warn('Warning: Package upgrade failed, continuing with current versions');
|
|
358
|
+
console.warn(error instanceof Error ? error.message : 'Unknown error');
|
|
359
|
+
}
|
|
353
360
|
}
|
|
354
361
|
async function initializeGit() {
|
|
355
362
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.4",
|
|
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.30.
|
|
37
|
+
"@inkeep/agents-core": "0.30.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/degit": "^2.8.6",
|