imlazy-frontend

imlazy-frontend is a skill for Claude Code from hnikoloski/imlazy. It costs 25 tokens per session (3,784 once invoked), scanned A, a copy of frontend-patterns, MIT.

A set of patterns for building React and Next.js web interfaces, including components, forms, data loading, navigation, shared state, accessibility, and performance.

In plain words
What is it for?
Creating React components, managing interface state, loading data, building forms, handling navigation, and improving responsive web interfaces.
Why use it?
It provides practical guidance for common frontend decisions and helps avoid slow, hard-to-maintain, or inaccessible interfaces.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the imlazy plugin — 26 skills, 1 command, 1 hook shipped together

Good fit Creating React components, managing interface state, loading data, building forms, handling navigation, and improving responsive web interfaces.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hnikoloski/imlazy/imlazy-frontend
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hnikoloski/imlazy --skill imlazy-frontend
Clone the repo
git clone --depth 1 https://github.com/hnikoloski/imlazy

Made for: Claude Code.

Or install imlazy, the plugin that ships this one along with the rest of its 26 skills, 1 command, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for imlazy-frontend

README.md
[![agentmods](https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-frontend/github.svg)](https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-frontend)
Your own site
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-frontend"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-frontend/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for imlazy-frontend

Your own site · 80×15
<a href="https://agentmods.dev/skills/hnikoloski/imlazy/imlazy-frontend"><img src="https://agentmods.dev/badge/skills/hnikoloski/imlazy/imlazy-frontend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,784 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 95% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.03784
Opus 5 $0.00013 $0.01892
Sonnet 5 $0.00005 $0.00757
Haiku 4.5 $0.00003 $0.00378

Measured 11d ago against content hash a593e220acd2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

imlazy-frontend scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

fetch(url)
Origin

This is a copy

95% identical to frontend-patterns — 31 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/imlazy-frontend/SKILL.md · 656 lines

How it starts

The opening of the file, as written. The whole thing — 656 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frontend Development Patterns

Modern frontend patterns for React, Next.js, and performant user interfaces.

When to Activate

  • Building React components (composition, props, rendering)
  • Managing state (useState, useReducer, Zustand, Context)
  • Implementing data fetching (SWR, React Query, server components)
  • Optimizing performance (memoization, virtualization, code splitting)
  • Working with forms (validation, controlled inputs, Zod schemas)
  • Handling client-side routing and navigation
  • Building accessible, responsive UI patterns

Component Patterns

Composition Over Inheritance

// PASS: GOOD: Component composition
interface CardProps {
  children: React.ReactNode
  variant?: 'default' | 'outlined'
}

export function Card({ children, variant = 'default' }: CardProps) {
  return <div className={`card card-${variant}`}>{children}</div>
}

export function CardHeader({ children }: { children: React.ReactNode }) {
  return <div className="card-header">{children}</div>
}

export function CardBody({ children }: { children: React.ReactNode }) {
  return <div className="card-body">{children}</div>
}

// Usage
<Card>
  <CardHeader>Title</CardHeader>
  <CardBody>Content</CardBody>
</Card>

Compound Components

interface TabsContextValue {
  activeTab: string
  setActiveTab: (tab: string) => void
}

const TabsContext = createContext<TabsContextValue | undefined>(undefined)

export function Tabs({ children, defaultTab }: {
  children: React.ReactNode
  defaultTab: string
}) {
  const [activeTab, setActiveTab] = useState(defaultTab)

  return (
    <TabsContext.Provider value={{ activeTab, setActiveTab }}>
      {children}
    </TabsContext.Provider>
  )
}

export function TabList({ children }: { children: React.ReactNode }) {
  return <div className="tab-list">{children}</div>
}

export function Tab({ id, children }: { id: string, children: React.ReactNode }) {
  const context = useContext(TabsContext)
  if (!context) throw new Error('Tab must be used within Tabs')

  return (
    <button
      className={context.activeTab === id ? 'active' : ''}
      onClick={() => context.setActiveTab(id)}
    >
      {children}
    </button>
  )
}

// Usage
<Tabs defaultTab="overview">
  <TabList>
    <Tab id="overview">Overview</Tab>
    <Tab id="details">Details</Tab>
  </TabList>
</Tabs>

Read the full file on GitHub · 656 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 656 lines · 25 tokens per session scan A a593e220acd2

Subscribe to this mod's changes

imlazy-frontend is a skill published in the GitHub repository hnikoloski/imlazy (2 stars, last pushed 1mo ago), licensed MIT. It adds 25 tokens to every session and 3,784 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 95% identical to frontend-patterns, differing in 31 lines, and is treated as a copy.

Related

Other skills, from other repositories

expo-react-native-builder

Build or audit a production Expo and React Native application across Expo Router, development builds, native modules, state/data, persistence, offline behavior, animation/gestures, accessibility, testing, performance, security, observability, EAS builds/updates, and store release. Use when Expo/React Native is…

cmdr-chara/codex-toolkit · 92 tokens

ts-reviewer

Review TypeScript/React code for type safety, hooks correctness, state management, and conventions.

RaNDoM6913/claude-code-superkit · 22 tokens

r3f-scroll-driven-3d

Connect GSAP ScrollTrigger to React Three Fiber — Zustand bridge, useFrame animation, scroll progress to 3D transforms. The pattern for scroll-driven 3D product showcases.

RaNDoM6913/claude-code-superkit · 45 tokens

product-3d-lighting

Studio lighting setups for 3D product showcases — HDRI, directional/spot/point lights, Environment from drei, shadow config, dark background optimization. Use when setting up lighting for product 3D scenes.

RaNDoM6913/claude-code-superkit · 50 tokens

hipson-creative-frontend-motion-architect

Use for premium creative frontend, motion UI, scroll-driven animation, scrollytelling, cinematic landing pages, microinteractions, and implementation-ready prompts for React/Next.js frontend agents.

Hipson47/Hipson · 48 tokens

vercel-composition-patterns

React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.

Hipson47/Hipson · 58 tokens