Skip to content

Releases: Khip01/opencode-session-manager

v0.1.0-alpha.4

v0.1.0-alpha.4 Pre-release
Pre-release

Choose a tag to compare

@Khip01 Khip01 released this 26 Jun 16:53
beb8b8e

opencode-session-manager v0.1.0-alpha.4

See the README for full documentation.

Installation

One-line install (recommended)

Linux / macOS:

curl -fsSL https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.4/scripts/install.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.4/scripts/install.ps1 | iex

Or via Go

go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.4

Or download a binary

Download the appropriate archive from the assets below, verify the SHA256 checksum against *_checksums.txt, and extract the opencode-sm binary into a directory on your PATH.

Uninstallation

opencode-sm uninstall              # remove binary from standard locations
opencode-sm uninstall --purge      # also remove ~/.config/opencode-sm/
opencode-sm uninstall --dry-run    # preview without removing

If the binary is missing or broken:

  • Linux / macOS: bash scripts/uninstall.sh
  • Windows (PowerShell): powershell -File scripts/uninstall.ps1

Changelog

See CHANGELOG.md for all alpha.4 changes.

opencode-session-manager 0.1.0-alpha.3

Pre-release

Choose a tag to compare

@Khip01 Khip01 released this 25 Jun 19:41
80e8376

opencode-session-manager 0.1.0-alpha.3

See the README for full documentation.

Installation

One-line install (recommended)

Linux / macOS:

curl -fsSL https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.3/scripts/install.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.3/scripts/install.ps1 | iex

Or via Go

go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.3

Or download a binary

Download the appropriate archive from the assets below, verify
the SHA256 checksum against *_checksums.txt, and extract the
opencode-sm binary into a directory on your PATH.

Uninstallation

If you installed via the binary or go install:

opencode-sm uninstall              # remove binary from standard locations
opencode-sm uninstall --purge      # also remove ~/.config/opencode-sm/
opencode-sm uninstall --dry-run    # preview without removing

If the binary is missing or broken, use the fallback script:

Linux / macOS: bash scripts/uninstall.sh
Windows (PowerShell): powershell -File scripts/uninstall.ps1

Both fallback scripts delegate to opencode-sm uninstall when the
binary is available on PATH.

Changelog

Bug fixes

  • 80e8376 fix: install scripts check directory writability before selecting target
  • b893b94 fix: sync release markdown and add in-sync rule to AGENTS.md

Full Changelog: v0.1.0-alpha.2...v0.1.0-alpha.3

opencode-session-manager 0.1.0-alpha.2

Pre-release

Choose a tag to compare

@Khip01 Khip01 released this 25 Jun 18:56
685b7e5

Installation

One-line install (recommended)

Linux / macOS:

curl -fsSL https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.2/scripts/install.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.2/scripts/install.ps1 | iex

Or via Go

go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.2

Or download a binary

Download the appropriate archive from the assets below, verify the
SHA256 checksum against *_checksums.txt, and extract the opencode-sm
binary into a directory on your PATH.

Uninstallation

If you installed via the binary or go install:

opencode-sm uninstall              # remove binary from standard locations
opencode-sm uninstall --purge      # also remove ~/.config/opencode-sm/
opencode-sm uninstall --dry-run    # preview without removing

If the binary is missing or broken, use the fallback script:

Linux / macOS: bash scripts/uninstall.sh
Windows (PowerShell): powershell -File scripts/uninstall.ps1

Both fallback scripts delegate to opencode-sm uninstall when the
binary is available on PATH.

What's Changed

Features

  • opencode-sm uninstall subcommand for self-uninstall with
    --prefix DIR, --purge, and --dry-run flags. Available on
    Linux, macOS, and Windows. Works either as subcommand
    (opencode-sm uninstall) or flag (opencode-sm --uninstall).
  • scripts/uninstall.sh and scripts/uninstall.ps1 now delegate
    to the binary subcommand when available, keeping behavior
    consistent across all uninstall paths. Scripts fall back to a
    local scan only when the binary is missing or off PATH.
  • Project-level AGENTS.md documenting tech stack, repository
    layout, critical paths, and common pitfalls for future agents.
  • CHANGELOG.md initialized with Keep a Changelog format.

Bug Fixes

  • Install scripts (install.sh and install.ps1) now resolve
    pre-release versions correctly. Previously they used
    /releases/latest which returns 404 when only alpha/beta tags
    exist, breaking install on repos that have not yet cut a stable
    release.

Notes

  • This is an alpha release. APIs may change. Backups are created
    before every write to <db>.opencode-sm-backup.
  • After downloading, verify SHA256 against the published
    *_checksums.txt file before installing.

Full Changelog: v0.1.0-alpha.1...v0.1.0-alpha.2

opencode-session-manager 0.1.0-alpha.1

Pre-release

Choose a tag to compare

@Khip01 Khip01 released this 25 Jun 14:57
864b419

opencode-session-manager 0.1.0-alpha.1

See the README for documentation.

Installation

Download the appropriate binary for your platform below.

Or install with Go:

go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@0.1.0-alpha.1

Changelog

Features

  • 248d64a feat: add SQLite layer and Phase 1 relinker for opencode sessions
  • 73f1baf feat: add cross-project migrate and live list filtering
  • 4931abe feat: add interactive TUI MVP with session browser and detail preview
  • 579280e feat: add interactive relink flow with modal stack

Bug fixes

  • 0ec9075 fix: address CI lint findings and test failures
  • 1d091c1 fix: cross-platform CI compatibility
  • 0290e89 fix: lower Go directive to 1.24 for golangci-lint v1.x compatibility

Others

  • 1fa4414 Initial commit
  • 864b419 build: add goreleaser config for multi-platform releases

Full Changelog: ...v0.1.0-alpha.1