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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2026-04-27

### Added

- `scripts/lib/parsers.py` — shared TOML and YAML parser loading with optional dependency fallback
- `load_toml` / `load_yaml` — strict parsers that raise `ParserUnavailableError` when deps are missing
- `load_toml_safe` / `load_yaml_safe` — graceful parsers returning `{}` on any error
- Comprehensive config parsing tests with real-world fixtures for Python, JS, Go, and Rust

### Changed

- Replaced custom TOML parsing in `config.py` with `tomllib` / `tomli` via shared parser
- Replaced custom YAML parsing in `config.py` with `PyYAML` `safe_load` via shared parser
- Moved `tomli` and `PyYAML` to optional `[parsers]` dependency group

### Removed

- `_parse_toml`, `_parse_toml_value`, `_split_toml_array` — replaced by real TOML parser
- `_parse_yaml_simple`, `_yaml_scalar` — replaced by real YAML parser

## [0.3.0] - 2026-04-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agentskill"
version = "0.3.0"
version = "0.4.0"
description = "Analyze repositories and synthesize AGENTS.md"
requires-python = ">=3.10"

Expand Down