npx claudepluginhub messeb/skillsAdds skills for general software development.
Adds skills for frontend software development.
A Claude Code plugin marketplace that provides plugins that add skills and agents usable in both Claude Code CLI and GitHub Copilot CLI.
Register this marketplace as a source in Claude Code:
/plugin marketplace add https://github.com/messeb/skills
/plugin install general-developer@messeb
/plugin marketplace remove messeb --force
general-developerLanguage-agnostic software engineering principles applicable to any codebase and technology stack.
Installation
/plugin install general-developer@messeb
Agent
| Agent | Description |
|---|---|
general-developer | Audits a codebase against all skills, produces a structured report with severity-ranked findings, and offers to apply fixes |
Skills
| Skill | Description |
|---|---|
github-repo | Sets up, audits, or syncs all GitHub repository files (README, LICENSE, community files, templates, and more) |
dry | Don't Repeat Yourself — identifies knowledge duplication |
die | Duplication Is Evil — detects structural and logical duplication by failure mode |
kiss | Keep It Simple — flags over-engineering and unnecessary complexity |
yagni | You Aren't Gonna Need It — prevents speculative development |
solid | SOLID principles — single responsibility, open/closed, Liskov, interface segregation, dependency inversion |
soc | Separation of Concerns — evaluates layering and boundary clarity |
tda | Tell Don't Ask — identifies procedural logic that should be encapsulated in objects |
gigo | Garbage In, Garbage Out — reviews input validation and data quality boundaries |
bduf | Big Design Up Front — identifies over-planned, under-iterated architecture |
security | OWASP Top 10, secrets management, authentication, and dependency hygiene |
testing | Testing pyramid balance, coverage gaps, and test anti-patterns |
husky | Husky pre-commit hooks — lint-staged integration, commitlint, hook timing, and CI parity |
dangerfile | Danger PR automation — rule authoring, severity levels, actionable messaging, and CI integration |
frontend-developerSkills and an audit agent for modern frontend development — Vue, Nuxt, React, Vite, Turborepo, pnpm, testing, accessibility, performance, and more.
Installation
/plugin install frontend-developer@messeb
Agent
| Agent | Description |
|---|---|
frontend-developer | Audits a frontend codebase against all skills, detects the project stack, produces a structured report with severity-ranked findings grouped by Testing / Framework / Tooling / Architecture, and offers to apply fixes |
Skills
| Category | Skill | Description |
|---|---|---|
| Testing | unit-testing | Component and composable unit tests with Vitest/Jest, Vue Test Utils, React Testing Library, mocking, and test data factories |
| Testing | storybook | Story authoring with CSF3, interaction tests, accessibility checks, and visual regression with Chromatic |
| Testing | e2e-testing | Playwright end-to-end tests — page objects, auth state reuse, network interception, and CI integration |
| Testing | a11y-testing | WCAG 2.1 AA compliance, axe-core, keyboard navigation, ARIA patterns, and screen reader testing |
| Framework | vue | Vue 3 Composition API, reactivity model, composables, <script setup>, performance, and common pitfalls |
| Framework | nuxt | Nuxt 3 rendering modes (SSR/SSG/ISR/hybrid), useFetch, routing conventions, middleware, and SEO |
| Tooling | vite | Vite config best practices — plugins, environment variables, chunk splitting, and build optimization |
| Tooling | turborepo | Turborepo monorepo setup — turbo.json pipeline, caching strategy, task dependencies, and CI integration |
| Tooling | pnpm | pnpm workspace — catalog for centralized versions, filtering, lockfile discipline, and Changesets |
| Tooling | build-pipeline | Full GitHub Actions CI/CD — lint, type-check, test, build, preview deploy, E2E gate, and release stages |
| Architecture | component-design | Props API design, slots, atomic design, avoiding prop drilling, headless components, and compound patterns |
| Architecture | state-management | Choosing between local state, TanStack Query (server state), Pinia/Zustand (global state), and form libraries |
| Architecture | performance | Core Web Vitals, bundle analysis, code splitting, image optimization, list virtualization, and rendering performance |
| Architecture | css-architecture | Design tokens, Tailwind CSS, CSS Modules, scoped styles, dark mode, and specificity management |
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations