Skip to content

Suggestion: Add HOL skill validate workflow #1036

@internet-dot

Description

@internet-dot

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions