@inkeep/agents-cli 0.0.0-dev-20260219103848 → 0.0.0-dev-20260219105522

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.
@@ -177,7 +177,7 @@ async function getAvailableTemplates(templatePath = "template-projects", local)
177
177
  const fullTemplatePath = path.join(local, templatePath);
178
178
  const items = await fs.readdir(fullTemplatePath);
179
179
  const directories = [];
180
- for (const item of items) if ((await fs.stat(path.join(fullTemplatePath, item))).isDirectory() && item !== "weather-project") directories.push(item);
180
+ for (const item of items) if ((await fs.stat(path.join(fullTemplatePath, item))).isDirectory()) directories.push(item);
181
181
  return directories;
182
182
  }
183
183
  const response = await fetch(`https://api.github.com/repos/inkeep/agents/contents/agents-cookbook/${templatePath}`);
@@ -189,7 +189,7 @@ async function getAvailableTemplates(templatePath = "template-projects", local)
189
189
  throw new Error(`Failed to parse templates response. Please check your internet connection and try again. ${error}`);
190
190
  }
191
191
  if (!Array.isArray(contents)) throw new Error("Unexpected response format from templates. Please check your internet connection and try again");
192
- return contents.filter((item) => item.type === "dir" && item.name !== "weather-project").map((item) => item.name);
192
+ return contents.filter((item) => item.type === "dir").map((item) => item.name);
193
193
  }
194
194
 
195
195
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20260219103848",
3
+ "version": "0.0.0-dev-20260219105522",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -40,8 +40,8 @@
40
40
  "tsx": "^4.20.5",
41
41
  "yaml": "^2.7.0",
42
42
  "zod": "^4.3.6",
43
- "@inkeep/agents-core": "^0.0.0-dev-20260219103848",
44
- "@inkeep/agents-sdk": "^0.0.0-dev-20260219103848"
43
+ "@inkeep/agents-core": "^0.0.0-dev-20260219105522",
44
+ "@inkeep/agents-sdk": "^0.0.0-dev-20260219105522"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/degit": "^2.8.6",
@@ -52,7 +52,7 @@
52
52
  "vitest": "^3.2.4"
53
53
  },
54
54
  "peerDependencies": {
55
- "@inkeep/agents-manage-ui": "0.0.0-dev-20260219103848"
55
+ "@inkeep/agents-manage-ui": "0.0.0-dev-20260219105522"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public",