plan_oss_pr_opportunity_scout
Analyze project dependencies to find proof-backed issue, bounty, and PR opportunities in upstream repositories, avoiding spammy contributions.
Instructions
Rank upstream GitHub repositories ThumbGate depends on for proof-backed issue, bounty, and PR opportunities without spammy drive-by contributions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packagePath | No | Path to package.json used to discover dependencies. | |
| dependencies | No | Dependency names to scout instead of package.json. | |
| maxRepos | No | Maximum mapped repositories to include. | |
| includeBounties | No | Include bug-bounty and security search queries. |
Implementation Reference
- adapters/mcp/server-stdio.js:1039-1040 (registration)MCP server case handler that routes the 'plan_oss_pr_opportunity_scout' tool call to buildOssPrOpportunityScoutPlan and returns the result as text.
case 'plan_oss_pr_opportunity_scout': return toTextResult(buildOssPrOpportunityScoutPlan(args)); - adapters/mcp/server-stdio.js:145-146 (registration)Import of buildOssPrOpportunityScoutPlan from scripts/oss-pr-opportunity-scout.js into the MCP server.
buildOssPrOpportunityScoutPlan, } = require('../../scripts/oss-pr-opportunity-scout');