Official skills registry for help-me-ai.
Skills are AI coding assistant rules and best practices for specific libraries. When you run help-me-ai in your project, it matches your dependencies against this registry and offers to install relevant skills.
| Skill | Library | Version | Description |
|---|---|---|---|
| React Query v5 | @tanstack/react-query |
>=5.0.0 | TanStack Query v5 patterns and best practices |
| React Query v4 | @tanstack/react-query |
>=4.0.0 <5.0.0 | TanStack Query v4 patterns |
| Zod Validation | zod |
>=3.0.0 | Schema validation best practices |
| React Hook Form | react-hook-form |
>=7.0.0 | Form handling patterns |
| Zustand State | zustand |
>=4.0.0 | State management patterns |
| Tailwind CSS | tailwindcss |
>=3.0.0 | Utility-first CSS patterns |
We welcome contributions! Here's how to add a new skill:
skills/
└── your-skill-name/
└── SKILL.md
Follow this structure:
# Skill Title
Brief description of what this skill covers.
## When to Use
Describe when this skill should be applied.
## Key Concepts
### Concept 1
\`\`\`typescript
// Code examples
\`\`\`
## Common Patterns
### Pattern 1
...
## Things to Avoid
1. Don't do X
2. Don't do Y{
"id": "your-skill-name",
"name": "Your Skill Name",
"description": "Brief description",
"library": "package-name",
"versionRange": ">=1.0.0",
"path": "skills/your-skill-name"
}Use semver ranges:
>=5.0.0- Version 5 and above>=4.0.0 <5.0.0- Version 4.x only^3.0.0- Compatible with 3.x*- All versions
- Fork this repository
- Create your skill
- Test locally with
help-me-ai -r file:///path/to/your/fork - Submit a PR
You can host your own skills registry and use it with:
npx help-me-ai -r https://raw.githubusercontent.com/yourorg/your-skills/mainMIT