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-02 — UTF-8 Skill Validation
- Made skill validation explicitly read UTF-8 so C locales accept non-ASCII skill front matter. Thanks @chaochaoweb3.

## 2026-07-02 — Orchestrator Ownership
- Kept `maintainer-orchestrator` skill maintenance in the root orchestration session and enforced exactly one Codex app thread per project, removing project-to-task thread fan-out including the OpenClaw exception.

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