agent-mp 0.5.29 → 0.5.30

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.
@@ -244,6 +244,9 @@ function detectModels(cliName) {
244
244
  }
245
245
  }
246
246
  function buildCmd(cliName, model) {
247
+ // openai-compatible no es un CLI real — es la API de Qwen via API key
248
+ if (cliName === 'openai-compatible')
249
+ cliName = 'qwen';
247
250
  const info = CLI_REGISTRY[cliName];
248
251
  if (!info)
249
252
  return `${cliName} -m ${model}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-mp",
3
- "version": "0.5.29",
3
+ "version": "0.5.30",
4
4
  "description": "Deterministic multi-agent CLI orchestrator — plan, code, review",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",