Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

honoHono CLI

Agent Skill

hono 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

776

周安装

32

GitHub Stars

10

下载量

253
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hono(Hono CLI)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/hono
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill hono
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill hono

简介

hono 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于开发类 Agent 工作流,尤其关注代码协作与仓库管理场景。
  • hono 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Hono

Overview

Hono is a small, ultrafast web framework built on Web Standards that runs on any JavaScript runtime including Cloudflare Workers, Bun, Deno, Node.js, Vercel, and AWS Lambda. Application code is portable across runtimes; only the entry point and adapter differ per platform.

When to use: Edge-first APIs, Cloudflare Workers services, multi-runtime applications, lightweight REST/RPC servers, middleware-heavy request pipelines, type-safe client-server communication.

When NOT to use: Full-stack SSR frameworks (use Next.js/Remix), heavy ORM-driven monoliths where Express ecosystem maturity matters, applications that need deep Node.js-only APIs without Web Standard equivalents.

Quick Reference

PatternAPIKey Points
Basic routingapp.get('/path', handler)Supports get, post, put, delete, patch, all
Path parametersapp.get('/user/:id', handler)Access via c.req.param('id')
Regex constraintsapp.get('/post/:id{[0-9]+}', handler)Inline regex in path parameter
Wildcardapp.get('/files/*', handler)Matches any sub-path
Route groupingapp.route('/api', subApp)Mount sub-applications
Middlewareapp.use(middleware())Executes in registration order
Path middlewareapp.use('/auth/*', jwt(...))Scope middleware to paths
JSON responsec.json({key: 'value'})Sets Content-Type automatically
Text responsec.text('hello')Returns plain text
HTML responsec.html('<h1>Hi</h1>')Returns HTML content
Status + headerc.status(201), c.header('X-Key', 'val')Chain before response
Redirectc.redirect('/new-path', 301)Default status is 302
Request bodyc.req.json(), c.req.parseBody()JSON or form data parsing
Query paramsc.req.query('page')Single query parameter
Context variablesc.set('user', data) / c.get('user')Type-safe middleware data passing
Zod validationzValidator('json', schema)@hono/zod-validator package
RPC clienthc<AppType>(url)End-to-end type-safe API calls
Error handlerapp.onError((err, c) =>...)Global error handling
Not foundapp.notFound((c) =>...)Custom 404 handler
Environmentc.env.BINDING_KEYAccess runtime bindings/env vars
Adapter helperenv(c) from hono/adapterUnified env access across runtimes
WebSocketupgradeWebSocket() from runtime adapterWebSocket helper with RPC support
Test clienttestClient(app) from hono/testingType-safe testing without HTTP server
JSX streamingjsxRenderer({stream: true})SSR streaming with Suspense support

Common Mistakes

MistakeCorrect Pattern
Registering middleware after handlersRegister middleware before the handlers it should apply to
Using app.route() without chaining for RPC typesChain route methods (app.route('/a', a).route('/b', b)) and export typeof routes
Forgetting export default app for edge runtimesCloudflare Workers, Bun, and Deno require the default export
Using compress() on Cloudflare Workers or Deno DeployThese platforms compress automatically; skip the middleware
Mixing Hono and middleware versions in DenoPin all hono imports to the same version to avoid type mismatches
Wrapping next() in try/catch inside middlewareHono catches thrown errors and routes to app.onError(); next() never throws
Defining routes with app.get() but exporting typeof app for RPCExport the type of the chained route variable, not the app instance
Using new Hono() without generics for typed contextPass Hono<{Variables: MyVars}> to enable typed c.get()/c.set()
Returning c.json() without status for created resourcesPass status as second argument: c.json(data, 201)
Not using createMiddleware() for reusable middlewareImport from hono/factory to preserve type inference when extracting middleware

Delegation

If the zod or typescript-patterns skill is available, delegate schema and type-level tasks to it. Otherwise, recommend: npx skills add oakoss/agent-skills --skill typescript-patterns If a Cloudflare Workers skill is available, delegate platform-specific configuration to it.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.79%
按下载量换算96

Claude

32.36%
按下载量换算82

Cursor

19.05%
按下载量换算48

Gemini CLI

8.78%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills