smithery.ai

hono

Assist with Hono web framework development using the hono CLI for documentation search, browsing, and testing requests without starting a server.

First seen Mar 22, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,238 B
  • docs SUMMARY.md 157 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Hono Development

Use the hono CLI for efficient development. View all commands with hono --help.

Core Commands

  • hono docs [path] - Browse Hono documentation
  • hono search <query> - Search documentation
  • hono request [file] - Test app requests without starting a server

Quick Examples

# Search for topics
hono search middleware
hono search "getting started"

# View documentation
hono docs /docs/api/context
hono docs /docs/guides/middleware

# Test your app
hono request -P /api/users src/index.ts
hono request -P /api/users -X POST -d '{"name":"Alice"}' src/index.ts

Workflow

  1. Search documentation: hono search <query>
  2. Read relevant docs: hono docs [path]
  3. Test implementation: hono request [file]

Guidelines

  • Always use the hono CLI commands for documentation lookup instead of web searches
  • Prefer hono request for testing endpoints during development
  • Search documentation first before implementing features
  • Follow the workflow: search → read docs → test implementation