polydev-ai 1.8.38 → 1.8.39

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/lib/cliManager.js CHANGED
@@ -753,7 +753,13 @@ This is a known issue with @google/gemini-cli@0.3.4 and older Node.js versions.`
753
753
  const child = spawn(command, args, {
754
754
  stdio: ['pipe', 'pipe', 'pipe'],
755
755
  shell: process.platform === 'win32',
756
- timeout: timeoutMs
756
+ timeout: timeoutMs,
757
+ // Explicitly pass environment to ensure HOME is available for CLI tools
758
+ // that read config from ~/.config or similar paths (e.g., Gemini CLI)
759
+ env: {
760
+ ...process.env,
761
+ HOME: process.env.HOME || os.homedir()
762
+ }
757
763
  });
758
764
 
759
765
  if (child.stdin) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.8.38",
3
+ "version": "1.8.39",
4
4
  "description": "Agentic workflow assistant with CLI integration - get diverse perspectives from multiple LLMs when stuck or need enhanced reasoning",
5
5
  "keywords": [
6
6
  "mcp",
@@ -67,7 +67,7 @@
67
67
  "lucide-react": "^0.542.0",
68
68
  "marked": "^16.2.1",
69
69
  "next": "^15.5.7",
70
- "polydev-ai": "^1.8.36",
70
+ "polydev-ai": "^1.8.38",
71
71
  "posthog-js": "^1.157.2",
72
72
  "prismjs": "^1.30.0",
73
73
  "react": "^18.3.1",