oRPC RPC JSON Serializer

Installation
SKILL.md

RPC JSON Serializer

Handles JSON payloads for the RPC Protocol and supports native data types.

Extending Native Data Types

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

export class User {
  constructor(
    public readonly id: string,
    public readonly name: string,
    public readonly email: string,
    public readonly age: number,
  ) {}
Installs
First Seen
oRPC RPC JSON Serializer — ali-master/skills