Skip to content

Releases: islee23520/lfg

v0.1.9

14 Jun 16:38

Choose a tag to compare

Release @islee23520/lfg v0.1.9.\n\n- Fix Grok release pack contracts.\n- Ship ESM plugin manifest metadata.\n- Tighten Grok-first OMO parity package readiness checks.\n- Restore canonical adapter plan docs required by release contracts.\n\nVerified with npm run verify and npm publish prepublish tests.

v0.1.6

11 Jun 03:03

Choose a tag to compare

Release v0.1.6

lfg setup is now safe by default and preserves healthy Grok installs unless you explicitly ask to overwrite.

Highlights:

  • npx @islee23520/lfg setup (and --json setup) is non-mutating by default. It only shows the plan and discovered models. No files are written.
  • setup --run now preserves a healthy stamped ~/.grok/installed-plugins/lfg (real directory + valid hooks). It only syncs model config from your discovered proxy. Use --force to force a full replace (also cleans up symlinks/legacy entries).
  • --preset grok (default) and --preset gpt let you choose whether Grok-native or GPT/Codex-style model ids are preferred for the default / fast / reasoning / coding aliases during discovery.
  • Model discovery now writes into ~/.grok/config.toml on every setup --run, even on the preserve path.
  • Public CLI surface is now strictly setup only. doctor and project-local are no longer exposed as top-level commands (re-run setup --run or inspect the JSON plan instead).
  • Fixed TOML section deduplication so that quoted vs bare keys like [lazycodex.models] and ["lazycodex".models] no longer produce duplicate blocks.

Recommended commands:

Just look (completely safe)

npx @islee23520/lfg setup
npx @islee23520/lfg --json setup
npx @islee23520/lfg --json setup --preset gpt
npx @islee23520/lfg --json setup --base-url http://127.0.0.1:8317/v1

Sync models / keep existing healthy install

npx @islee23520/lfg setup --run
npx @islee23520/lfg --json setup --run

Force full re-install of the adapter tree under ~/.grok

npx @islee23520/lfg setup --run --force

See README.md and docs/grok-cleanup-update.md for the updated flow.