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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ summary: Timeline of guardrail helper changes mirrored from Sweetistics and rela

# Changelog

## 2026-07-22 — Validator UTF-8 Fix
- `scripts/validate-skills` reads `SKILL.md` as UTF-8 instead of inheriting the process locale, so validation and the pre-commit hook stop failing with `invalid byte sequence in US-ASCII` in shells without `LANG` set.

## 2026-07-22 — Remove Legacy Maintainer Loop
- Removed the legacy current-repository `bram-maintainer-loop` skill and project-loop prompt; maintainer orchestration now routes only through `bram-maintainer-loop-v2`.

Expand Down
2 changes: 1 addition & 1 deletion scripts/validate-skills
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ errors = []
names = {}

skill_files.each do |path|
text = File.read(path)
text = File.read(path, encoding: "UTF-8")
data, error = load_front_matter(path, text)

if error
Expand Down
Loading