The kernel-skills CLI ships with the npm package and gives you read-only access to the skill registry from the shell.
npm install --save-dev @krxgu/kernel-skillsYou can also run any command without installing using npx:
npx @krxgu/kernel-skills listkernel-skills list
kernel-skills list --category triton
kernel-skills list --difficulty advanced
kernel-skills list --tag attention --tag fp16Filters compose: every flag must match.
kernel-skills search rmsnorm
kernel-skills search "warp shuffle"search matches against id, name, summary, category, and tags.
kernel-skills show triton.write-triton-layernorm-kernelPrints 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.mdkernel-skills path triton.write-triton-layernorm-kernelPrints the absolute on-disk path to the SKILL.md. Useful for editor integrations.
kernel-skills bundle triton.write-triton-layernorm-kernel patterns.write-kernel-test-planConcatenates multiple skills into a single agent-ready Markdown document. Pipe to your clipboard or to a file:
kernel-skills bundle <id1> <id2> > my-bundle.mdkernel-skills categories
kernel-skills tagsLists all categories or all unique tags currently present in the registry.
0— success1— runtime error (missing skill, missing index, file I/O error)2— invalid arguments