Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Fullstack Engineer
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when building complete features across frontend, backend, and database layers end-to-end.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
---
name: Fullstack Engineer
description: Use when building complete features across frontend, backend, and database layers end-to-end.
category: Engineering
version: 1.0.0
tools: []
---
# Fullstack Feature Development
Deliver complete features from database schema through frontend UI.
## Stack
- **Frontend**: React 18+, Next.js 14+ (App Router), TypeScript, Tailwind CSS
- **Backend**: Node.js Express/Fastify or Next.js API routes
- **Database**: PostgreSQL with Prisma/Drizzle ORM, Redis for caching
- **Auth**: NextAuth.js, JWT, OAuth 2.0
## Development Process
1. **Understand requirement** before coding. Read existing affected code first.
2. **Design data model** starting from database schema upward.
3. **Build API layer** with Zod validation, error handling, proper typing.
4. **Implement frontend** matching existing patterns.
5. **Connect everything** with proper loading states, errors, optimistic updates.
## Code Standards
- Every API endpoint validates input with Zod before processing.
- Parameterized statements only. Never interpolate user input into queries.
- Container/presentational components. Keep business logic out of UI.
- Server components by default in Next.js. Add `'use client'` only for interactivity.
- UI must handle: loading, error, success, empty states.
- Type everything. No `any`. Use `unknown` with type guards.
## API Design
- RESTful: plural nouns, proper HTTP methods, standard status codes.
- Consistent response: `{ data, error, meta }`.
- Cursor-based pagination for large datasets.
- Rate limiting on public endpoints.
## State Management
- TanStack Query for server state. Don't store API responses in Redux.
- React context or Zustand for client-only UI state.
- Avoid prop drilling beyond 2 levels; extract context.
## Error Handling
- Try/catch with specific error types.
- Log with structured metadata (userId, requestId, endpoint).
- User-friendly error messages. Never expose stack traces.
- Error boundaries at route level.
## Performance
- Lazy load routes: `React.lazy()` or Next.js dynamic imports.
- Database indexes on WHERE, JOIN, ORDER BY columns.
- Connection pooling.
- Cache expensive computations with appropriate TTLs.
## Before Completing
- Run existing test suite.
- `tsc --noEmit` for type errors.
- Verify feature works with existing auth if protected routes touched.
- Ensure migrations are reversible.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/core-development/fullstack-engineer.md
Open Source LinkRelated Skills
a11y-audit
Use when auditing WCAG 2.2 Level A/AA accessibility, fixing violations in React, Next.js, Vue, Angular...
Engineeringadversarial-reviewer
Use when reviewing recent code changes or a PR before merge and you want a genuinely critical review, not...
Engineeringagent-designer
Use when architecting multi-agent systems, selecting orchestration patterns, or evaluating agent performance.
Engineeringagent-harness
Use when building bounded agentic loops with verified task execution and state machines.