Adding Skills to Stacks
Use kenji stack add <stack-name> <skill> to append a skill to an existing stack.
Note
Both arguments are required. Running
kenji stack add kenji/react-debug (with no stack name) will fail with a usage error.From the registry
shell
$ kenji stack add my-stack kenji/react-debugFrom a GitHub repo
shell
$ kenji stack add my-stack anthropics/prompt-engineeringFrom a GitHub tree URL
shell
$ kenji stack add my-stack https://github.com/user/repo/tree/main/skills/frontendFrom a GitHub blob URL
shell
$ kenji stack add my-stack https://github.com/user/repo/blob/main/skills/ui.mdFrom a raw URL
shell
$ kenji stack add my-stack https://raw.githubusercontent.com/user/repo/main/api.mdFrom a locally installed skill
shell
$ kenji stack add my-stack my-local-skillIf the skill exists only in the current project's .kenji/skills/, Kenji copies it to global (~/.kenji/skills/) before adding it to the stack.
Remove a skill from a stack
shell
$ kenji stack remove-skill my-stack kenji/react-debug