Revert "fix: update skill/command names to kebab-case" #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |