Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
daemon-blockint-tech avatar

Web Application Developer

  • 30 installs
  • 7 repo stars
  • Updated May 20, 2026
  • daemon-blockint-tech/agentic-enteprises-skill

Build browser-based web apps spanning UI, HTTP APIs, sessions and cookies, SPA/SSR routing, forms, and web-specific security like CSRF, CORS, and XSS prevention.

About

Guides web application development across UI, HTTP APIs, sessions, routing, forms, and web-specific security on stacks like React/Next.js with Node/Python/Ruby backends. A developer uses it when building or maintaining a web app, implementing login flows, or debugging browser-server issues.

  • Implement auth flows, sessions, and token handling in a web context
  • Address CORS, cookies, CSRF, XSS, and caching between browser and server

Web Application Developer by the numbers

  • 30 all-time installs (skills.sh)
  • Ranked #3,375 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daemon-blockint-tech/agentic-enteprises-skill --skill web-application-developer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs30
repo stars7
Last updatedMay 20, 2026
Repositorydaemon-blockint-tech/agentic-enteprises-skill

What it does

Build browser-based web apps spanning UI, HTTP APIs, sessions and cookies, SPA/SSR routing, forms, and web-specific security like CSRF, CORS, and XSS prevention.

Files

SKILL.mdMarkdownGitHub ↗

Web Application Developer

When to Use

  • Build or extend a browser-based web application (not native mobile)
  • Implement auth flows, sessions, or token handling in a web context
  • Connect UI to HTTP APIs with correct error and loading handling
  • Address CORS, cookies, CSRF, or caching behavior between browser and server
  • Ship SSR, SPA, or hybrid (e.g., Next.js) routing and data loading

When NOT to Use

  • Native iOS/Android or desktop-only clients → stack-specific mobile/desktop guidance
  • Pure infrastructure or pipelines → devops, infrastructure-engineer
  • UX discovery and wireframes only → product-designer
  • Org-wide security program → cybersecurity
  • Senior cross-service RFCs → senior-software-engineer

Related skills

NeedSkill
Full-stack IC features (general)fullstack-software-engineer
Senior full-stack deliverysenior-fullstack-developer
Front-end architecture onlysenior-frontend-software-engineer
UI screens from design specsui-software-engineer
UX specs and flowsproduct-designer
Pipeline and hostingdevops
Pipeline security scansdevsecops

Core Workflows

1. Web app structure

Choose rendering model explicitly:

ModelWhen
SSR / hybridSEO, fast first paint, authenticated dashboards
SPAHeavy client interactivity, app behind login
Static + APIMarketing site + separate app subdomain

Document: routes, auth gates, global layout, error boundaries.

See `references/web_app_architecture.md` for routing and env patterns.

2. HTTP API integration

  • Use typed client or OpenAPI-generated types
  • Handle 401 → refresh or redirect to login
  • Timeouts and retry only for idempotent GETs
  • Paginate list endpoints; avoid loading unbounded data in browser

See `references/api_integration.md` for client patterns.

3. Auth in the browser

  • Prefer HttpOnly, Secure, SameSite cookies for session cookies
  • Or short-lived access token in memory + refresh rotation
  • Never store secrets in localStorage for high-risk apps
  • Protect state-changing routes with CSRF tokens when using cookies

See `references/auth_sessions.md` for flow diagrams.

4. Forms and uploads

  • Client validation for UX; server validation required
  • multipart/form-data for files; progress and size limits
  • Sanitize filenames; scan server-side if policy requires

5. Web security baseline

  • Escape output; avoid dangerouslySetInnerHTML without sanitizer
  • Set CSP headers; restrict script sources
  • CORS allowlist explicit origins—not * with credentials
  • Security headers: HSTS, X-Frame-Options or frame-ancestors

See `references/web_security.md` for checklist.

6. Test and release

  • Unit: validators, hooks, API mappers
  • Integration: API routes with test DB
  • E2E: login and one critical journey (Playwright/Cypress)
  • Smoke test after deploy on staging URL

See `references/web_app_architecture.md` for env and config.

When to load references

  • Architecture and envreferences/web_app_architecture.md
  • API clientsreferences/api_integration.md
  • Login and sessionsreferences/auth_sessions.md
  • CSRF, CSP, CORSreferences/web_security.md

Related skills

Backend & APIsfrontendbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.