endpoint

Generate Azure Functions v4 HTTP endpoint scaffolds with TypeScript and Prisma.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/pinoshe/real-estate-app --skill endpoint-pinoshe
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: endpoint
Source: https://github.com/pinoshe/real-estate-app/tree/main/.claude/skills/endpoint
Command: npx skills add https://github.com/pinoshe/real-estate-app --skill endpoint-pinoshe

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scaffold a new Azure Functions API endpoint following project conventions to reduce manual boilerplate and ensure correct patterns.

Core Features & Use Cases

  • Generates a function file, types, and tests with proper error handling patterns.
  • Enforces Azure Functions v4, TypeScript strict mode, Prisma integration, and consistent error formats for backend endpoints.
  • Use Case: quickly add endpoints like GET /api/transactions or POST /api/valuations with consistent structure.

Quick Start

Provide an HTTP method and route (e.g., GET /api/transactions) to scaffold the endpoint with a function file, types, and tests following project conventions.

Frequently Asked Questions about endpoint

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

FAQPage Schema
How do I scaffold an Azure Functions v4 HTTP endpoint with TypeScript and Prisma?

To scaffold an Azure Functions v4 HTTP endpoint, provide an HTTP method and route. This generates a single-file function, types, and tests with TypeScript strict mode, Prisma integration, input validation, and standardized error handling.

What is the best way to generate boilerplate for backend API endpoints like transactions or valuations?

Generating backend API endpoint boilerplate is best handled by providing a route like GET /api/transactions. The scaffold outputs a ready-to-use function file with Winston logging, ISO 8601 dates, and a uniform response structure to ensure consistent patterns.

Can I use this scaffolding tool to create Azure Functions with strict TypeScript and standardized error handling?

Yes, you can use this scaffolding tool to create Azure Functions. It enforces strict TypeScript, applies typed inputs, implements input validation, and establishes a uniform response structure with standardized error formats for your backend API workflows.

Do I need Prisma integration to scaffold new transactional API endpoints?

Yes, Prisma integration is a required pattern when you scaffold new transactional API endpoints. The generated function files include Prisma setup alongside Winston logging and single-file function structure to maintain consistent project conventions.

What files are generated when scaffolding a new Azure Functions API endpoint?

Scaffolding a new Azure Functions API endpoint generates a function file, types, and tests. These files follow project conventions including single-file function implementation, typed inputs, ISO 8601 date handling, and Winston logging patterns.