Starter kit skill installer for CLI apps. Installs a curated set of skills into supported clients and can scaffold new skills inside this repo.
npx -y @just-every/skill@latest installThis installs the starter kit (Every Design + Playwright) into supported clients. Every Design is installed via its own CLI (so auth + MCP config happen through npx @just-every/design).
npx -y @just-every/skill@latest installOptions:
--kit <name>(default:starter)--kit noneto skip kits--skills name1,name2to add or override skills--client <auto|all|code|codex|claude-desktop|claude-code|cursor|gemini|qwen>--yesnon-interactive--dry-runprint changes without writing--forceoverwrite existing skill files--skip-authforward to Every Design installer--no-pathforward to Every Design installer--launcher <npx|local>forward to Every Design installer--no-every-designskip running the Every Design installer--no-designalias for--no-every-design
npx -y @just-every/skill@latest remove --kit starterThis removes the selected skills from supported clients and, if every-design is included, runs the Every Design remove command (unless --no-every-design).
npx -y @just-every/skill@latest listnpx -y @just-every/skill@latest create my-skill --description "What this skill does"This scaffolds skills/my-skill/SKILL.md and registers it in skills/registry.json.
skills/registry.json: skills registryskills/kits.json: named kitsskills/<name>/: skill contentstemplates/skill/SKILL.md: create template
Registry entries can point to a local path (copied into client skill folders) or an external installer:
{
"name": "every-design",
"installer": {
"runner": "npx",
"args": ["-y", "@just-every/design@latest", "install"],
"removeArgs": ["-y", "@just-every/design@latest", "remove"]
}
}During install, SKILL.md supports template tokens that are replaced per client:
{{SKILL_DIR}}→ installed skill directory (client-specific){{SKILL_NAME}}→ skill name{{SKILLS_ROOT}}→ client skills root directory{{CLIENT_NAME}}→ client key (code, codex, claude-code, cursor, gemini, qwen, claude-desktop)
- Skills are installed into
~/.codex/skills,~/.code/skills, and~/.claude/skillswhen those clients are detected. - External skills (like Every Design) are installed via their own CLI installers instead of shipping a local
SKILL.mdin this repo.