Summary
This issue documents pre-existing CI failures discovered during Wave 5.2.4 audit work (PR #702). These failures are unrelated to the audit report changes and represent technical debt in README files and project configuration files.
Scope
1. Broken Links in README Files
The following README files contain broken links to documentation:
instructions/README.md — broken links to instruction files (targets in instructions/)
skills/README.md — broken links to skill documentation (targets in skills/)
workflows/README.md — broken links to workflow files (targets in workflows/)
Fix: Verify link targets exist and update broken paths.
2. Frontmatter Validation Errors in .github/projects/ Files
Multiple issue files in .github/projects/ have invalid frontmatter:
- Missing required fields — some files lack
status, language, or other schema-required fields
- Invalid date formats — unquoted YAML dates (e.g.,
created_date: 2026-05-31) parsed as date objects instead of strings; schema expects strings
- Invalid enum values —
status field contains values outside allowed enum: ["active", "deprecated", "draft", "experimental"]
Fix:
- Quote all date fields:
created_date: '2026-05-31'
- Add missing required fields:
status, language, domain
- Use only valid
status values from allowed enum
- Validate all files with:
npm run validate:frontmatter
Related Issues
Next Steps
- Audit all README files for broken link targets
- Run frontmatter validation against
.github/projects/ files
- Fix all failures per remediation steps above
- Confirm
npm run validate:frontmatter passes cleanly
- Link this issue in related PRs for context
Priority: Normal
Domain: Governance
Type: Chore
Summary
This issue documents pre-existing CI failures discovered during Wave 5.2.4 audit work (PR #702). These failures are unrelated to the audit report changes and represent technical debt in README files and project configuration files.
Scope
1. Broken Links in README Files
The following README files contain broken links to documentation:
instructions/README.md— broken links to instruction files (targets ininstructions/)skills/README.md— broken links to skill documentation (targets inskills/)workflows/README.md— broken links to workflow files (targets inworkflows/)Fix: Verify link targets exist and update broken paths.
2. Frontmatter Validation Errors in
.github/projects/FilesMultiple issue files in
.github/projects/have invalid frontmatter:status,language, or other schema-required fieldscreated_date: 2026-05-31) parsed as date objects instead of strings; schema expects stringsstatusfield contains values outside allowed enum:["active", "deprecated", "draft", "experimental"]Fix:
created_date: '2026-05-31'status,language,domainstatusvalues from allowed enumnpm run validate:frontmatterRelated Issues
Next Steps
.github/projects/filesnpm run validate:frontmatterpasses cleanlyPriority: Normal
Domain: Governance
Type: Chore