Agent skill

types

Imported skill types from vercel

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/types

SKILL.md

/**

  • Type definitions for React Performance Guidelines rules */

export type ImpactLevel = 'CRITICAL' | 'HIGH' | 'MEDIUM-HIGH' | 'MEDIUM' | 'LOW-MEDIUM' | 'LOW'

export interface CodeExample { label: string // e.g., "Incorrect", "Correct", "Example" description?: string // Optional description before code code: string language?: string // Default: 'typescript' or 'tsx' additionalText?: string // Optional text after code block (explanations, reasons) }

export interface Rule { id: string // e.g., "1.1", "2.3" title: string section: number // Main section number (1-8) subsection?: number // Subsection number within section impact: ImpactLevel impactDescription?: string // e.g., "2-10× improvement" explanation: string examples: CodeExample[] references?: string[] // URLs or citations tags?: string[] // For categorization/search }

export interface Section { number: number title: string impact: ImpactLevel impactDescription?: string introduction?: string rules: Rule[] }

export interface GuidelinesDocument { version: string organization: string date: string abstract: string sections: Section[] references?: string[] }

export interface TestCase { ruleId: string ruleTitle: string type: 'bad' | 'good' code: string language: string description?: string }

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results