web-development
Installation
SKILL.md
Web Development
Context skill for modern web application development covering frontend patterns, backend integration, and full-stack best practices.
Component Patterns
Composition Over Inheritance
interface CardProps {
children: React.ReactNode
variant?: 'default' | 'outlined'
}
export function Card({ children, variant = 'default' }: CardProps) {
return <div className={`card card-${variant}`}>{children}</div>
}