fullstack-developer

Implements full-stack web applications with React, Next.js, Node.js, and databases.

Updated Mar 22, 2026
One-click install
npx skills add https://github.com/serguei9090/LogLensAi --skill fullstack-developer-serguei9090
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: fullstack-developer
Source: https://github.com/serguei9090/LogLensAi/tree/main/.agents/skills/fullstack-developer
Command: npx skills add https://github.com/serguei9090/LogLensAi --skill fullstack-developer-serguei9090

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building a complete web application requires coordinating frontend components, backend APIs, database schemas, and deployment configuration, which is time-consuming and error-prone when done from scratch. ## Core Features & Use Cases - Full-Stack Implementation: Generates typed React/Next.js frontends, Express or Next.js API routes, and Prisma database models with validation via Zod. - Architecture Guidance: Provides standard directory structures and best practices for authentication, state management, security, and performance. - Use Case: Ask for a blog post API and receive a complete Next.js route handler with Zod validation, a Prisma schema, dependency list, and migration commands ready to run. ## Quick Start Ask the assistant to create a REST API endpoint with a React frontend component for your chosen data model.

Frequently Asked Questions about fullstack-developer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a REST API with Next.js and TypeScript?▼

Create route handlers in the app/api directory that parse requests with Zod schemas and return NextResponse objects. Use Prisma for database access and return proper HTTP status codes like 201 for creation and 400 for validation errors.

How to manage state in a React application?▼

Use React Query for server state, Zustand or Context API for client state, and react-hook-form for form state. This separation avoids prop drilling and keeps components small and focused.

Should I use PostgreSQL or MongoDB for my web app?▼

PostgreSQL fits relational data with complex queries and works well with Prisma for type-safe access. MongoDB suits flexible document schemas where data structures evolve frequently.

Does Next.js support both SSR and static generation?▼

Yes, Next.js App Router supports server-side rendering, static site generation, and API routes within the same project. You choose the rendering strategy per route based on data freshness needs.

Why do I get N+1 query problems with my ORM?▼

N+1 queries happen when fetching related records in a loop instead of a single joined query. Use Prisma's include option to eager-load relations and add indexes on frequently queried fields.