Skip to content

chore: update CODEOWNERS #21

chore: update CODEOWNERS

chore: update CODEOWNERS #21

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@v6
- 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 skills commands agents; do
if [ -d "$dir" ]; then
echo " Found: $dir/"
fi
done
echo "Checking skill structure..."
if [ -f "skills/human-voice/SKILL.md" ]; then
echo " Found: skills/human-voice/SKILL.md"
else
echo "ERROR: skills/human-voice/SKILL.md not found"
exit 1
fi
- name: Validate JavaScript syntax
uses: actions/setup-node@v6
with:
node-version: 20
- name: Check script syntax
run: |
for script in skills/human-voice/scripts/*.js; do
echo "Checking: $script"
node --check "$script"
done