frontend-engineer

Builds and verifies web applications through a build-test-screenshot workflow before deployment.

2|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/RADHA0-max/selfhealbackend --skill frontend-engineer-radha0-max
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: frontend-engineer
Source: https://github.com/RADHA0-max/selfhealbackend/tree/main/nanoclaw/container/skills/frontend-engineer
Command: npx skills add https://github.com/RADHA0-max/selfhealbackend --skill frontend-engineer-radha0-max

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Frontend work often gets declared done without real verification, leading to broken layouts, console errors, and failed production deploys. This Skill enforces a disciplined build-test-verify workflow so every web project is actually built, tested, and visually confirmed in a real browser before being called finished. ## Core Features & Use Cases - Enforced Build Workflow: Runs the project build, fixes all errors, and refuses to deploy broken builds or suppress lint and TypeScript checks. - Mandatory Visual Verification: Uses agent-browser to screenshot desktop and tablet viewports, check console errors, and detect layout overflow before and after deployment. - Production-Grade Code Standards: Applies TypeScript strictness, React Server Components patterns, semantic HTML, accessibility contrast targets, and bundle-size optimizations. - Use Case: Ask it to build a landing page with Next.js and Tailwind; it will write the code, run the build, screenshot the result at multiple viewport sizes, fix any visual issues, deploy to Vercel, and verify the live URL. ## Quick Start Build a responsive landing page with Next.js, verify it in a browser with screenshots, and deploy it to Vercel.

Frequently Asked Questions about frontend-engineer

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

FAQPage Schema
How do I verify a website visually before deploying?

Start the dev server, then use agent-browser to open the local URL and capture screenshots at desktop (1280px) and tablet (768px) widths. Check for console errors, horizontal overflow, broken images, and unreadable text before deploying.

How to deploy a Next.js app to Vercel from the command line?

Run the production build first and fix all errors, then execute vercel deploy with the --prod flag and your project directory. After deployment, open the live URL in a browser and screenshot it to confirm it matches the local result.

Should I use Next.js or Vite for a new web project?

Use Next.js for full applications needing routing, server components, and API routes. Use Vite for single-page applications, and plain HTML/CSS for simple static pages. The choice depends on project scope, not preference.

Why does my Next.js build fail with TypeScript errors?

Builds fail from implicit any types, missing return type annotations, or untyped props and API responses. Fix the underlying type issues rather than disabling TypeScript checks or ESLint rules to force the build through.

What accessibility checks should a web page pass?

Aim for a 4.5:1 text contrast ratio per WCAG AA, use semantic HTML tags like header, nav, and main, give every image an alt attribute, and maintain one h1 per page with ordered heading levels.