Skip to content

Releases: supermodeltools/cli

v0.6.9

15 Apr 18:28

Choose a tag to compare

Changelog

Other

  • 4de71b7: security(gitzip): always exclude sensitive files from upload regardless of gitignore (@greynewell)

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.8...v0.6.9

v0.6.8

15 Apr 18:22

Choose a tag to compare

Changelog

Features

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.7...v0.6.8

v0.6.7

15 Apr 18:09
ae3497f

Choose a tag to compare

Changelog

Bug Fixes

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.6...v0.6.7

v0.6.6

15 Apr 17:52

Choose a tag to compare

Changelog

Features

  • 576d286: feat(watch): show syncing indicator when incremental update starts (@greynewell)

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.5...v0.6.6

v0.6.5

15 Apr 14:31

Choose a tag to compare

Changelog

Bug Fixes

  • 86b3df0: fix(npm): refactor extractZip for testability, add tests, fix tmpDir cleanup (@greynewell)
  • ab4bad3: fix(windows): Use native tar to bypass Windows Defender file lock crash (@PunchingElm)

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.4...v0.6.5

v0.6.4

15 Apr 12:13

Choose a tag to compare

Changelog

Features

  • 95decfb: feat(gitzip): respect .gitignore on all platforms via git ls-files fallback (@greynewell)

Other

  • 1f95df5: test(gitzip): add tests for large files, symlinks, and fallback via ls-files path (@greynewell)

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.3...v0.6.4

v0.6.3

15 Apr 12:03

Choose a tag to compare

Changelog

Bug Fixes

Other

Installation

macOS / Linux (Homebrew)

brew tap supermodeltools/cli https://github.com/supermodeltools/cli
brew install supermodeltools/cli/supermodel

macOS / Linux (curl)

curl -fsSL https://supermodeltools.com/install.sh | sh

Windows (Scoop)

scoop bucket add supermodel https://github.com/supermodeltools/cli
scoop install supermodel

npm

npm install -g @supermodeltools/cli

Full changelog: v0.6.2...v0.6.3

v0.6.2

14 Apr 16:59

Choose a tag to compare

Fix install.sh tty detection and scoop smoke test PATH — all install methods now verified in CI.

v0.6.1

14 Apr 16:46

Choose a tag to compare

Add README to npm package (@supermodeltools/cli).

v0.6.0

13 Apr 21:53
fd65e1c

Choose a tag to compare

What's new

New features

  • supermodel skill — emits an optimized CLAUDE.md prompt for Claude Code, instructing agents to use .graph shard files for smarter navigation. Auto-generates what used to require hand-crafted prompts; benchmarks show 50–60% cost reduction vs naked Claude.
  • Home/root directory guard — refuses to run analyze or generate in / or ~ to prevent accidental mass uploads.
  • Upload size warning — warns when the archive exceeds 50 MB and suggests adding exclude rules.
  • Offline fallback — serves stale cached results when the API is unreachable instead of hard-failing.
  • Cache TTL — local cache entries expire after 30 days; cache.Prune() and cache.Stats() for management.
  • supermodel update — checks for and installs new releases from GitHub.
  • Enhanced supermodel status — shows cache size and last analysis timestamp.
  • exclude_patterns in .supermodel.json — glob patterns (including **) to fine-tune what goes into the upload archive.

Bug fixes

  • Fixed UUID remap in incremental shard updates for Type and Class nodes (#107).
  • Windows CI: USERPROFILE, TMP/TEMP, and filepath separator fixes across test suite.

Benchmark

Four-way comparison on a 270k-line Django repo:

Cohort Cost Turns Duration
Naked Claude $0.30 20 122s
+ Supermodel (crafted) $0.12 9 29s
+ Supermodel (auto) $0.15 11 42s
Three-file shards $0.25 16 73s

supermodel skill captures 83% of the hand-crafted prompt's savings with zero manual effort.