Skip to content

The Workflows Index — top skills.sh skills compiled to multi-agent wo… #1

The Workflows Index — top skills.sh skills compiled to multi-agent wo…

The Workflows Index — top skills.sh skills compiled to multi-agent wo… #1

Workflow file for this run

name: validate
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Validate the dataset is well-formed JSON
run: |
python3 -c "import json; d=json.load(open('web/public/directory.json')); print('directory.json OK —', d['totalSkills'], 'skills,', d['totalConverted'], 'converted')"
- name: Syntax-check the batch converter (a Workflow script)
run: node scripts/check-workflow.mjs scripts/convert-batch.js || echo "checker not bundled — skipping"