Installing the UI Pattern Picker skill
Installing the UI Pattern Picker skill
Section titled “Installing the UI Pattern Picker skill”Two install locations — pick one.
Project-scoped install (recommended)
Section titled “Project-scoped install (recommended)”Installs the skill into a single repo. Your team gets it when they pull.
# One-liner via the HackerX CLI:cd ~/path/to/your/projectnpx hackerx init --skill ui-pattern-picker
# Or copy manually from the cloned course repo:cd ~/path/to/your/projectmkdir -p .claude/skills/ui-pattern-pickercp ~/path/to/hackerx/07-skills/ui-pattern-picker/SKILL.md .claude/skills/ui-pattern-picker/SKILL.mdCommit it:
git add .claude/skills/ui-pattern-picker/SKILL.mdgit commit -m "Add ui-pattern-picker Claude skill"Personal / global install
Section titled “Personal / global install”Installs the skill at your user level. Available in any Claude Code session you run.
# Via the HackerX CLI:npx hackerx init --skill ui-pattern-picker --scope user
# Or copy manually:mkdir -p ~/.claude/skills/ui-pattern-pickercp ~/path/to/hackerx/07-skills/ui-pattern-picker/SKILL.md ~/.claude/skills/ui-pattern-picker/SKILL.mdVerifying it loaded
Section titled “Verifying it loaded”Open Claude Code in the project (or anywhere, if you installed globally). At the start of a session, the available-skills list should include ui-pattern-picker.
In a session, type:
/ui-pattern-picker…and Claude should follow the skill’s instructions on the next ambiguous UI request.
Triggering the skill
Section titled “Triggering the skill”Once installed, you don’t have to invoke it manually. The skill description is matched against the user’s request. When you say something like:
“this dashboard feels cluttered”
…Claude should activate the skill automatically. If it doesn’t, you can force it:
“Use the ui-pattern-picker skill on this request.”
Customizing for your team
Section titled “Customizing for your team”The shipped skill is a starting point. Edit SKILL.md to:
- Add product-specific mappings (your domain’s vague requests → your domain’s named patterns).
- Reference your repo’s component paths in the “Components to reuse” output.
- Bias the recommendation toward your product’s user base (power-user vs. casual).
The skill is a markdown file. Edit fearlessly.