hono
Efficiently develop Hono applications using Hono CLI. Supports documentation search, API reference lookup, request testing, and bundle optimization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Efficiently develop Hono applications using Hono CLI. Supports documentation search, API reference lookup, request testing, and bundle optimization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Sync documentation with code changes. Audits git diff and updates ARCHITECTURE.md, DECISIONS.md, TASKS.md, CLAUDE.md, and README.md to reflect current implementation.
Mastra v1 API patterns and examples. Reference material for agents, tools, workflows, and streaming. Based on latest @mastra/core docs.
TanStack Query v5 patterns for React. Reference for queries, mutations, infinite scroll, and cache management.
| name | hono |
| description | Efficiently develop Hono applications using Hono CLI. Supports documentation search, API reference lookup, request testing, and bundle optimization. |
| context | fork |
| user_invocable | true |
Develop Hono applications efficiently using Hono CLI (@hono/cli).
You can use Hono CLI without global installation via npx:
npx @hono/cli <command>
Or install globally (optional):
npm install -g @hono/cli
hono search "<query>" --pretty
Search for Hono APIs and features. Use --pretty for human-readable output.
hono docs [path]
Display detailed documentation for a specific path found in search results.
Examples:
hono docs /docs/api/context
hono docs /docs/api/hono
hono docs /docs/helpers/factory
# GET request
hono request [file] -P /path
# POST request
hono request [file] -X POST -P /api/users -d '{"name": "test"}'
# Request with headers
hono request [file] -H "Authorization: Bearer token" -P /api/protected
Uses app.request() internally, so no server startup required for testing.
# Bundle optimization
hono optimize [entry] -o dist/index.js
# With minification
hono optimize [entry] -o dist/index.js --minify
# Specify target (cloudflare-workers, deno, etc.)
hono optimize [entry] -t cloudflare-workers
hono search → hono docs to investigate APIs and featureshono request to test endpointshono optimize for production builds when neededhono search before implementing unfamiliar APIs--pretty flag with hono search (default output is JSON)hono request works without starting an HTTP serverhono search "middleware name"