Agent Skill for developing Hono applications
$git clone https://github.com/yusukebe/hono-skillInstalls into the current project.
Install hono-skill by running `git clone https://github.com/yusukebe/hono-skill`, then use it for the current task and follow its documentation at https://github.com/yusukebe/hono-skill.
| 1 | # Hono Skill |
| 2 | |
| 3 | Agent Skill for developing Hono applications. Provides inline API reference and request testing via [Hono CLI](https://github.com/honojs/cli). |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ### Claude Code |
| 8 | |
| 9 | ```bash |
| 10 | # Add marketplace |
| 11 | /plugin marketplace add yusukebe/hono-skill |
| 12 | |
| 13 | # Install skill |
| 14 | /plugin install hono-skill@hono |
| 15 | ``` |
| 16 | |
| 17 | ### skills.sh |
| 18 | |
| 19 | ```bash |
| 20 | npx skills add yusukebe/hono-skill |
| 21 | ``` |
| 22 | |
| 23 | ## Skill |
| 24 | |
| 25 | ### hono |
| 26 | |
| 27 | Build Hono web applications with inline API knowledge. |
| 28 | |
| 29 | **Features:** |
| 30 | |
| 31 | - Inline Hono API reference (routing, context, middleware, JSX, validation, RPC, streaming, helpers) |
| 32 | - Request testing via `hono request` |
| 33 | |
| 34 | ## MCP Server (Optional) |
| 35 | |
| 36 | For the latest Hono documentation search and retrieval, add the `hono-docs` MCP server: |
| 37 | |
| 38 | ```bash |
| 39 | claude mcp add --transport http hono-docs https://hono-docs-mcp.yusukebe.workers.dev/mcp |
| 40 | ``` |
| 41 | |
| 42 | Or add to your `.mcp.json`: |
| 43 | |
| 44 | ```json |
| 45 | { |
| 46 | "mcpServers": { |
| 47 | "hono-docs": { |
| 48 | "type": "http", |
| 49 | "url": "https://hono-docs-mcp.yusukebe.workers.dev/mcp" |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | ``` |
| 54 | |
| 55 | ## Requirements |
| 56 | |
| 57 | - [Hono CLI](https://github.com/honojs/cli) - Install as devDependency (`npm install -D @hono/cli`) |
| 58 | |
| 59 | ## License |
| 60 | |
| 61 | MIT |