Personal collection of Agent Skills I use across my own side projects.
Every personal project ends up with the same small coding conventions I want to respect. Encoding them as lint rules or formatter config in each repo is overkill, and relying on personal discipline alone is unreliable.
These skills offload that effort to the AI agent: narrow, practical guardrails I can drop into any project without configuring tooling.
- Personal projects only. Not meant as general-purpose standards.
- Convenience over optimization. The goal is ergonomics, not exhaustive correctness.
- Deliberately limited scope. Each skill covers a small, well-defined area.
| Name | Description | Source |
|---|---|---|
component-conventions |
Framework-agnostic rules for naming, organizing, and writing frontend components (Svelte / Vue / React). | VueJS.org Style Guide |
svelte-api |
Svelte 5 best practices (runes, events, snippets, context, legacy-feature migration). | Svelte.dev Best Practices |
tailwind-v4 |
Tailwind CSS v4 essentials: CSS-first config, automatic content detection, dynamic utilities, and migration away from v3 patterns. | Tailwind CSS v4 |