@zachjxyz/moxie 0.3.2 → 0.3.3
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/phases.sh +8 -8
- package/package.json +1 -1
package/bin/moxie
CHANGED
package/lib/phases.sh
CHANGED
|
@@ -857,8 +857,8 @@ cmd_run() {
|
|
|
857
857
|
set -euo pipefail; cd '$(pwd)'
|
|
858
858
|
export DRY_RUN=0 MOXIE_ROOT='$MOXIE_ROOT' MOXIE_LIB='$MOXIE_LIB'
|
|
859
859
|
source '$MOXIE_LIB/platform.sh'; source '$MOXIE_LIB/core.sh'
|
|
860
|
-
source '$MOXIE_LIB/
|
|
861
|
-
source '$MOXIE_LIB/tokens.sh'
|
|
860
|
+
source '$MOXIE_LIB/gateway-keys.sh'; source '$MOXIE_LIB/agents.sh'
|
|
861
|
+
source '$MOXIE_LIB/phases.sh'; source '$MOXIE_LIB/tokens.sh'
|
|
862
862
|
load_agents; _run_pipeline ${run_phases[*]}
|
|
863
863
|
"
|
|
864
864
|
elif [ "$MOXIE_PLATFORM" = "linux" ] && command -v systemd-inhibit &>/dev/null; then
|
|
@@ -866,8 +866,8 @@ cmd_run() {
|
|
|
866
866
|
set -euo pipefail; cd '$(pwd)'
|
|
867
867
|
export DRY_RUN=0 MOXIE_ROOT='$MOXIE_ROOT' MOXIE_LIB='$MOXIE_LIB'
|
|
868
868
|
source '$MOXIE_LIB/platform.sh'; source '$MOXIE_LIB/core.sh'
|
|
869
|
-
source '$MOXIE_LIB/
|
|
870
|
-
source '$MOXIE_LIB/tokens.sh'
|
|
869
|
+
source '$MOXIE_LIB/gateway-keys.sh'; source '$MOXIE_LIB/agents.sh'
|
|
870
|
+
source '$MOXIE_LIB/phases.sh'; source '$MOXIE_LIB/tokens.sh'
|
|
871
871
|
load_agents; _run_pipeline ${run_phases[*]}
|
|
872
872
|
"
|
|
873
873
|
else
|
|
@@ -875,8 +875,8 @@ cmd_run() {
|
|
|
875
875
|
set -euo pipefail; cd '$(pwd)'
|
|
876
876
|
export DRY_RUN=0 MOXIE_ROOT='$MOXIE_ROOT' MOXIE_LIB='$MOXIE_LIB'
|
|
877
877
|
source '$MOXIE_LIB/platform.sh'; source '$MOXIE_LIB/core.sh'
|
|
878
|
-
source '$MOXIE_LIB/
|
|
879
|
-
source '$MOXIE_LIB/tokens.sh'
|
|
878
|
+
source '$MOXIE_LIB/gateway-keys.sh'; source '$MOXIE_LIB/agents.sh'
|
|
879
|
+
source '$MOXIE_LIB/phases.sh'; source '$MOXIE_LIB/tokens.sh'
|
|
880
880
|
load_agents; _run_pipeline ${run_phases[*]}
|
|
881
881
|
"
|
|
882
882
|
fi
|
|
@@ -929,8 +929,8 @@ cmd_start() {
|
|
|
929
929
|
set -euo pipefail; cd '$(pwd)'
|
|
930
930
|
export DRY_RUN=0 MOXIE_ROOT='$MOXIE_ROOT' MOXIE_LIB='$MOXIE_LIB'
|
|
931
931
|
source '$MOXIE_LIB/platform.sh'; source '$MOXIE_LIB/core.sh'
|
|
932
|
-
source '$MOXIE_LIB/
|
|
933
|
-
source '$MOXIE_LIB/tokens.sh'
|
|
932
|
+
source '$MOXIE_LIB/gateway-keys.sh'; source '$MOXIE_LIB/agents.sh'
|
|
933
|
+
source '$MOXIE_LIB/phases.sh'; source '$MOXIE_LIB/tokens.sh'
|
|
934
934
|
load_agents
|
|
935
935
|
if [ -n '$target_phase' ]; then
|
|
936
936
|
phases=('$target_phase')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zachjxyz/moxie",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
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"
|