chore: added validator script, added format for commands, agents and skills

This commit is contained in:
Giuseppe Trisciuoglio
2026-02-08 17:05:58 +01:00
parent 1a732c73ec
commit 147afce5d6
245 changed files with 12691 additions and 229 deletions
+37
View File
@@ -0,0 +1,37 @@
name: Plugin Validation
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
validate-plugins:
name: Validate Plugin Components
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyyaml
- name: Run plugin validation
working-directory: .
run: |
echo "Running plugin validation for all components..."
python .skills-validator-check/validators/cli.py --all