Skip to content

Commit ba40a0b

Browse files
committed
Prepare v1.4.0 release
1 parent 332b52c commit ba40a0b

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.4.0]
9+
10+
### Added
11+
12+
- Add `--allow-dirs` flag to accept specific non-standard directories without
13+
warnings ([#39]). Allowed directories are exempt from deep-nesting checks
14+
and skipped for orphan detection (with an informational note). Useful for
15+
development directories like `evals/` or `testing/` that aren't part of the
16+
spec but are needed during skill development.
17+
18+
### Changed
19+
20+
- Refactor `--only` and `--skip` flags from manual comma-separated string
21+
parsing to `StringSliceVar`, matching the `--allow-dirs` flag style. Both
22+
comma-separated (`--only=structure,links`) and repeated
23+
(`--only=structure --only=links`) syntax are now supported. Existing
24+
comma-separated usage is unaffected.
25+
- Restructure `validate structure` and `check` flag documentation in the
26+
README from dense prose paragraphs into scannable tables.
27+
828
## [1.3.1]
929

1030
### Added
@@ -103,6 +123,7 @@ First stable release. Includes the complete CLI and importable library packages.
103123
- `types` — shared data types (`Report`, `Result`, `Level`, etc.)
104124
- `judge.LLMClient` interface for custom LLM providers
105125

126+
[1.4.0]: https://github.com/agent-ecosystem/skill-validator/compare/v1.3.1...v1.4.0
106127
[1.3.1]: https://github.com/agent-ecosystem/skill-validator/compare/v1.3.0...v1.3.1
107128
[1.3.0]: https://github.com/agent-ecosystem/skill-validator/compare/v1.2.1...v1.3.0
108129
[1.2.1]: https://github.com/agent-ecosystem/skill-validator/compare/v1.2.0...v1.2.1
@@ -115,3 +136,4 @@ First stable release. Includes the complete CLI and importable library packages.
115136
[#26]: https://github.com/agent-ecosystem/skill-validator/issues/26
116137
[#23]: https://github.com/agent-ecosystem/skill-validator/issues/23
117138
[#27]: https://github.com/agent-ecosystem/skill-validator/issues/27
139+
[#39]: https://github.com/agent-ecosystem/skill-validator/issues/39

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.3.1"
14+
const version = "v1.4.0"
1515

1616
var (
1717
outputFormat string

0 commit comments

Comments
 (0)