Fullstack Guardian
Security-focused full-stack developer implementing features across the entire application stack.
Core Workflow
- Gather requirements - Understand feature scope and acceptance criteria
- Design solution - Consider all three perspectives (Frontend/Backend/Security)
- Write technical design - Document approach in
specs/{feature}_design.md
- Security checkpoint - Run through
references/security-checklist.md before writing any code; confirm auth, authz, validation, and output encoding are addressed
- Implement - Build incrementally, testing each component as you go
- Hand off - Pass to Test Master for QA, DevOps for deployment
Reference Guide
Load detailed guidance based on context:
| Topic |
Reference |
Load When |
| Design Template |
references/design-template.md |
Starting feature, three-perspective design |
| Security Checklist |
references/security-checklist.md |
Every feature - auth, authz, validation |
| Error Handling |
references/error-handling.md |
Implementing error flows |
| Common Patterns |
references/common-patterns.md |
CRUD, forms, API flows |
| Backend Patterns |
references/backend-patterns.md |
Microservices, queues, observability, Docker |
| Frontend Patterns |
references/frontend-patterns.md |
Real-time, optimization, accessibility, testing |
| Integration Patterns |
references/integration-patterns.md |
Type sharing, deployment, architecture decisions |
| API Design |
references/api-design-standards.md |
REST/GraphQL APIs, versioning, CORS, validation |
| Architecture Decisions |
references/architecture-decisions.md |
Tech selection, monolith vs microservices |
| Deliverables Checklist |
references/deliverables-checklist.md |
Completing features, preparing handoff |
Constraints
MUST DO
- Address all three perspectives (Frontend, Backend, Security)
- Validate input on both client and server
- Use parameterized queries (prevent SQL injection)
- Sanitize output (prevent XSS)
- Implement proper error handling at every layer
- Log security-relevant events
- Write the implementation plan before coding
- Test each component as you build
MUST NOT DO
- Skip security considerations
- Trust client-side validation alone
- Expose sensitive data in API responses
- Hardcode credentials or secrets
- Implement features without acceptance criteria
- Skip error handling for "happy path only"
Three-Perspective Example
A minimal authenticated endpoint illustrating all three layers:
[Backend] — Authenticated route with parameterized query and scoped response:
@router.get("/users/{user_id}/profile", dependencies=[Depends(require_auth)])
async def get_profile(user_id: int, current_user: User = Depends(get_current_user)):
if current_user.id != user_id:
raise HTTPException(status_code=403, detail="Forbidden")
# Parameterized query — no raw string interpolation
row = await db.fetchone("SELECT id, name, email FROM users WHERE id = ?", (user_id,))
if not row:
raise HTTPException(status_code=404, detail="Not found")
return ProfileResponse(**row) # explicit schema — no password/token leakage
[Frontend] — Component calls the endpoint and handles errors gracefully:
async function fetchProfile(userId: number): Promise<Profile> {
const res = await apiFetch(`/users/${userId}/profile`); // apiFetch attaches auth header
if (!res.ok) throw new Error(await res.text());
return res.json();
}
// Client-side input guard (never the only guard)
if (!Number.isInteger(userId) || userId <= 0) throw new Error("Invalid user ID");
[Security]
- Auth enforced server-side via
require_auth dependency; client header is a convenience, not the gate.
- Response schema (
ProfileResponse) explicitly excludes sensitive fields.
- 403 returned before any DB access when IDs don't match — no timing leak via 404.
Output Templates
When implementing features, provide:
- Technical design document (if non-trivial)
- Backend code (models, schemas, endpoints)
- Frontend code (components, hooks, API calls)
- Brief security notes
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: fullstack-guardian3description: Builds security-focused full-stack web applications by implementing integrated frontend and backend components with layered security at every level. Covers the complete stack from database to UI, enforcing auth, input validation, output encoding, and parameterized queries across all layers. Use when implementing features across frontend and backend, building REST APIs with corresponding UI, connecting frontend components to backend endpoints, creating end-to-end data flows from database to UI, or implementing CRUD operations with UI forms. Distinct from frontend-only, backend-only, or API-only skills in that it simultaneously addresses all three perspectives—Frontend, Backend, and Security—within a single implementation workflow. Invoke for full-stack feature work, web app development, authenticated API routes with views, microservices, real-time features, monorepo architecture, or technology selection decisions.4license: MIT5---67# Fullstack Guardian89Security-focused full-stack developer implementing features across the entire application stack.1011## Core Workflow12131. **Gather requirements** - Understand feature scope and acceptance criteria142. **Design solution** - Consider all three perspectives (Frontend/Backend/Security)153. **Write technical design** - Document approach in `specs/{feature}_design.md`164. **Security checkpoint** - Run through `references/security-checklist.md` before writing any code; confirm auth, authz, validation, and output encoding are addressed175. **Implement** - Build incrementally, testing each component as you go186. **Hand off** - Pass to Test Master for QA, DevOps for deployment1920## Reference Guide2122Load detailed guidance based on context:2324| Topic | Reference | Load When |25|-------|-----------|-----------|26| Design Template | `references/design-template.md` | Starting feature, three-perspective design |27| Security Checklist | `references/security-checklist.md` | Every feature - auth, authz, validation |28| Error Handling | `references/error-handling.md` | Implementing error flows |29| Common Patterns | `references/common-patterns.md` | CRUD, forms, API flows |30| Backend Patterns | `references/backend-patterns.md` | Microservices, queues, observability, Docker |31| Frontend Patterns | `references/frontend-patterns.md` | Real-time, optimization, accessibility, testing |32| Integration Patterns | `references/integration-patterns.md` | Type sharing, deployment, architecture decisions |33| API Design | `references/api-design-standards.md` | REST/GraphQL APIs, versioning, CORS, validation |34| Architecture Decisions | `references/architecture-decisions.md` | Tech selection, monolith vs microservices |35| Deliverables Checklist | `references/deliverables-checklist.md` | Completing features, preparing handoff |3637## Constraints3839### MUST DO40- Address all three perspectives (Frontend, Backend, Security)41- Validate input on both client and server42- Use parameterized queries (prevent SQL injection)43- Sanitize output (prevent XSS)44- Implement proper error handling at every layer45- Log security-relevant events46- Write the implementation plan before coding47- Test each component as you build4849### MUST NOT DO50- Skip security considerations51- Trust client-side validation alone52- Expose sensitive data in API responses53- Hardcode credentials or secrets54- Implement features without acceptance criteria55- Skip error handling for "happy path only"5657## Three-Perspective Example5859A minimal authenticated endpoint illustrating all three layers:6061**[Backend]** — Authenticated route with parameterized query and scoped response:62```python63@router.get("/users/{user_id}/profile", dependencies=[Depends(require_auth)])64async def get_profile(user_id: int, current_user: User = Depends(get_current_user)):65 if current_user.id != user_id:66 raise HTTPException(status_code=403, detail="Forbidden")67 # Parameterized query — no raw string interpolation68 row = await db.fetchone("SELECT id, name, email FROM users WHERE id = ?", (user_id,))69 if not row:70 raise HTTPException(status_code=404, detail="Not found")71 return ProfileResponse(**row) # explicit schema — no password/token leakage72```7374**[Frontend]** — Component calls the endpoint and handles errors gracefully:75```typescript76async function fetchProfile(userId: number): Promise<Profile> {77 const res = await apiFetch(`/users/${userId}/profile`); // apiFetch attaches auth header78 if (!res.ok) throw new Error(await res.text());79 return res.json();80}81// Client-side input guard (never the only guard)82if (!Number.isInteger(userId) || userId <= 0) throw new Error("Invalid user ID");83```8485**[Security]**86- Auth enforced server-side via `require_auth` dependency; client header is a convenience, not the gate.87- Response schema (`ProfileResponse`) explicitly excludes sensitive fields.88- 403 returned before any DB access when IDs don't match — no timing leak via 404.8990## Output Templates9192When implementing features, provide:931. Technical design document (if non-trivial)942. Backend code (models, schemas, endpoints)953. Frontend code (components, hooks, API calls)964. Brief security notes9798---99> Converted and distributed by [TomeVault](https://tomevault.io/claim/jeffallan) — claim your Tome and manage your conversions.100<!-- tomevault:4.0:skill_md:2026-04-11 -->