Install a specific skill:
pnpx skills add meet-student/skills --skill='mobile-web-adaptation'Install all skills:
pnpx skills add meet-student/skills --skill='*'Or install globally:
pnpx skills add meet-student/skills --skill='*' -gLearn more about CLI usage at skills.
Written by hand based on real-world project experience and best practices.
| Skill | Description |
|---|---|
| mobile-web-adaptation | Build or adapt mobile-friendly web pages using HTML/CSS/JS best practices — covers responsive layout, touch interaction, scroll behavior, keyboard/input handling, and browser compatibility |
.
├── skills/ # Skills output directory
│ └── {skill-name}/
│ ├── SKILL.md # Skill entry and index
│ └── references/
│ └── *.md # Topic-based reference files
├── AGENTS.md # Writing guidelines for AI agents
├── LICENSE.md
├── README.md
└── package.json
- Create a directory under
skills/named after the skill (kebab-case) - Create
SKILL.mdwith frontmatter (name,description) and a categorized reference index - Create topic-focused reference files under
references/ - Update the Skills table in this README
See AGENTS.md for the full writing guidelines.