open-agents-ai 0.186.28 → 0.186.29

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -51200,7 +51200,7 @@ Clone a new voice: /voice clone <wav-file> [name]`);
51200
51200
  return "handled";
51201
51201
  }
51202
51202
  const { loadSponsorConfig: loadSponsorConfig2, saveSponsorConfig: saveSponsorConfig2, runSponsorWizard: runSponsorWizard2, showSponsorDashboard: showSponsorDashboard2 } = await Promise.resolve().then(() => (init_sponsor_wizard(), sponsor_wizard_exports));
51203
- const projectDir = process.cwd();
51203
+ const projectDir = ctx.repoRoot ?? process.cwd();
51204
51204
  const existingConfig = loadSponsorConfig2(projectDir);
51205
51205
  const sponsorRl = ctx.rl;
51206
51206
  if (arg === "pause" && existingConfig?.status === "active") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.186.28",
3
+ "version": "0.186.29",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",