From 27a4cc1b5343a8b2cb733bfe3294765a6c8aeae9 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 4 May 2026 11:51:08 +0200 Subject: [PATCH] ci(skills): add skillscheck workflow and fix the SKILL.md triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lint the skills. They used to pass flawlessly, except for the triggers, which didn’t specify when the agent should use them. Make this small change to help agents use the skills automatically. --- .github/workflows/skillscheck.yml | 17 +++++++++++++++++ skills/bunny-cli/SKILL.md | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/skillscheck.yml diff --git a/.github/workflows/skillscheck.yml b/.github/workflows/skillscheck.yml new file mode 100644 index 0000000..e8efcf2 --- /dev/null +++ b/.github/workflows/skillscheck.yml @@ -0,0 +1,17 @@ +name: Skills Check + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + skillscheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + + - uses: astral-sh/setup-uv@v7 + + - run: uvx skillscheck --strict skills diff --git a/skills/bunny-cli/SKILL.md b/skills/bunny-cli/SKILL.md index d0bad5f..b6996ee 100644 --- a/skills/bunny-cli/SKILL.md +++ b/skills/bunny-cli/SKILL.md @@ -1,6 +1,6 @@ --- name: bunny-cli -description: Manage bunny.net resources from the command line — databases, authentication, and raw API requests +description: Manage bunny.net resources from the command line — databases, authentication, and raw API requests. Use when working with bunny.net (pullzones, databases, storage, magic containers), invoking the `bunny` CLI, or making authenticated API calls to api.bunny.net. --- # Bunny CLI Skill