fullstack-webapp
A full development pipeline where an agent team collaborates to develop fullstack web apps through requirements analysis, design, frontend, backend, testing, and deployment. Use this skill for requests like 'build me a web app', 'web service development', 'SaaS development', 'CRUD app', 'build a dashboard', 'admin page', 'signup/login feature', 'REST API development', 'fullstack project', 'Next.js app', and other general web application development. Also supports feature additions and refactoring for existing codebases. However, mobile apps (React Native/Flutter), desktop apps (Electron), game development, and ML/AI model training are outside this skill's scope.
Best use case
fullstack-webapp is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
A full development pipeline where an agent team collaborates to develop fullstack web apps through requirements analysis, design, frontend, backend, testing, and deployment. Use this skill for requests like 'build me a web app', 'web service development', 'SaaS development', 'CRUD app', 'build a dashboard', 'admin page', 'signup/login feature', 'REST API development', 'fullstack project', 'Next.js app', and other general web application development. Also supports feature additions and refactoring for existing codebases. However, mobile apps (React Native/Flutter), desktop apps (Electron), game development, and ML/AI model training are outside this skill's scope.
Teams using fullstack-webapp should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/fullstack-webapp/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How fullstack-webapp Compares
| Feature / Agent | fullstack-webapp | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
A full development pipeline where an agent team collaborates to develop fullstack web apps through requirements analysis, design, frontend, backend, testing, and deployment. Use this skill for requests like 'build me a web app', 'web service development', 'SaaS development', 'CRUD app', 'build a dashboard', 'admin page', 'signup/login feature', 'REST API development', 'fullstack project', 'Next.js app', and other general web application development. Also supports feature additions and refactoring for existing codebases. However, mobile apps (React Native/Flutter), desktop apps (Electron), game development, and ML/AI model training are outside this skill's scope.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# Fullstack Web App — Fullstack Web App Development Pipeline An agent team collaborates to develop web apps through the pipeline of requirements → design → frontend → backend → testing → deployment. ## Execution Mode **Agent Team** — 5 agents communicate directly via SendMessage and cross-verify. ## Agent Composition | Agent | File | Role | Type | |-------|------|------|------| | architect | `.claude/agents/architect.md` | Requirements, architecture, DB, API design | general-purpose | | frontend-dev | `.claude/agents/frontend-dev.md` | React/Next.js frontend implementation | general-purpose | | backend-dev | `.claude/agents/backend-dev.md` | API, DB, auth, business logic | general-purpose | | qa-engineer | `.claude/agents/qa-engineer.md` | Test strategy, test code, code review | general-purpose | | devops-engineer | `.claude/agents/devops-engineer.md` | CI/CD, infrastructure, deployment, monitoring | general-purpose | ## Workflow ### Phase 1: Preparation (performed directly by the orchestrator) 1. Extract from user input: - **App Description**: Purpose and core features of the web app to build - **Technology Stack** (optional): Preferred frameworks/libraries - **Scale** (optional): MVP/small/medium/large - **Existing Code** (optional): Existing project to extend - **Deployment Platform** (optional): Vercel/AWS/Docker, etc. 2. Create `_workspace/` directory at the project root 3. Organize input and save to `_workspace/00_input.md` 4. If existing code is provided, analyze it and adjust relevant phases 5. Determine **execution mode** based on request scope (see "Scale-Based Modes" below) ### Phase 2: Team Assembly and Execution Assemble the team and assign tasks. Task dependencies are as follows: | Order | Task | Owner | Dependencies | Deliverables | |-------|------|-------|-------------|--------------| | 1 | Architecture Design | architect | None | `01_architecture.md`, `02_api_spec.md`, `03_db_schema.md` | | 2a | Frontend Development | frontend | Task 1 | `src/` frontend code | | 2b | Backend Development | backend | Task 1 | `src/` backend code | | 2c | Deployment Setup | devops | Task 1 | `05_deploy_guide.md`, CI/CD config | | 3 | Testing & Review | qa | Tasks 2a, 2b | `04_test_plan.md`, `06_review_report.md`, test code | Tasks 2a (frontend), 2b (backend), and 2c (DevOps) run **in parallel**. All depend only on Task 1 (design). **Inter-team Communication Flow:** - architect completes → delivers component structure/routing to frontend, API/DB/auth to backend, infrastructure requirements to devops, functional requirements to qa - frontend ↔ backend: Real-time communication during API integration (endpoint changes, error formats, etc.) - devops completes → shares environment variables and deployment URLs with all - qa reviews all code and tests. On 🔴 required fix: requests fix from the relevant developer → rework → re-verify (max 2 rounds) ### Phase 3: Integration and Final Deliverables Organize final deliverables based on the QA review: 1. Verify all code and documents 2. Confirm all 🔴 required fixes from the review have been addressed 3. Report final summary to the user: - Architecture Design — `_workspace/01_architecture.md` - API Specification — `_workspace/02_api_spec.md` - DB Schema — `_workspace/03_db_schema.md` - Test Plan — `_workspace/04_test_plan.md` - Deployment Guide — `_workspace/05_deploy_guide.md` - Review Report — `_workspace/06_review_report.md` - Source Code — `src/` directory ## Scale-Based Modes Adjust the agents deployed based on the scope of the user's request: | Request Pattern | Execution Mode | Deployed Agents | |----------------|---------------|----------------| | "Build me a web app", "fullstack development" | **Full Pipeline** | All 5 | | "Just build the API" | **Backend Mode** | architect + backend + qa | | "Just build the frontend" (API exists) | **Frontend Mode** | architect + frontend + qa | | "Refactor this code" | **Refactoring Mode** | architect + relevant developer + qa | | "Just set up deployment" | **DevOps Mode** | devops alone | **Leveraging Existing Code**: If the user provides existing code, the architect analyzes it to identify extension points and deploys only the necessary agents. ## Data Transfer Protocol | Strategy | Method | Purpose | |----------|--------|---------| | File-based | `_workspace/` + `src/` | Design documents + source code | | Message-based | SendMessage | API integration issues, code review, fix requests | | Task-based | TaskCreate/TaskUpdate | Progress tracking, dependency management | ## Error Handling | Error Type | Strategy | |-----------|----------| | Ambiguous requirements | Apply the most common CRUD pattern, document assumptions | | Unspecified tech stack | Apply default stack by scale (MVP: Next.js + SQLite) | | Build errors | Analyze error logs → relevant developer fixes → QA re-verifies | | Agent failure | Retry once → proceed without that deliverable if failed, note in review | | 🔴 found in review | Request fix from relevant developer → rework → re-verify (max 2 rounds) | ## Test Scenarios ### Normal Flow **Prompt**: "Build me a to-do management web app. I need signup/login, to-do CRUD, and category classification features." **Expected Result**: - Architecture: Next.js + Prisma + SQLite, ERD (users, todos, categories), 10+ API specs - Frontend: Login/signup pages, dashboard, to-do CRUD UI, responsive - Backend: Auth API, CRUD API, input validation, error handling - Tests: Auth + CRUD test scenarios, 80% coverage target - Deployment: Vercel deployment guide, GitHub Actions CI/CD ### Existing Code Flow **Prompt**: "Add payment functionality to this Next.js project" + existing code **Expected Result**: - architect analyzes existing code, designs payment-related API/DB - backend adds payment API, frontend adds payment UI - qa tests payment flow ### Error Flow **Prompt**: "Build me a simple web app" **Expected Result**: - Ambiguous requirements → architect proposes a basic CRUD app (memos/notes) - MVP scale default stack (Next.js + SQLite) applied - Review report notes "assumptions applied due to vague requirements" ## Agent Extension Skills Extension skills that enhance each agent's domain expertise: | Skill | Target Agent | Role | |-------|-------------|------| | `component-patterns` | frontend-dev | React/Next.js component patterns, state management strategies, folder structure | | `api-security-checklist` | backend-dev | OWASP Top 10, auth patterns, security headers, Rate Limiting |
Related Skills
sustainability-audit
Full audit pipeline for ESG/sustainability where an agent team collaborates to generate environmental, social, and governance assessments along with an integrated report and improvement plan. Use this skill for requests such as 'run an ESG audit', 'write a sustainability report', 'ESG assessment', 'carbon emissions calculation', 'ESG rating diagnosis', 'governance review', 'social responsibility assessment', 'GRI report', 'TCFD disclosure', 'ESG improvement plan', and other ESG/sustainability tasks. Also supports assessment of specific pillars (E/S/G) only or improving existing reports. However, actual on-site audit execution, third-party verification certificate issuance, ESG rating agency score changes, and carbon credit trading are outside the scope of this skill.
materiality-assessment
ESG materiality assessment matrix. Referenced by the esg-reporter and improvement-planner agents when evaluating ESG issue materiality and setting priorities. Use for 'materiality assessment', 'importance analysis', or 'Materiality Matrix' requests. Stakeholder surveys and external certification are out of scope.
ghg-protocol
GHG Protocol detailed guide. Referenced by the environmental-analyst agent when calculating and reporting greenhouse gas emissions. Use for 'GHG Protocol', 'carbon emissions', 'Scope 1/2/3', or 'carbon footprint' requests. Carbon credit trading and CDM project execution are out of scope.
citation-standards
Academic citation and reference standards guide. Referenced by the paper-writer and submission-preparer agents when composing citations and references. Use for 'citation format', 'APA', or 'references' requests. Original paper retrieval and professional database access are out of scope.
academic-paper
Full research pipeline for academic paper writing where an agent team collaborates to generate research design, experiment protocols, analysis, manuscript writing, and submission preparation. Use this skill for requests such as 'write an academic paper', 'research paper writing', 'help me write a paper', 'design a study', 'run statistical analysis', 'prepare journal submission', 'manuscript writing', 'research methodology design', 'hypothesis testing', 'academic writing', and other academic research paper tasks. Also supports analysis, rewriting, and submission preparation when existing data or drafts are available. However, actual data collection execution, official IRB submission, journal system login and upload, and running actual statistical software are outside the scope of this skill.
product-copy-formulas
Product copy formula library. Referenced by the detail-page-writer and marketing-manager agents when writing purchase-driving copy. Use for 'product copy', 'marketing copy', or 'ad copy' requests. Ad placement and design mockup creation are out of scope.
ecommerce-launcher
Full launch pipeline for e-commerce products where an agent team collaborates to generate product planning, detail pages, pricing strategy, marketing, and CS setup all at once. Use this skill for requests such as 'launch an e-commerce product', 'prepare a product launch', 'register a product on Naver Smart Store', 'launch on Coupang', 'create a detail page', 'develop a pricing strategy', 'create a marketing plan', 'launch prep', 'product planning brief', 'e-commerce CS manual', and other e-commerce product launch tasks. Also supports supplementing pricing/marketing/CS even when existing briefs or detail pages are provided. However, actual platform API integration (automated product registration), payment system development, logistics system integration, and real-time order management are outside the scope of this skill.
conversion-optimization
Purchase conversion optimization framework. Referenced by the detail-page-writer and pricing-strategist agents when designing detail pages and pricing with a conversion focus. Use for 'conversion rate optimization', 'CRO', or 'purchase psychology' requests. A/B testing tool setup and funnel automation are out of scope.
real-estate-analyst
Real estate investment analysis pipeline. An agent team collaborates to produce market research, location analysis, profitability analysis, risk assessment, and investment reports. Use this skill for requests such as 'analyze this real estate', 'apartment investment analysis', 'studio apartment yield', 'real estate market research', 'location analysis', 'real estate investment report', 'buy vs lease', 'reconstruction investment analysis', 'commercial property yield analysis', and other general real estate investment analysis tasks. Actual purchase contracts, brokerage services, interior design, and property management are outside the scope of this skill.
location-scoring
Location scoring scorecard. Referenced by the location-analyst agent for systematic real estate location evaluation. Use for requests involving 'location analysis', 'location assessment', or 'commercial area analysis'. On-site inspections and surveying are out of scope.
cap-rate-calculator
Real estate yield calculator. Reference formulas and models used by the profitability-analyst agent for quantitative investment return analysis. Use for requests involving 'Cap Rate', 'yield analysis', 'DCF', or 'cash flow analysis'. Tax advisory and loan underwriting are out of scope.
vendor-scoring
Vendor evaluation scorecard framework. Referenced by vendor-comparator and evaluation-designer agents when systematically comparing and evaluating vendors. Used for 'vendor evaluation', 'supplier comparison', 'bid evaluation' requests. Note: posting bid announcements and executing contracts are out of scope.