api-endpoint-scaffolder

Installation
SKILL.md

API Endpoint Scaffolder

Instructions

When creating a new API endpoint:

  1. Identify the framework (Express, Next.js, FastAPI, etc.)
  2. Determine HTTP method (GET, POST, PUT, PATCH, DELETE)
  3. Define request/response types
  4. Implement with best practices

Templates

Next.js App Router (TypeScript)

// app/api/[resource]/route.ts
import { NextRequest, NextResponse } from 'next/server';
import { z } from 'zod';
Installs
184
GitHub Stars
188
First Seen
Feb 26, 2026
api-endpoint-scaffolder — onewave-ai/claude-skills