Add local-ai-use skill
#7
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - "scripts/**" | |
| - "**/SKILL.md" | |
| - "skills/**" | |
| - ".github/workflows/validate.yml" | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| name: Validate skills | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Validate skills (size + standardized format) | |
| run: ./scripts/check.sh |