A personal collection of custom skills for Claude Code — reusable instruction sets that extend Claude's capabilities across projects.
Skills are markdown files that tell Claude what to do and when to do it. Drop them into ~/.claude/skills/<name>/SKILL.md to make them available globally, or into .claude/skills/<name>/SKILL.md for a specific project.
Invoke them with /skill-name or let Claude trigger them automatically when your request matches the skill's description.
| Skill | Description | Invoke |
|---|---|---|
| security-review | Deep cybersecurity audit: finds vulnerabilities (OWASP Top 10+), demonstrates exploits, and applies fixes directly | /security-review [file] |
| Skill | Description | Invoke |
|---|---|---|
| clone-ui | Takes a screenshot or URL and rebuilds the UI from scratch in pixel-perfect, production-quality code | /clone-ui [image or URL] |
| Skill | Description | Invoke |
|---|---|---|
| icm-workspace | Generates an ICM workspace structure to optimize token usage across all skills. Auto-triggers on new projects; restructures existing projects on demand | /icm |
Global (all projects):
# Clone the repo
git clone https://github.com/vvalenEntinty/Skills.git
# Copy a skill to your global skills directory
cp -r Skills/Security ~/.claude/skills/security-reviewSingle project:
cp -r Skills/Security <your-project>/.claude/skills/security-reviewSkills/
├── README.md
├── Security/
│ └── SKILL.md ← security-review
├── CloneUI/
│ └── SKILL.md ← clone-ui
├── ICM/
│ ├── SKILL.md ← icm-workspace
│ └── references/
│ ├── questionnaire-template.md
│ └── stage-contract-template.md
└── <Category>/
└── SKILL.md
Each folder is a category. Each skill lives inside with its SKILL.md and any supporting files.
- Create a folder with the category name (or use an existing one)
- Add a
SKILL.mdwith proper frontmatter (name,description) - Update the Skills Index table in this README
- Push