Skip to content

v1.22.0

Choose a tag to compare

@rohitg00 rohitg00 released this 12 Apr 10:33
· 33 commits to main since this release

What's New

Reusable GitHub Action (#92)

Install, scan, and manage skills in your CI/CD:

- uses: rohitg00/skillkit/.github/actions/skillkit@main
  with:
    command: install
    source: anthropics/skills

--json output for 8 commands (#89)

Machine-readable output for CI/CD pipelines:

skillkit install anthropics/skills --json
skillkit check --json
skillkit find react --json
skillkit remove my-skill --json
skillkit list --json
skillkit update --json
skillkit scan ./skills --json
skillkit publish submit --json

All JSON output is stdout-clean — no spinners, warnings, or colors leak into the payload.

Loading spinners for 5 commands (#88)

Progress feedback added to: translate, sync, eval, publish, scan.

Bug fixes

  • Shell injection prevention in GitHub Action (inputs via env vars)
  • All --json paths emit valid JSON on every exit path (empty results, errors, early returns)
  • Spinner cleanup on failure via try/catch in eval and scan