Agent Skills
Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. When you add these to your project, Claude Code can recognize when you're working on a specific task and apply the right frameworks and best practices.
| Skill | Description | Triggers |
|---|---|---|
| har-extraction | Extract JSON mocks from HAR files and integrate with MSW for testing and Storybook | HAR files, API mocking, MSW setup, Storybook integration, network traffic recording |
Use skills to install skills directly:
# Install all skills
npx skills add peterknezek/skills
# Install specific skills
npx skills add peterknezek/skills --skill har-extraction second-skill
# List available skills
npx skills add peterknezek/skills --listThis automatically installs to your .claude/skills/ directory.
Clone the entire repo and copy the skills folder:
git clone https://github.com/peterknezek/skills.git
cp -r skills/skills/* .claude/skills/Once installed, just ask Claude Code to help with relevant tasks:
"Extract mocks from this HAR file for my API tests"
→ Uses har-extraction skill
"Set up MSW with mocks from network recordings"
→ Uses har-extraction skill
You can also invoke skills directly:
/har-extraction