Skip to content

Latest commit

 

History

History
84 lines (56 loc) · 1.63 KB

File metadata and controls

84 lines (56 loc) · 1.63 KB

CLI usage

The kernel-skills CLI ships with the npm package and gives you read-only access to the skill registry from the shell.

Install

npm install --save-dev @krxgu/kernel-skills

You can also run any command without installing using npx:

npx @krxgu/kernel-skills list

Commands

List

kernel-skills list
kernel-skills list --category triton
kernel-skills list --difficulty advanced
kernel-skills list --tag attention --tag fp16

Filters compose: every flag must match.

Search

kernel-skills search rmsnorm
kernel-skills search "warp shuffle"

search matches against id, name, summary, category, and tags.

Show

kernel-skills show triton.write-triton-layernorm-kernel

Prints the raw SKILL.md for the given id. Pipe it to a file or to your clipboard:

kernel-skills show triton.write-triton-layernorm-kernel > skill.md

Path

kernel-skills path triton.write-triton-layernorm-kernel

Prints the absolute on-disk path to the SKILL.md. Useful for editor integrations.

Bundle

kernel-skills bundle triton.write-triton-layernorm-kernel patterns.write-kernel-test-plan

Concatenates multiple skills into a single agent-ready Markdown document. Pipe to your clipboard or to a file:

kernel-skills bundle <id1> <id2> > my-bundle.md

Categories and tags

kernel-skills categories
kernel-skills tags

Lists all categories or all unique tags currently present in the registry.

Exit codes

  • 0 — success
  • 1 — runtime error (missing skill, missing index, file I/O error)
  • 2 — invalid arguments