senior-fullstack

Scaffold fullstack projects and analyze code quality for React, Next.js, Node.js, and PostgreSQL applications.

2|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill senior-fullstack-shubh2310-developer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: senior-fullstack
Source: https://github.com/Shubh2310-developer/ENGUNITYCORE/tree/main/.claude/skills/senior-fullstack
Command: npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill senior-fullstack-shubh2310-developer

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Starting a new fullstack project or auditing an existing codebase involves repetitive setup decisions and manual quality checks. This Skill provides scaffolding scripts and reference guides covering React, Next.js, Node.js, GraphQL, and PostgreSQL so developers can bootstrap projects and review code quality against documented patterns. ## Core Features & Use Cases - Project Scaffolding: Run fullstack_scaffolder.py and project_scaffolder.py to generate project structures with configurable templates and built-in quality checks. - Code Quality Analysis: Use code_quality_analyzer.py to analyze a target path, produce findings, and output reports in console or JSON format. - Architecture & Workflow References: Consult tech_stack_guide.md, architecture_patterns.md, and development_workflows.md for patterns, anti-patterns, security practices, and DevOps guidance covering Docker, Kubernetes, and CI/CD. - Use Case: When starting a new Next.js and PostgreSQL application, scaffold the project structure, then run the quality analyzer on the codebase and follow the architecture patterns reference to organize services and data access layers. ## Quick Start Ask the assistant to scaffold a new fullstack project with React and Node.js and then run the code quality analyzer on the generated directory.

Frequently Asked Questions about senior-fullstack

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

FAQPage Schema
How do I scaffold a new fullstack project with React and Node.js?

Run the fullstack_scaffolder.py script with a target project path, for example: python scripts/fullstack_scaffolder.py my-app --verbose. The script validates the path, executes the scaffolding logic, and prints a report of the results.

How to analyze code quality in an existing project?

Run code_quality_analyzer.py against the project directory, optionally with --json to get machine-readable output or --output to write results to a file. The script validates the target path, performs analysis, and generates a findings report.

What tech stack does this fullstack skill cover?

It covers TypeScript, JavaScript, and Python with React, Next.js, Node.js, Express, and GraphQL on the application side, PostgreSQL with Prisma for data, and Docker, Kubernetes, Terraform, and GitHub Actions for DevOps across AWS, GCP, and Azure.

Can I get the analyzer results as JSON output?

Yes, all three scripts support a --json flag that serializes results to JSON, and an --output flag to write the JSON to a file. Without --output, the JSON is printed to stdout.

What are the limitations of the scaffolding scripts?

The scripts require an existing target path and raise an error if it does not exist. The current analysis logic returns an empty findings list, so deeper project-specific checks must follow the patterns documented in the references directory.