oRPC OpenAPI JSON Serializer

Installation
SKILL.md

OpenAPI JSON Serializer

Processes JSON payloads for OpenAPIHandler and supports native data types.

Extending Native Data Types

  1. Define Your Custom Serializer:
import type { StandardOpenAPICustomJsonSerializer } from '@orpc/openapi-client/standard'

export class User {
  constructor(
    public readonly id: string,
    public readonly name: string,
    public readonly email: string,
    public readonly age: number,
  ) {}
Related skills
Installs
First Seen