Skip to content

Commit 2391cd2

Browse files
committed
Prepare v1.5.0 release
1 parent eb0e3af commit 2391cd2

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.0]
9+
10+
### Added
11+
12+
- Add `claude-cli` LLM provider for scoring without API keys ([#43], [#44]). Uses the
13+
locally authenticated `claude` binary, making LLM scoring accessible to users
14+
with team or company subscriptions who don't have an explicit API key. Default
15+
model is `sonnet`.
16+
- Preflight check for the `claude` binary at client creation time, giving a
17+
clear error when the CLI is not installed.
18+
19+
### Fixed
20+
21+
- Documentation notes that `claude-cli` scores may be less consistent than
22+
API-based providers because the CLI loads local context (CLAUDE.md, memory,
23+
rules) into each scoring call.
24+
825
## [1.4.0]
926

1027
### Added

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/agent-ecosystem/skill-validator/types"
1212
)
1313

14-
const version = "v1.4.0"
14+
const version = "v1.5.0"
1515

1616
var (
1717
outputFormat string

0 commit comments

Comments
 (0)