@zachjxyz/moxie 0.3.8 → 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 +1 -1
- package/lib/gateway-agent.mjs +1 -1
- package/package.json +1 -1
package/bin/moxie
CHANGED
package/lib/gateway-agent.mjs
CHANGED
|
@@ -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 || '
|
|
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
|
+
"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"
|