update skills #1
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: Validate Skills | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Self-test validator | |
| run: bash scripts/test-validator.sh | |
| - name: Validate skill structure | |
| run: bash scripts/validate-skills.sh | |
| - name: Check handoff blocks in sync with routing.yaml | |
| run: bash scripts/sync-handoffs.sh |