mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-11 19:47:12 +03:00
* feat: add Codex plugin packaging (single-plugin, metadata-only) Adds .codex-plugin/plugin.json with a skills array listing all public skills, plus .agents/plugins/marketplace.json for one-command install: codex plugin marketplace add magnus919/agent-skills codex plugin install magnus919 Same pattern as mattpocock/skills — one plugin, explicit skill paths, no dist/, no curation, no duplication. Bundle-internal helpers excluded by the shared glob. CI check mode fails if the manifest drifts. Closes #79 AI-assisted: yes (Jasper/Hermes Agent) * chore: trigger CI * chore: regenerate Codex plugin manifest to include neckbeard bundle
35 lines
1005 B
YAML
35 lines
1005 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: Validate Codex plugin packaging
|
|
run: ruby scripts/gen-codex-plugin.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')
|