stratal-incremental-adoption

Installation
SKILL.md

Incremental Adoption — Mounting Stratal into an Existing Hono App

Stratal exposes its underlying HonoApp (which extends OpenAPIHono) via the stratal.hono getter. This lets you mount a Stratal instance as a sub-app inside an existing Hono application, adopting it incrementally without rewriting everything at once.

Full documentation: Incremental Adoption

Mounting Stratal into an Existing Hono App

Create a Stratal instance with your module, then mount it using Hono's app.route():

// stratal-app.ts
import { Stratal } from 'stratal'
import { UsersModule } from './users/users.module'

export const stratal = new Stratal({ module: UsersModule })
Related skills
Installs
6
GitHub Stars
7
First Seen
Mar 9, 2026