Skip to content

Releases: Alegau03/CTX

CTX v0.2.5: OpenCode-first graph memory and local context runtime

07 May 10:02

Choose a tag to compare

Highlights

  • easier public distribution across GitHub Releases, Homebrew, and crates.io
  • new ctx update flow with channel-aware guidance
  • safer ignore handling with glob-aware ignored_files and broader default cache/worktree ignores
  • true graph rebuild behavior: ctx reindex and ctx graph rebuild now prune stale entries correctly
  • README now includes the new demo GIF flow

Install

curl -fsSL https://raw.githubusercontent.com/Alegau03/CTX/main/scripts/install.sh | sh
ctx doctor

Alternative channels:

cargo install ctx-cli
brew tap Alegau03/ctx
brew install ctx

OpenCode Quick Start

ctx init
ctx index
ctx opencode install
opencode

Inside OpenCode:

/ctx
/ctx-memory-bootstrap
/ctx-memory-search auth
/ctx-pack fix refresh token bug

Notes

  • CTX is a local-first context runtime, not another agent launcher.
  • OpenCode remains the primary daily interface.
  • Graph memory replaces repeated giant markdown rereads with queryable directives.

CTX v0.2.4: OpenCode-first graph memory and local context runtime

06 May 10:18

Choose a tag to compare

Highlights

Install

shasum -a 256 -c SHA256SUMS
tar -xzf ctx-0.2.4-aarch64-apple-darwin.tar.gz
sudo install -m 0755 ctx-0.2.4-aarch64-apple-darwin/ctx /usr/local/bin/ctx
ctx doctor

For Windows, download the matching .zip release and add ctx.exe to your PATH.
If this release only ships a macOS Apple Silicon archive, direct other platforms to source install.

OpenCode Quick Start

ctx init
ctx index
ctx opencode install
opencode

Inside OpenCode:

/ctx-memory-bootstrap
/ctx-memory-search auth
/ctx-pack fix refresh token bug

Benchmark Evidence

  • demo/fixtures/opencode-auth-lab/benchmarks/report.md
  • demo/fixtures/opencode-auth-lab/benchmarks/report.json

Verification

scripts/release/verify-artifact.sh dist/ctx-0.2.4-aarch64-apple-darwin.tar.gz dist/SHA256SUMS

Notes

  • OpenCode is the primary daily path.
  • Graph memory is the preferred replacement for giant instruction markdown rereads.

CTX v0.2.3: OpenCode-first graph memory and local context runtime

06 May 08:53

Choose a tag to compare

Highlights

Install

shasum -a 256 -c SHA256SUMS
tar -xzf ctx-0.2.3-aarch64-apple-darwin.tar.gz
sudo install -m 0755 ctx-0.2.3-aarch64-apple-darwin/ctx /usr/local/bin/ctx
ctx doctor

For Windows, download the matching .zip release and add ctx.exe to your PATH.
If this release only ships a macOS Apple Silicon archive, direct other platforms to source install.

OpenCode Quick Start

ctx init
ctx index
ctx opencode install
opencode

Inside OpenCode:

/ctx-memory-bootstrap
/ctx-memory-search auth
/ctx-pack fix refresh token bug

Benchmark Evidence

  • demo/fixtures/opencode-auth-lab/benchmarks/report.md
  • demo/fixtures/opencode-auth-lab/benchmarks/report.json

Verification

scripts/release/verify-artifact.sh dist/ctx-0.2.3-aarch64-apple-darwin.tar.gz dist/SHA256SUMS

Notes

  • OpenCode is the primary daily path.
  • Graph memory is the preferred replacement for giant instruction markdown rereads.

CTX v0.1.0: OpenCode-first graph memory and local context runtime

30 Apr 07:48

Choose a tag to compare

Highlights

  • OpenCode-first CTX workflow: ctx init, ctx index, ctx opencode install, then /ctx-* inside OpenCode
  • Local graph memory for project guidance, retrieval, compact task packs, and log pruning
  • Reproducible benchmark fixture plus external public benchmark evidence
  • Local-first defaults with MCP integration, local stats, and audit logging

Install

macOS Apple Silicon

Download the attached release assets, then run:

shasum -a 256 -c SHA256SUMS
tar -xzf ctx-0.1.0-aarch64-apple-darwin.tar.gz
sudo install -m 0755 ctx-0.1.0-aarch64-apple-darwin/ctx /usr/local/bin/ctx
ctx help
ctx doctor

Other Platforms

macOS Intel, Linux, and Windows should install from source for now:

git clone https://github.com/Alegau03/CTX.git
cd CTX
cargo install --locked --path crates/ctx-cli
ctx help
ctx doctor

OpenCode Quick Start

In any project:

cd /path/to/your/project
ctx init
ctx index
ctx opencode install
opencode

Inside OpenCode, start with:

/ctx

Recommended first commands:

/ctx-doctor
/ctx-memory-bootstrap
/ctx-memory-search auth
/ctx-retrieve refresh token auth failure
/ctx-pack fix auth refresh regression
/ctx-prune-logs npm run test:auth
/ctx-stats

Benchmark Evidence

Fixture benchmark on demo/fixtures/opencode-auth-lab:

  • 56.72% token reduction
  • query coverage markdown=1.00, graph=1.00
  • answer success markdown=33.33%, graph=100.00%
  • quality wins markdown=0, graph=1, ties=0

External public benchmark on agentsmd/agents.md:

  • 72.62% token reduction
  • query coverage markdown=1.00, graph=0.89
  • success rate markdown=0.50, graph=1.00
  • quality wins markdown=0, graph=1, ties=0

Assets

Attach these files to this release:

ctx-0.1.0-aarch64-apple-darwin.tar.gz
SHA256SUMS
release-manifest.json

Notes

OpenCode remains the primary interface; CTX provides local context infrastructure underneath
This release currently ships a prebuilt archive for macOS Apple Silicon
Additional platform archives can be added in later releases