agentsclimarketplace

Primevue

Skill jonaskahn/primevue-skills/skills/primevue

Use when building UI with PrimeVue components — covers setup, configuration, theming, forms, inputs, buttons, data, overlays, menus, layout, media, directives, accessibility, migration, and Pass Through for Vue 3 / Nuxt projectsFrom its SKILL.md

Install
npx -y skills add jonaskahn/primevue-skills --skill primevue

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.5 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it

PrimeVue

Comprehensive reference for PrimeVue component library in Vue 3 and Nuxt projects, structured from the official LLM docs.

Docs: https://primevue.dev | MCP server: https://primevue.dev/mcp | LLMs.txt: https://primevue.dev/llms

When to Use

  • Adding or configuring any PrimeVue component, directive, composable, or service
  • Setting up PrimeVue in Vite, Nuxt, Laravel, CDN, or auto-import environments
  • Customizing themes, Tailwind integration, unstyled mode, design tokens, or Pass Through
  • Building forms with @primevue/forms
  • Using @primeicons/vue icons
  • Handling accessibility, RTL, animations, migration, or PrimeVue-specific gotchas

Available Guidance

  • references/setup.md — Installation, Vite/Nuxt/Laravel/CDN setup, auto-import, app-wide config, services, icons
  • references/theming.md — Styled mode, presets, design tokens, dark mode, Tailwind, unstyled mode, runtime theme utilities
  • references/catalog.md — All PrimeVue guide and component pages from llms.txt, grouped by category with import paths
  • references/inputs.md — Form controls: InputText, Select, MultiSelect, AutoComplete, DatePicker, Checkbox, RadioButton, Slider, TreeSelect, labels
  • references/buttons-status.md — Button, SplitButton, ToggleButton, Tag, Badge, Message, ProgressBar, ProgressSpinner, MeterGroup, Toast status patterns
  • references/overlay.md — Dialog, Drawer, Popover, ConfirmDialog, Toast, DynamicDialog, useConfirm/useToast composables
  • references/data.md — DataTable (sort, filter, pagination, row selection, virtual scroll), TreeTable, DataView, Paginator
  • references/forms.md@primevue/forms Form/FormField, resolvers (Zod, Yup, Valibot), validation, submission
  • references/passthrough.md — Pass Through API, global PT, component-level PT, usePassThrough utility
  • references/navigation.md — Menu, Menubar, MegaMenu, PanelMenu, TieredMenu, Breadcrumb, TabMenu, Steps, Dock
  • references/panels-layout.md — Card, Panel, Fieldset, Accordion, Tabs, Stepper, Divider, Splitter, Toolbar, Fluid, ScrollArea/ScrollPanel
  • references/media-file.md — Image, Gallery/Galleria, ImageCompare/Compare, Carousel, FileUpload, Avatar, Editor, Chart
  • references/directives-misc.md — Ripple, Tooltip, StyleClass, AnimateOnScroll, FocusTrap, KeyFilter, Mask, BlockUI, DeferredContent, Inplace, Terminal
  • references/accessibility.md — WCAG patterns, labels, keyboard support, overlay focus management, RTL, locale aria strings
  • references/migration.md — PrimeVue version migration notes and compatibility checks

Loading Files

Load only what's relevant to your current task:

DO NOT load all files at once. Load only what's relevant.

Quick Start

// main.ts (Vite)
import { createApp } from 'vue'
import PrimeVue from 'primevue/config'
import Aura from '@primevue/themes/aura'
import Button from 'primevue/button'
import 'primeicons/primeicons.css'

const app = createApp(App)
app.use(PrimeVue, {
  theme: {
    preset: Aura,
    options: { darkModeSelector: '.dark' }
  }
})
app.component('Button', Button)
app.mount('#app')
<!-- Basic usage -->
<Button label="Save" icon="pi pi-check" @click="save" />
<Select v-model="selected" :options="items" optionLabel="name" placeholder="Pick one" />
<DataTable :value="rows" paginator :rows="10">
  <Column field="name" header="Name" sortable />
  <Column field="status" header="Status" />
</DataTable>

Key Conventions

  • Import components from primevue/<component-name> (lowercase, no spaces); verify special cases in references/catalog.md
  • Icons via pi pi-<name> class string or @primeicons/vue standalone components
  • All components support pt prop for Pass Through customization
  • severity prop on many components: primary | secondary | success | info | warn | danger | contrast
  • size prop: small | large (default is medium)
  • v-model binding follows standard Vue patterns; use modelValue + update:modelValue for manual wiring
  • Check the exact component page via https://primevue.dev/<slug>.md when an uncommon prop, slot, event, or PT section is needed

What ships with it: 15 files

54.1 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,835. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.