
Senior Fullstack
Scaffold fullstack boilerplate across major stacks and run codebase quality or security-oriented audits when starting or hardening a project.
Overview
Senior Fullstack is an agent skill most often used in Build (also Validate, Ship) that scaffolds Next.js, FastAPI, MERN, and Django stacks and analyzes code quality.
Install
npx skills add https://github.com/alirezarezvani/claude-skills --skill senior-fullstackWhat is this skill?
- Project scaffolder with four templates: nextjs, fastapi-react, mern, django-react
- Next.js 14+ App Router scaffold with TypeScript and Tailwind CSS
- FastAPI + React + PostgreSQL and Django REST + React fullstack paths
- Code quality analysis with security and complexity scoring
- Stack selection guidance when you ask what stack to use
- Four supported scaffold templates: nextjs, fastapi-react, mern, django-react
Adoption & trust: 872 installs on skills.sh; 17.5k GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You are starting a fullstack app or inherited a repo and need consistent boilerplate plus a grounded view of security and complexity risks.
Who is it for?
Solo builders spinning up SaaS or API-backed products who want opinionated starters instead of copying random tutorials.
Skip if: Teams with a locked internal platform, mobile-native-only apps, or repos that only need a single-file script without a web stack.
When should I use this skill?
User asks to scaffold a new project, create a Next.js app, set up FastAPI with React, analyze code quality, audit codebase, what stack should I use, generate project boilerplate, or mentions fullstack development.
What do I get? / Deliverables
You get a generated project skeleton for a named template and actionable quality signals you can fix before feature velocity piles on debt.
- Stack-specific project tree and boilerplate code
- Code quality report emphasizing security and complexity signals
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Project scaffolding and stack setup are canonical on the build shelf under pm—the first committed structure of the product. Pm covers boilerplate generation, stack choice workflows, and repo-level setup before deep feature work.
Where it fits
Compare Next.js vs Django-React before locking the MVP scope doc.
Run the scaffolder to emit App Router + Tailwind starter files in one session.
Generate FastAPI + React layout with PostgreSQL service stubs.
Trigger code quality analysis with security and complexity scoring pre-release.
How it compares
Use instead of one-off “create-react-app” prompts that skip backend pairing, quality scoring, and stack comparison.
Common Questions / FAQ
Who is senior-fullstack for?
Indie fullstack developers who want scaffold commands and codebase audits from one procedural skill rather than juggling separate generators and linters.
When should I use senior-fullstack?
In Validate when choosing MERN vs Next.js vs Django-React, in Build when generating boilerplate, and in Ship when you ask to analyze code quality or check security issues in the codebase.
Is senior-fullstack safe to install?
Review the Security Audits panel on this Prism page; scaffolding and analysis skills often run shell commands and read your repo—use a git branch and inspect generated files.
SKILL.md
READMESKILL.md - Senior Fullstack
# Senior Fullstack Fullstack development skill with project scaffolding and code quality analysis tools. --- ## Table of Contents - [Trigger Phrases](#trigger-phrases) - [Tools](#tools) - [Workflows](#workflows) - [Reference Guides](#reference-guides) --- ## Trigger Phrases Use this skill when you hear: - "scaffold a new project" - "create a Next.js app" - "set up FastAPI with React" - "analyze code quality" - "check for security issues in codebase" - "what stack should I use" - "set up a fullstack project" - "generate project boilerplate" --- ## Tools ### Project Scaffolder Generates fullstack project structures with boilerplate code. **Supported Templates:** - `nextjs` - Next.js 14+ with App Router, TypeScript, Tailwind CSS - `fastapi-react` - FastAPI backend + React frontend + PostgreSQL - `mern` - MongoDB, Express, React, Node.js with TypeScript - `django-react` - Django REST Framework + React frontend **Usage:** ```bash # List available templates python scripts/project_scaffolder.py --list-templates # Create Next.js project python scripts/project_scaffolder.py nextjs my-app # Create FastAPI + React project python scripts/project_scaffolder.py fastapi-react my-api # Create MERN stack project python scripts/project_scaffolder.py mern my-project # Create Django + React project python scripts/project_scaffolder.py django-react my-app # Specify output directory python scripts/project_scaffolder.py nextjs my-app --output ./projects # JSON output python scripts/project_scaffolder.py nextjs my-app --json ``` **Parameters:** | Parameter | Description | |-----------|-------------| | `template` | Template name (nextjs, fastapi-react, mern, django-react) | | `project_name` | Name for the new project directory | | `--output, -o` | Output directory (default: current directory) | | `--list-templates, -l` | List all available templates | | `--json` | Output in JSON format | **Output includes:** - Project structure with all necessary files - Package configurations (package.json, requirements.txt) - TypeScript configuration - Docker and docker-compose setup - Environment file templates - Next steps for running the project --- ### Code Quality Analyzer Analyzes fullstack codebases for quality issues. **Analysis Categories:** - Security vulnerabilities (hardcoded secrets, injection risks) - Code complexity metrics (cyclomatic complexity, nesting depth) - Dependency health (outdated packages, known CVEs) - Test coverage estimation - Documentation quality **Usage:** ```bash # Analyze current directory python scripts/code_quality_analyzer.py . # Analyze specific project python scripts/code_quality_analyzer.py /path/to/project # Verbose output with detailed findings python scripts/code_quality_analyzer.py . --verbose # JSON output python scripts/code_quality_analyzer.py . --json # Save report to file python scripts/code_quality_analyzer.py . --output report.json ``` **Parameters:** | Parameter | Description | |-----------|-------------| | `project_path` | Path to project directory (default: current directory) | | `--verbose, -v` | Show detailed findings | | `--json` | Output in JSON format | | `--output, -o` | Write report to file | **Output includes:** - Overall score (0-100) with letter grade - Security issues by severity (critical, high, medium, low) - High complexity files - Vulnerable dependencies with CVE references - Test coverage estimate - Documentation completeness - Prioritized recomme