Install skill
install_skillCopies a bundled skill into a project or runs a proxied skill's CLI to install it. A session restart is required for the installed skill to load.
Instructions
Install a personal skill into a project. Bundled skills are copied into .claude/skills// (idempotent, existing files kept); proxied skills are installed by running their official CLI in the project. IMPORTANT: skills load only at session start — after installing, STOP and ask the user to restart the Claude Code app/session before invoking the skill. Note: .claude/skills/ is gitignored by bootstrap_project — skills are tooling, not project code. manual_only applies to bundled skills only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skill | Yes | Skill id — the enum values are the valid ids. Catalog: • frontend-design (bundled) — Frontend Design: Distinctive, production-grade frontend UI that avoids generic AI aesthetics. • fullstack-architect (bundled) — Full-Stack Architect: Turn ideas into production docs: PRD → ARCHITECTURE → PLANNING → TASKS. Wizard/Expert modes. • humanizer-ru (bundled) — Humanizer (RU): Strip AI-writing tells from Russian copy — канцелярит, genitive chains, «является», calques, dash-as-connector. Hybrid of blader/humanizer + humanizer-ru (MIT). Russian only: the id is language-scoped so it can't collide with an English `humanizer` installed globally. • image (bundled) — Image Prompting: Writes model-specific image prompts for Seedream 4.5 and Gemini 3, plus the sizing args to pass — feed the result to create_image. Prompt syntax follows each vendor's official guide. Parts derive from smixs/visual-skills (MIT). • ui-ux-pro-max (proxied, runs `npx --yes ui-ux-pro-max-cli@latest init --ai claude`) — UI/UX Pro Max: Macro-design intelligence: styles, palettes, font pairings, stacks. Installs via its own CLI. • emil-design-skills (proxied, runs `npx --yes skills@latest add emilkowalski/skills`) — Emil Design Skills: Micro-design: animation timing, motion physics, Apple principles. Complements ui-ux-pro-max. bundled = copied from the server's frozen payload; proxied = installed by running the third-party CLI shown above in the project, so the user gets its current release. | |
| manual_only | No | Bundled only: install as manual-only (/name), 0 tokens at rest. Default false. | |
| project_path | Yes | Absolute path to the target project directory. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | ||
| skill | Yes | ||
| invoke | Yes | How to trigger the skill once installed. | |
| output | No | Proxied: tail of the installer output. | |
| command | No | Proxied: the CLI command that ran. | |
| created | No | ||
| skipped | No | ||
| gitignored | Yes | Patterns newly added to .gitignore (empty if already covered). | |
| manual_only | No | ||
| install_path | No | Bundled: where the skill was copied (relative to project). |