From 7e0ce5e6b1efd77ee5327c3b7f857ad975ec07aa Mon Sep 17 00:00:00 2001 From: rohan-tessl Date: Wed, 29 Apr 2026 06:57:09 +0530 Subject: [PATCH] ci: add Tessl skill review on SKILL.md changes (#74) Use tesslio/skill-review to run tessl skill review on changed skills and post results on the PR. No Tessl account required; only GITHUB_TOKEN. Made-with: Cursor Co-authored-by: rohan-tessl --- .github/workflows/skill-review.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/skill-review.yml diff --git a/.github/workflows/skill-review.yml b/.github/workflows/skill-review.yml new file mode 100644 index 000000000..82df29c48 --- /dev/null +++ b/.github/workflows/skill-review.yml @@ -0,0 +1,20 @@ +# Runs Tessl skill review on pull requests that touch any SKILL.md. +# Posts (or updates) a single PR comment with scores and feedback. +# See: https://github.com/tesslio/skill-review +name: Tessl Skill Review + +on: + pull_request: + branches: [main] + paths: + - "**/SKILL.md" + +jobs: + review: + runs-on: ubuntu-latest + permissions: + pull-requests: write + contents: read + steps: + - uses: actions/checkout@v4 + - uses: tesslio/skill-review@main