Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https://

## [Unreleased]

## [1.20.9] - 2026-07-13

### Fixed
- Activating the OpenCode backend no longer aborts skill install with
`skills: unknown backend "opencode"`. OpenCode is now a first-class skills
backend: the QA skill catalog materializes into `~/.config/opencode/skills/`
(name + description frontmatter, matching OpenCode's recognized schema) on
activation and on every launch, alongside Claude Code and Codex. `/skills`
status and `/skills install` now cover the OpenCode (`oc`) backend too.

## [1.20.8] - 2026-07-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

// Version is set at build time via -ldflags "-X main.Version=x.y.z"
var Version = "1.20.8"
var Version = "1.20.9"

const Name = "qmax-code"

Expand Down
Loading