skill-review.yml 818 B

1234567891011121314151617181920212223242526
  1. # Tessl Skill Review & Optimize — runs on PRs that change any SKILL.md.
  2. # Posts scores and AI-suggested improvements as a single PR comment.
  3. # Contributors can comment /apply-optimize to commit the suggestions automatically.
  4. # Docs: https://github.com/tesslio/skill-review-and-optimize
  5. name: Tessl Skill Review & Optimize
  6. on:
  7. pull_request:
  8. branches: [main]
  9. paths:
  10. - "**/SKILL.md"
  11. jobs:
  12. review:
  13. runs-on: ubuntu-latest
  14. permissions:
  15. pull-requests: write
  16. contents: read
  17. steps:
  18. - uses: actions/checkout@v4
  19. - uses: tesslio/skill-review-and-optimize@bff9490027d60847df6494fdac7dccfb3ad82948
  20. with:
  21. optimize: true
  22. tessl-token: ${{ secrets.TESSL_API_TOKEN }}
  23. # Optional quality gate (off by default):
  24. # fail-threshold: 70