Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 1.9 KB

File metadata and controls

68 lines (45 loc) · 1.9 KB

Installation

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.

One-Command 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)" -- --enable

Preview changes:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)" -- --dry-run

Force reinstall after backups:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/sugarpoo/codex-learning-loop/main/install.sh)" -- --force

Inspect-First Install

If 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.sh

Manual Clone Install

This 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.sh

Preview changes first:

./scripts/install.sh --dry-run

Enable automation:

./scripts/install.sh --enable

Existing files are backed up before replacement. The installer does not delete learning data.