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>
}
Installs
1
First Seen
May 9, 2026
web-development — agentkollektivet/magentic