Marketplace
source-finder
Locate source code repositories for Python packages by analyzing PyPI metadata, project URLs, and code hosting platforms like GitHub, GitLab, and Bitbucket. Provides deterministic results with confidence levels.
allowed_tools: Bash, WebSearch, WebFetch
$ 설치
git clone https://github.com/opendatahub-io/ai-helpers /tmp/ai-helpers && cp -r /tmp/ai-helpers/claude-plugins/python-packaging/skills/source-finder ~/.claude/skills/ai-helpers// tip: Run this command in your terminal to install the skill
SKILL.md
name: source-finder description: Locate source code repositories for Python packages by analyzing PyPI metadata, project URLs, and code hosting platforms like GitHub, GitLab, and Bitbucket. Provides deterministic results with confidence levels. allowed-tools: [Bash, WebSearch, WebFetch]
Source Finder
Locates source code repositories for Python packages with confidence scoring.
Usage
To find a source repository for a given package:
- Run the finder script, for example:
# 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"
}
- Parse the JSON output:
url: Repository URL (ornullif not found)confidence:high,medium, orlowmethod: How the URL was foundpackage_name: the package that was searched
-
If confidence is
loworurlisnull, use WebSearch:<package_name> python github repository -
Present results with confidence level clearly indicated
Output Format
As a result, provide structured output including:
- Repository URL
- Confidence level (high/medium/low)
- Method used to find the repository
- Additional context or warnings
Repository

opendatahub-io
Author
opendatahub-io/ai-helpers/claude-plugins/python-packaging/skills/source-finder
9
Stars
6
Forks
Updated4d ago
Added1w ago