mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-17 22:46:29 +03:00
Adds .claude-plugin/marketplace.json exposing all 95 public skills as installable plugins via /plugin marketplace add magnus919/agent-skills. Metadata-only approach: each entry uses source './' + skills ['./<name>'] + strict:false, so no per-skill plugin.json or directory restructuring is needed. Bundle-internal helper skills are excluded; bundle entrypoints are included. - scripts/gen-claude-marketplace.rb: generates and validates the manifest - CI step fails if marketplace.json drifts from the skill tree - README: Claude Code install instructions Closes #76 AI-assisted: yes (Jasper/Hermes Agent)
33 lines
913 B
YAML
33 lines
913 B
YAML
name: Validate skills
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.3'
|
|
- name: Validate skill format and links
|
|
run: ruby scripts/validate-skills.rb
|
|
- name: Check tracked repository artifacts
|
|
run: python3 scripts/check-artifacts.py
|
|
- name: Validate Claude Code marketplace
|
|
run: ruby scripts/gen-claude-marketplace.rb
|
|
- name: Build tracked Python packages
|
|
run: |
|
|
wheel_dir=$(mktemp -d)
|
|
while IFS= read -r pyproject; do
|
|
python3 -m pip wheel --no-deps "./$(dirname "$pyproject")" --wheel-dir "$wheel_dir"
|
|
done < <(git ls-files -- ':(glob)**/pyproject.toml')
|