Team Workflow
Share a consistent set of skills across a team using Git and stack export/import.
1. Create a shared stack
shell
$ kenji stack create frontend-team2. Add skills
shell
$ kenji stack add frontend-team kenji/react-debug
kenji stack add frontend-team anthropics/prompt-engineering
kenji stack add frontend-team https://github.com/user/repo/tree/main/skills/frontend3. Export
shell
$ kenji stack export frontend-teamCreates frontend-team.kenji.json in the current directory.
4. Commit to Git
Add the .kenji.json file to your repository so teammates can access it.
5. Teammates import
shell
$ kenji stack import ./frontend-team.kenji.json6. Teammates install
shell
$ kenji stack install frontend-team