From odh-ai-helpers
Locates source code repositories for Python packages using PyPI metadata, project URLs, and platforms like GitHub, GitLab, Bitbucket. Outputs URL with confidence level.
npx claudepluginhub opendatahub-io/ai-helpers --plugin odh-ai-helpersThis skill is limited to using the following tools:
Locates source code repositories for Python packages with confidence scoring.
Clones library repositories from GitHub and researches source code with an agent to answer questions about APIs, usage, and documentation.
Finds license information for Python packages by checking PyPI metadata first, then shallow-cloning Git repos to search LICENSE files. Use for deterministic license detection.
Share bugs, ideas, or general feedback.
Locates source code repositories for Python packages with confidence scoring.
To find a source repository for a given package:
# Find repository
$ ./scripts/finder.py requests
# Output structure:
{
"url": "https://github.com/psf/requests",
"confidence": "high",
"method": "pypi_metadata_project_urls.Source",
"package_name": "requests"
}
url: Repository URL (or null if not found)confidence: high, medium, or lowmethod: How the URL was foundpackage_name: the package that was searchedIf confidence is low or url is null, use WebSearch: <package_name> python github repository
Present results with confidence level clearly indicated
As a result, provide structured output including: