Codex Learning Loop installs local scripts into ~/.local/bin, global guidance templates into ~/.codex, and a LaunchAgent template into ~/Library/LaunchAgents.
By default, install does not enable the daily LaunchAgent. Add --enable when you want daily automation enabled during install.
This path does not require git. It downloads the public GitHub archive, extracts it into a temporary directory, and runs the real installer at scripts/install.sh.
Install:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)"Install and enable daily automation:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)" -- --enablePreview changes:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)" -- --dry-runForce reinstall after backups:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)" -- --forceIf you prefer to inspect the bootstrap installer before running it:
curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh -o /tmp/codex-learning-loop-install.sh
less /tmp/codex-learning-loop-install.sh
/bin/bash /tmp/codex-learning-loop-install.sh --dry-run
/bin/bash /tmp/codex-learning-loop-install.shThis path requires git and is useful when you want a local checkout before installing.
git clone https://github.com/sugarpoo/codex-learning-loop.git
cd codex-learning-loop
./scripts/install.shPreview changes first:
./scripts/install.sh --dry-runEnable automation:
./scripts/install.sh --enableExisting files are backed up before replacement. The installer does not delete learning data.