@inkeep/create-agents 0.35.3 → 0.35.5
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 +4 -1
- package/package.json +2 -2
package/dist/utils.js
CHANGED
|
@@ -69,7 +69,6 @@ export const defaultAnthropicModelConfigurations = {
|
|
|
69
69
|
};
|
|
70
70
|
export const createAgents = async (args = {}) => {
|
|
71
71
|
let { dirName, openAiKey, anthropicKey, googleKey, template, customProjectId, disableGit, localAgentsPrefix, localTemplatesPrefix, skipInkeepCli, skipInkeepMcp, } = args;
|
|
72
|
-
console.log('skipInkeepCli', skipInkeepCli);
|
|
73
72
|
const tenantId = 'default';
|
|
74
73
|
let projectId;
|
|
75
74
|
let templateName;
|
|
@@ -528,6 +527,7 @@ export async function addInkeepMcp() {
|
|
|
528
527
|
{ value: 'cursor-global', label: 'Cursor (global, all projects)' },
|
|
529
528
|
{ value: 'windsurf', label: 'Windsurf' },
|
|
530
529
|
{ value: 'vscode', label: 'VSCode' },
|
|
530
|
+
{ value: 'skip', label: 'Skip' },
|
|
531
531
|
],
|
|
532
532
|
initialValue: 'cursor-project',
|
|
533
533
|
});
|
|
@@ -636,6 +636,9 @@ export async function addInkeepMcp() {
|
|
|
636
636
|
` start the MCP by going to ${configPath} and clicking start`);
|
|
637
637
|
break;
|
|
638
638
|
}
|
|
639
|
+
case 'skip': {
|
|
640
|
+
break;
|
|
641
|
+
}
|
|
639
642
|
}
|
|
640
643
|
}
|
|
641
644
|
catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.5",
|
|
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.35.
|
|
37
|
+
"@inkeep/agents-core": "0.35.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/degit": "^2.8.6",
|