orquesta-cli 0.2.11 → 0.2.12

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.
@@ -360,7 +360,7 @@ export class ConfigManager {
360
360
  }
361
361
  getLocalOnlyEndpoints() {
362
362
  const config = this.getConfig();
363
- return config.endpoints;
363
+ return config.endpoints.filter((ep) => ep.provider !== 'batuta' && ep.id !== 'batuta-proxy' && !/^batuta(\s|\b)/i.test(ep.name || ''));
364
364
  }
365
365
  getOrchestrationConfig() {
366
366
  return this.config?.orchestration ?? {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",