Releases: Khip01/opencode-session-manager
Release list
v0.1.0-alpha.4
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 | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.4/scripts/install.ps1 | iexOr via Go
go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.4Or 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 removingIf 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
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 | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.3/scripts/install.ps1 | iexOr via Go
go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.3Or 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 removingIf 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
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 | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/Khip01/opencode-session-manager/v0.1.0-alpha.2/scripts/install.ps1 | iexOr via Go
go install github.com/Khip01/opencode-session-manager/cmd/opencode-sm@v0.1.0-alpha.2Or 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 removingIf 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 uninstallsubcommand for self-uninstall with
--prefix DIR,--purge, and--dry-runflags. Available on
Linux, macOS, and Windows. Works either as subcommand
(opencode-sm uninstall) or flag (opencode-sm --uninstall).scripts/uninstall.shandscripts/uninstall.ps1now 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.mddocumenting tech stack, repository
layout, critical paths, and common pitfalls for future agents. CHANGELOG.mdinitialized with Keep a Changelog format.
Bug Fixes
- Install scripts (
install.shandinstall.ps1) now resolve
pre-release versions correctly. Previously they used
/releases/latestwhich 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.txtfile before installing.
Full Changelog: v0.1.0-alpha.1...v0.1.0-alpha.2
opencode-session-manager 0.1.0-alpha.1
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.1Changelog
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
Full Changelog: ...v0.1.0-alpha.1