v0.9.6 batch — unblock CI, harden release (#18), truth-pass + injection-defense fix #35
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Frontmatter schema validation | |
| on: | |
| pull_request: | |
| paths: | |
| - 'core/skills/**' | |
| - 'core/rules/**' | |
| - 'core/schemas/**' | |
| - 'scripts/validate-frontmatter.py' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'core/skills/**' | |
| - 'core/rules/**' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install validator dependencies | |
| run: pip install pyyaml jsonschema | |
| - name: Validate SKILL.md and rule frontmatter | |
| run: python3 scripts/validate-frontmatter.py |