seeksaas-api

Build Hono APIs on Cloudflare Workers with Zod validation and React Query.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/yyong008/seeksaas-template-react-router-v0.1 --skill seeksaas-api
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: seeksaas-api
Source: https://github.com/yyong008/seeksaas-template-react-router-v0.1/tree/main/.claude/skills/seeksaas-api
Command: npx skills add https://github.com/yyong008/seeksaas-template-react-router-v0.1 --skill seeksaas-api

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides a comprehensive guide and boilerplate for developing efficient and scalable APIs using the Hono framework on Cloudflare Workers, including setup, routing, middleware, and client integration.

Core Features & Use Cases

  • API Server Setup: Demonstrates Hono server configuration, including base paths, logging, and session/locale middleware.
  • Route Management: Illustrates organizing routes by domain and using route groups for clarity.
  • Middleware Integration: Shows how to implement authentication, session management, and localization.
  • API Client Generation: Explains how to create a type-safe API client using Hono RPC and React Query for seamless frontend integration.
  • Validation & Error Handling: Covers input validation with Zod and robust error handling with HTTPException.
  • OpenAPI Documentation: Details automatic OpenAPI spec generation and interactive API docs with Scalar.

Quick Start

Use the seeksaas-api skill to generate a new API route for user authentication.

Frequently Asked Questions about seeksaas-api

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

FAQPage Schema
How do I build a type-safe API with Hono and Cloudflare Workers?

To build a type-safe API with Hono and Cloudflare Workers, you configure the Hono server, organize routes by domain, validate inputs with Zod, and connect the client using Hono RPC for end-to-end type safety.

What is the best way to integrate React Query with a Hono backend?

The best way to integrate React Query with a Hono backend is by using Hono RPC to generate a type-safe API client, ensuring seamless frontend data fetching without manual type synchronization.

How do I set up request validation and error handling in Hono?

You set up request validation and error handling in Hono by defining schemas with Zod for input validation and throwing HTTPException for robust, centralized error management across your API routes.

Can I automatically generate OpenAPI documentation for a Hono API?

Yes, you can automatically generate OpenAPI documentation for a Hono API by utilizing built-in spec generation features and integrating Scalar to provide interactive, browser-based API docs.

Does this guide cover middleware setup for Hono on Cloudflare Workers?

Yes, this guide covers middleware setup for Hono on Cloudflare Workers, demonstrating how to implement authentication, session management, and localization within your API server configuration.