verification

Verifies end-to-end application flows across browser, API routes, data sources, and responses.

Updated Sep 5, 2026
One-click install
npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill verification-dsgalkar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verification
Source: https://github.com/dsgalkar/dnyaneshwar_portfolio/tree/main/.agents/plugins/vercel/skills/verification
Command: npx skills add https://github.com/dsgalkar/dnyaneshwar_portfolio --skill verification-dsgalkar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When a feature "almost works" or breaks somewhere between the UI and the database, developers struggle to locate which layer failed. This Skill infers the complete user story being built and systematically verifies every boundary in the flow with concrete evidence instead of guessing. ## Core Features & Use Cases - User Story Inference: Reads recently edited files, route structure, and environment files to state the exact flow being built before checking anything. - Multi-Layer Evidence Gathering: Inspects browser console, dev server terminal, runtime logs, and environment variables, reporting findings at each layer. - Data Flow Tracing: Walks the path from UI trigger through client request, API route handler, external dependencies, and response rendering, flagging common breaks like missing awaits, wrong HTTP methods, and absent env vars. - Use Case: After starting a Next.js dev server, ask for a full verification and receive a structured report showing the status of each boundary (UI renders, client to API, API to data, response to UI) with evidence and specific fixes for the first broken boundary. ## Quick Start Start your dev server and ask the assistant to verify the full flow end to end for the feature you just built.

Frequently Asked Questions about verification

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

FAQPage Schema
How do I verify my full-stack app works end to end?

Start your dev server and ask for a full flow verification. The Skill infers your user story from recently edited files, then checks the browser, server terminal, logs, and environment variables, reporting evidence at each boundary.

How to debug a feature that works locally but fails in production?

The verification flow compares environment variables between .env.local and deployed environments using vercel env ls, checks runtime logs via vercel logs, and identifies mismatches between development and production configuration.

What frameworks does end-to-end verification support?

It triggers on dev servers from Next.js, Vite, Astro, and Vercel CLI, detected through commands like next dev, npm run dev, pnpm dev, and vercel dev. The flow checks apply to any route structure using app or pages directories.

Why does my API route fail even though the frontend looks correct?

Common breaks include missing await on async calls, wrong HTTP methods between fetch and handler, env vars absent at runtime, and server modules imported into client components. The verification traces each boundary to pinpoint the exact failure.

When should I not use full-flow verification?

Avoid it for unit testing scenarios covered by Jest, Vitest, Playwright, or Cypress, and for purely cosmetic issues like styling or spacing. It is designed for verifying functional data flow across layers, not isolated component logic.