Recherche Documentation Hono

VérifiéSûr

Utilisez la CLI Hono pour rechercher et consulter la documentation du framework Hono. Indispensable pour planifier ou développer avec Hono.

Spar Skills Guide Bot
DeveloppementDébutant
4002/06/2026
Claude Code
#hono#documentation#search#cli#framework

Recommandé pour

Notre avis

Utilisez le CLI Hono pour rechercher et consulter la documentation officielle du framework Hono.

Points forts

  • Accès rapide à la documentation sans quitter le terminal
  • Recherche par mot-clé avec résultats structurés
  • Intégration possible en pipeline avec jq pour naviguer directement
  • Documentation officielle toujours à jour

Limites

  • Nécessite l'installation du CLI hono
  • Limité au framework Hono uniquement
  • La recherche peut renvoyer des résultats incomplets pour des requêtes complexes
Quand l'utiliser

Lorsque vous développez ou planifiez des projets avec Hono et avez besoin d'accéder rapidement à sa documentation.

Quand l'éviter

Si vous travaillez avec un autre framework ou si vous préférez une documentation hors ligne.

Analyse de sécurité

Sûr
Score qualité85/100

The skill only uses the `hono` CLI for documentation searches and `jq` for parsing, with no execution of arbitrary commands or network requests. There is no indication of destructive or exfiltrating behavior.

Aucun point d'attention détecté

Exemples

Search Hono middleware documentation
Search the Hono documentation for 'middleware' and list the available middleware types.
View API context docs
Open the Hono docs page for /docs/api/context and summarize what the Context object provides.
Pipeline search and view
Search Hono docs for 'routing', take the first result path, and open that documentation page.

name: Hono Documentation Search description: Use the hono CLI to search and view Hono framework documentation. Use this when planning or building with Hono. allowed-tools: Bash(hono:), Bash(jq:), Bash(which hono), Task

Hono

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

Instructions

Use hono docs and hono search commands to access Hono documentation and answer questions about the Hono framework.

  • hono docs [path] - Browse Hono documentation
  • hono search <query> - Search documentation

Examples

Search for topics

hono search middleware
hono search "getting started"

View documentation

hono docs /docs/api/context
hono docs /docs/guides/middleware

Pipelines

hono search "middleware" | jq '.results[0].path' | hono docs
hono search "routing" | jq '.results[0].path' | hono docs
Skills similaires