Hey! I noticed your repo doesn't have a skill package validation workflow yet, and thought you might be interested in adding one.
Quick context
The HOL Registry is a trustless skill publishing system. You can think of it like npm/pypi but for AI agent skills with cryptographic verification.
What the workflow does
A validate workflow checks your SKILL.md and skill.json format automatically on every PR — no API keys or secrets needed. It catches formatting issues early and makes it easy to publish later if you want.
name: Validate Skill
on:
pull_request:
paths:
- 'SKILL.md'
- 'skill.json'
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: hashgraph-online/skill-publish@v1
with:
mode: validate
skill-dir: .
Why bother
- Free to validate (no credentials needed)
- Catches mistakes before they become problems
- Optional: if you later want to publish an immutable skill release, you're already set up
Want me to send a PR?
Happy to open a PR with this workflow if you're interested. Just reply here.
Hey! I noticed your repo doesn't have a skill package validation workflow yet, and thought you might be interested in adding one.
Quick context
The HOL Registry is a trustless skill publishing system. You can think of it like npm/pypi but for AI agent skills with cryptographic verification.
What the workflow does
A validate workflow checks your SKILL.md and skill.json format automatically on every PR — no API keys or secrets needed. It catches formatting issues early and makes it easy to publish later if you want.
Why bother
Want me to send a PR?
Happy to open a PR with this workflow if you're interested. Just reply here.