@zachjxyz/moxie 0.3.9 → 0.4.0

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/bin/moxie CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  set -euo pipefail
18
18
 
19
- MOXIE_VERSION="0.3.9"
19
+ MOXIE_VERSION="0.4.0"
20
20
  # Resolve symlinks (npm installs bin as a symlink)
21
21
  _self="$0"
22
22
  while [ -L "$_self" ]; do
@@ -15,7 +15,7 @@ const API_KEY = process.env.GATEWAY_API_KEY;
15
15
  const ENDPOINT = process.env.GATEWAY_ENDPOINT || 'https://ai-gateway.vercel.sh';
16
16
  const MODEL = process.env.GATEWAY_MODEL;
17
17
  const MAX_TURNS = parseInt(process.env.GATEWAY_MAX_TURNS || '50', 10);
18
- const IDLE_TIMEOUT_MS = parseInt(process.env.GATEWAY_IDLE_TIMEOUT || '300000', 10);
18
+ const IDLE_TIMEOUT_MS = parseInt(process.env.GATEWAY_IDLE_TIMEOUT || '600000', 10);
19
19
  const PHASE = process.env.GATEWAY_PHASE || 'unknown';
20
20
  const AGENT_NAME = process.env.GATEWAY_AGENT || 'unknown';
21
21
  const RUN_ID = process.env.GATEWAY_RUN_ID || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zachjxyz/moxie",
3
- "version": "0.3.9",
3
+ "version": "0.4.0",
4
4
  "description": "Run multiple AI coding agents through spec-driven phases with quorum convergence. Supports CLI agents (Claude, Codex, Qwen, Aider, Goose, Amp, Cline, Roo) and Vercel AI Gateway models.",
5
5
  "bin": {
6
6
  "moxie": "bin/moxie"