npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fledge/vue

v0.4.7

Published

Agent skill package for Vue development.

Downloads

1,470

Readme

@fledge/vue

Agent skill package for Vue development.

Installation

# pnpm
pnpm add -D @fledge/vue

# npm
npm install --save-dev @fledge/vue

# yarn
yarn add --dev @fledge/vue

Skills are copied into the skills directory automatically via postinstall. No further setup needed — agents pick them up immediately.

pnpm users: pnpm blocks lifecycle scripts from dependencies by default. After installing, approve the build script by running:

pnpm approve-builds

Alternatively, add the package permanently to your package.json so it never needs manual approval again:

{
  "pnpm": {
    "onlyBuiltDependencies": ["@fledge/vue"]
  }
}

Requirements

Skills

vue-core

Guides agents through Vue feature development following conventions. Covers component classification, general principles, type-specific implementation guidance, composables, data fetching, and forms.

Component types

A core idea in this skill is that not all Vue components are the same. Each type has distinct responsibilities — mixing them is the most common source of components that are hard to maintain.

| Type | Responsibility | |-----------------------|-----------------------------------------------------------------------------------------| | View | Route-bound entry point for a page. Composes feature and domain components. | | Feature component | Owns business logic or feature state. Coordinates child components. | | Domain component | Adapts a single UI primitive to a domain concept. No business logic beyond the mapping. | | UI component | Generic, fully reusable, zero business or domain knowledge. Self-contained styling. |

Decision flow

flowchart TD
    Start([Start]) --> Triage

    Triage{"Step 0 · Scope?"}
    Triage -->|Targeted task| Touch
    Triage -->|Full feature| Plan

    subgraph planning ["Full feature planning"]
        Plan["Map hierarchy · identify logic needs · audit existing"]
        Plan --> TokenAudit["Audit design tokens · design-tokens.md"]
        TokenAudit --> UIAudit["Audit required UI components · add missing ones to checklist first"]
        UIAudit --> BottomUp["Produce checklist · build bottom-up · UI → Domain → Feature / Logic → View"]
    end

    BottomUp --> Touch

    Touch{"Step 1 · What are we touching?"}
    Touch -->|Component| CompMod
    Touch -->|Logic unit| LogicMod

    CompMod{"Step 2A · Create or modify?"}
    CompMod -->|Create| CompType
    CompMod -->|Modify| CompScope

    CompScope{"Stays focused?"}
    CompScope -->|"Yes — extend"| CompType
    CompScope -->|"No — create new"| CompType

    CompType{"Step 3A · Component type? · component-types.md"}
    CompType --> CompPrinciples["Step 4A · Component principles · component-principles.md"]

    CompPrinciples -->|View| VR([views.md])
    CompPrinciples -->|Feature| FR([feature-components.md])
    CompPrinciples -->|Domain| DR([domain-components.md])
    CompPrinciples -->|UI| UR([ui-components.md])

    LogicMod{"Step 2B · Create or modify?"}
    LogicMod -->|Create| CompUtil
    LogicMod -->|Modify| LogicScope

    LogicScope{"Stays focused?"}
    LogicScope -->|"Yes — extend"| CompUtil
    LogicScope -->|"No — create new"| CompUtil

    CompUtil{"Step 3B · Composable or util?"}
    CompUtil -->|Util| Done([Plain TypeScript])
    CompUtil -->|Composable| CompLogicPrinciples["Step 4B · composable-principles.md · Feature-local or shared?"]

    CompLogicPrinciples --> WhatDoes{"Step 5B · What does it do?"}
    WhatDoes -->|Data fetching| DF([data-fetching.md])
    WhatDoes -->|Form logic| FM([forms.md])
    WhatDoes -->|Other| CP([composable-principles.md])

Reference files

  • component-types.md — classification guide, decision questions for each component type, and where styling lives in the hierarchy
  • component-principles.md — general principles: structure, state ownership, reactivity, v-model, API design, naming, and documentation
  • ui-components.md — component categories, styling encapsulation, CVA variants, reka-ui primitives, modelValue patterns, accessibility, and icons
  • design-tokens.md — how to explore a project's token vocabulary (Tailwind config, CSS custom properties, shared constants) before applying any styling
  • reka-ui.md — how to explore reka-ui primitive type definitions before use; group roots, value shapes, and standalone vs. group context
  • domain-components.md — domain-to-UI mapping, modelValue as domain value, state ownership, and naming
  • feature-components.md — state ownership, child coordination, composable extraction, and data fetching
  • views.md — page-level composition and route-level concerns
  • composable-principles.md — naming, return shape, and patterns
  • data-fetching.md — TanStack Query patterns
  • forms.md — TanStack Form + Zod patterns