Skip to contents

Searches GitHub for repositories tagged with a hook topic and matching a keyword query. Searches across all supported hook topic conventions (e.g. claude-hook, cursor-hook).

Usage

find_hook(query)

Arguments

query

Keyword to search for.

Value

A data frame with columns:

  • name: repository name.

  • description: repository description.

  • owner: repository owner login.

  • url: full URL of the repository.

  • stars: number of GitHub stars.

Examples

if (FALSE) { # \dontrun{
# Requires GitHub API access; may fail due to rate limiting
find_hook('linting')
} # }