Hono

SkillCloud & infra

Gives your agent patterns for building Hono TypeScript APIs, middleware, typing, streaming, and Cloudflare Workers deployment.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Hono skill

About this capability

Hono patterns for TypeScript API routes, middleware, request and response typing, streaming, WebSockets, and Cloudflare Workers deployment. Use when users mention Hono, honojs, Cloudflare Worker handlers, Hono middleware, or Hono route typing.

What this skill tells your AI

The instructions your AI receives, as published by epicenterhq/epicenter in .agents/skills/hono/SKILL.md and read by ahel’s review.

Reference Repositories

  • Hono - TypeScript web framework for edge runtimes and Cloudflare Workers
  • Cloudflare Docs - Workers, Durable Objects, WebSockets, KV, R2, and deployment docs

Upstream Grounding

When Hono route typing, middleware order, context variables, response helpers, streaming, WebSockets, or Cloudflare Worker runtime behavior affects correctness, ask DeepWiki a narrow question against honojs/hono or cloudflare/cloudflare-docs before relying on memory. Use it to orient, then verify decisive details against local installed types, source, or official docs before changing code.

Skip DeepWiki for stable HTTP basics and repo-local API conventions already visible in the code.

Middleware And Context

  • Middleware is onion-style and order-sensitive. Resource setup belongs before auth; auth belongs before protected routes.
  • Use createFactory<Env>() and Env['Variables'] to type c.var and c.set().
  • Middleware that continues must await next(). Middleware that rejects or redirects should return the response and skip next().
  • Handlers should return Hono response helpers such as c.json(), c.text(), c.html(), or a Response.
  • On Cloudflare Workers, read bindings from c.env and request lifecycle APIs from c.executionCtx.
  • Register CORS before auth routes when cookie auth or credentialed cross-origin frontend calls are involved.
  • Test route behavior with app.request() or testClient plus mocked bindings and execution context before reaching for a network server.
  • Keep WebSocket upgrade detection explicit whenever generic middleware might mutate response headers.

Signals

GitHub stars
5k
Forks
378
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
hono-epicenterhq
Source
github.com/epicenterhq/epicenter