add_backend_feature

Generate Hono CRUD endpoints with Drizzle tables and Zod schemas.

Updated Feb 8, 2026
One-click install
npx skills add https://github.com/raulnq/node-hono-react-monorepo --skill add-backend-feature
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add_backend_feature
Source: https://github.com/raulnq/node-hono-react-monorepo/tree/main/.claude/skills/add-backend-feature
Command: npx skills add https://github.com/raulnq/node-hono-react-monorepo --skill add-backend-feature

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines the creation of new backend API features, ensuring consistency and adherence to established patterns for rapid development.

Core Features & Use Cases

  • Automated Feature Scaffolding: Generates all necessary files and code for a new backend entity, including Drizzle tables, Zod schemas, CRUD endpoints, and route aggregation.
  • Pattern Enforcement: Strictly follows the project's established Hono sub-app pattern, Drizzle ORM conventions, and Zod validation practices.
  • Use Case: When you need to add a new "products" entity to your Hono API, this Skill will create the apps/backend/src/features/products/ directory with all the boilerplate code, ready for you to customize specific fields and logic.

Quick Start

Use the add_backend_feature skill to create a new backend API feature for managing 'orders'.

Frequently Asked Questions about add_backend_feature

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

FAQPage Schema
How do I scaffold a new CRUD API endpoint in Hono with Drizzle?

Scaffold a new CRUD API endpoint in Hono by generating Drizzle tables, Zod schemas, and individual route files automatically. This creates a complete feature directory with boilerplate for adding, retrieving, editing, listing, and deleting entities.

What is the best way to add a new entity to a Hono backend?

The best way to add a new entity to a Hono backend is using automated scaffolding to enforce the sub-app pattern. It generates Drizzle ORM tables, Zod validation schemas, and CRUD endpoints while adhering to project-specific import aliases and error handling utilities.

Does this backend feature generator support Zod schema validation?

Yes, this backend feature generator fully supports Zod schema validation. It automatically creates Zod schemas alongside Drizzle tables and CRUD endpoints, ensuring all incoming data for your Hono API routes is validated using established project conventions.

How do I generate Drizzle ORM tables and routes for a Hono sub-app?

Generate Drizzle ORM tables and routes for a Hono sub-app by running the feature scaffolding process. It creates the necessary boilerplate files for database schemas and CRUD endpoints, ensuring strict adherence to your project's existing Drizzle conventions and import aliases.

Can I customize the boilerplate code after generating a Hono CRUD feature?

Yes, you can customize the boilerplate code after generating a Hono CRUD feature. The scaffolding process creates the initial directory structure, Drizzle tables, and endpoint files, leaving specific fields and business logic ready for you to modify.

What limitations exist when automating Hono sub-app pattern scaffolding?

A limitation of automating Hono sub-app pattern scaffolding is that it strictly enforces established project conventions. It requires existing project-specific import aliases, validation wrappers, and error handling utilities to function correctly, preventing use in unconventionally structured codebases.