Skip to content

Revert "fix: update skill/command names to kebab-case" #15

Revert "fix: update skill/command names to kebab-case"

Revert "fix: update skill/command names to kebab-case" #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate plugin.json
run: |
if [ ! -f ".claude-plugin/plugin.json" ]; then
echo "ERROR: .claude-plugin/plugin.json not found"
exit 1
fi
echo "plugin.json found"
cat .claude-plugin/plugin.json | python3 -m json.tool > /dev/null
echo "plugin.json is valid JSON"
- name: Validate plugin structure
run: |
echo "Checking required directories..."
for dir in commands skills; do
if [ -d "$dir" ]; then
echo " Found: $dir/"
fi
done
echo "Checking command files..."
for cmd in commands/*.md; do
if [ -f "$cmd" ]; then
echo " Found: $cmd"
fi
done
echo "Checking skill directories..."
for skill in skills/*/SKILL.md; do
if [ -f "$skill" ]; then
echo " Found: $skill"
fi
done