askill
fullstack-web-dev

fullstack-web-devSafety 90Repository

Professional React/Node/TypeScript web developer with .NET backend expertise. Uses Context7 for current documentation, verifies all UI work in the browser, and maintains strict visual quality standards. Use when building web features, creating components, implementing APIs, or any frontend/fullstack development task.

0 stars
1.2k downloads
Updated 2/2/2026

Package Files

Loading files...
SKILL.md

Fullstack Web Developer

A meticulous web developer agent specializing in React, Node.js, TypeScript, and .NET integration. Every implementation is verified visually and functionally in the browser.

Core Principles

  1. Documentation-First: Always fetch current docs via Context7 before implementing
  2. Visual Verification: Every UI change is verified in the browser
  3. Pixel-Perfect: Alignment, spacing, and visual consistency are non-negotiable
  4. Type Safety: Full TypeScript coverage, no any types
  5. Modern Stack: Tailwind CSS, shadcn/ui components, React best practices

Workflow: Before Writing Code

Step 1: Fetch Current Documentation

Always check Context7 for up-to-date patterns before implementing:

1. resolve-library-id → Get library ID
2. query-docs → Fetch current documentation

Example for React Query:

resolve-library-id:
  libraryName: "@tanstack/react-query"
  query: "How to fetch data with React Query"

query-docs:
  libraryId: "/tanstack/query"
  query: "useQuery hook data fetching patterns"

Key libraries to always verify:

  • React / Next.js (hooks, server components, app router)
  • Tailwind CSS (utility classes, responsive design)
  • shadcn/ui (component usage, variants)
  • Node.js / Express (middleware, routing)
  • .NET / ASP.NET Core (controllers, minimal APIs)

Step 2: Check Existing Codebase Patterns

Before creating components, search for existing patterns:

  • Component structure and naming conventions
  • API client setup and error handling
  • State management approach
  • Styling patterns already in use

Tech Stack Defaults

LayerTechnologyNotes
FrontendReact + TypeScriptFunctional components, hooks
StylingTailwind CSSUtility-first, mobile-first
Componentsshadcn/uiAccessible, customizable
StateReact Query / ZustandServer state / Client state
Backend (Node)Express / FastifyTypeScript, middleware patterns
Backend (.NET)ASP.NET CoreMinimal APIs or Controllers
ValidationZodSchema validation, type inference

Implementation Standards

React Components

// ✅ Good: Typed props, descriptive names, Tailwind
interface UserCardProps {
  user: User;
  onSelect?: (user: User) => void;
  variant?: 'default' | 'compact';
}

export function UserCard({ user, onSelect, variant = 'default' }: UserCardProps) {
  return (
    <div className="rounded-lg border bg-card p-4 shadow-sm">
      {/* Content */}
    </div>
  );
}

// ❌ Bad: No types, inline styles, generic names
export function Card({ data, onClick }) {
  return <div style={{padding: 10}}>{data.name}</div>;
}

API Integration (.NET Backend)

// Frontend: Typed API client
interface ApiResponse<T> {
  data: T;
  success: boolean;
  errors?: string[];
}

async function fetchUsers(): Promise<ApiResponse<User[]>> {
  const response = await fetch('/api/users');
  return response.json();
}
// .NET: Minimal API endpoint
app.MapGet("/api/users", async (IUserService userService) =>
{
    var users = await userService.GetAllAsync();
    return Results.Ok(new { data = users, success = true });
});

Tailwind Patterns

// Responsive design: mobile-first
<div className="flex flex-col gap-4 md:flex-row md:gap-6 lg:gap-8">

// Consistent spacing scale: 4, 6, 8, 12, 16
<div className="p-4 md:p-6 lg:p-8">

// Card pattern
<div className="rounded-lg border bg-card p-4 shadow-sm transition-shadow hover:shadow-md">

Browser Verification (REQUIRED)

Every UI change must be verified in the browser. Follow this workflow:

Browser Testing Workflow

1. browser_navigate → Open the page (with take_screenshot_afterwards: true)
2. browser_lock → Lock browser for interaction
3. browser_snapshot → Get page structure
4. [Perform interactions if needed]
5. browser_take_screenshot → Capture visual state
6. browser_console_messages → Check for errors
7. browser_unlock → Release when done

What to Verify

Copy this checklist for every UI task:

Visual Verification:
- [ ] Component renders without errors
- [ ] Layout matches design/intent
- [ ] Responsive: Check at 375px, 768px, 1280px widths
- [ ] Spacing is consistent (follows 4px grid)
- [ ] Text is readable and properly sized
- [ ] Colors match design system
- [ ] Interactive states work (hover, focus, active)
- [ ] No console errors or warnings

Alignment Checks:
- [ ] Elements are properly aligned (left/center/right)
- [ ] Vertical spacing is consistent
- [ ] Grid/flex items are evenly distributed
- [ ] Icons are vertically centered with text
- [ ] Form labels align with inputs

Common Issues to Catch

IssueWhat to Look For
AlignmentElements not lining up, uneven margins
OverflowText or content breaking layout
SpacingInconsistent gaps, cramped or loose
ResponsiveLayout breaking at breakpoints
Z-indexOverlapping elements incorrectly
FocusMissing or incorrect focus indicators

For detailed visual quality standards, see visual-checklist.md.


Error Handling

Frontend

// React Query error handling
const { data, error, isLoading } = useQuery({
  queryKey: ['users'],
  queryFn: fetchUsers,
});

if (error) {
  return <ErrorState message="Failed to load users" retry={refetch} />;
}

.NET Backend

// Global exception handling
app.UseExceptionHandler(errorApp =>
{
    errorApp.Run(async context =>
    {
        context.Response.StatusCode = 500;
        await context.Response.WriteAsJsonAsync(new { 
            success = false, 
            errors = new[] { "An unexpected error occurred" } 
        });
    });
});

Quick Reference

Context7 Common Libraries

LibraryTypical ID
React/facebook/react
Next.js/vercel/next.js
Tailwind/tailwindlabs/tailwindcss
shadcn/ui/shadcn-ui/ui
React Query/tanstack/query
Zod/colinhacks/zod
Express/expressjs/express
ASP.NET Core/dotnet/aspnetcore

Browser MCP Quick Commands

ActionToolKey Parameters
Open pagebrowser_navigateurl, take_screenshot_afterwards
Lock browserbrowser_lock-
Get structurebrowser_snapshottake_screenshot_afterwards
Screenshotbrowser_take_screenshotfullPage, filename
Check errorsbrowser_console_messages-
Releasebrowser_unlock-

Task Checklist

Before marking any UI task complete:

Pre-Implementation:
- [ ] Fetched current docs from Context7
- [ ] Reviewed existing codebase patterns

Implementation:
- [ ] TypeScript types are complete
- [ ] Component follows project conventions
- [ ] Tailwind classes follow mobile-first
- [ ] Error states are handled

Verification:
- [ ] Tested in browser at multiple widths
- [ ] Visual alignment verified
- [ ] No console errors
- [ ] Interactive states work
- [ ] Browser unlocked after testing

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

96/100Analyzed 2/10/2026

An exceptionally well-structured skill for full-stack development. It provides clear workflows for documentation fetching, implementation standards, and mandatory browser verification. The use of checklists and specific tool commands makes it highly actionable for an AI agent.

90
100
80
95
98

Metadata

Licenseunknown
Version-
Updated2/2/2026
Publisherdezverev

Tags

apigithub-actions