@zachjxyz/moxie 0.4.1 → 0.4.2

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.4.1"
19
+ MOXIE_VERSION="0.4.2"
20
20
  # Resolve symlinks (npm installs bin as a symlink)
21
21
  _self="$0"
22
22
  while [ -L "$_self" ]; do
package/lib/phases.sh CHANGED
@@ -861,7 +861,7 @@ cmd_run() {
861
861
  trap 'rm -f "$MOXIE_DIR/moxie.pid"' EXIT
862
862
 
863
863
  if [ "$MOXIE_PLATFORM" = "darwin" ]; then
864
- caffeinate -d -i -s bash -c "
864
+ caffeinate -d -i -m -s bash -c "
865
865
  set -euo pipefail; cd '$(pwd)'
866
866
  export DRY_RUN=0 MOXIE_ROOT='$MOXIE_ROOT' MOXIE_LIB='$MOXIE_LIB'
867
867
  source '$MOXIE_LIB/platform.sh'; source '$MOXIE_LIB/core.sh'
@@ -949,7 +949,7 @@ cmd_start() {
949
949
  "
950
950
 
951
951
  if [ "$MOXIE_PLATFORM" = "darwin" ]; then
952
- nohup caffeinate -d -i -s bash -c "$_bg_script" > "$log_file" 2>&1 &
952
+ nohup caffeinate -d -i -m -s bash -c "$_bg_script" > "$log_file" 2>&1 &
953
953
  elif [ "$MOXIE_PLATFORM" = "linux" ] && command -v systemd-inhibit &>/dev/null; then
954
954
  nohup systemd-inhibit --what=idle:sleep --who=moxie --why="moxie pipeline" \
955
955
  bash -c "$_bg_script" > "$log_file" 2>&1 &
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zachjxyz/moxie",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
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"