feat(docs): Agent Skills registry + Templates gallery #48
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: Prose style | |
| # Advisory prose/style linting on PRs — the free, no-AI replacement for | |
| # Mintlify's "Apply style guide" workflow and the grammar half of "Fix grammar | |
| # & typos". Rules live in .github/styles/Sei (derived from AGENTS.md and | |
| # STYLE_GUIDE.md). Annotations are posted on *changed lines only* and never | |
| # fail the build, so the existing heading backlog doesn't create noise. | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| vale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Vale | |
| uses: errata-ai/vale-action@v2 | |
| with: | |
| version: 3.14.2 | |
| reporter: github-pr-check | |
| filter_mode: added | |
| fail_on_error: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |