feat: GitHub Issue Scraper for Foundry Bounties (Closes #840)#1044
Closed
muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
Closed
feat: GitHub Issue Scraper for Foundry Bounties (Closes #840)#1044muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
Conversation
Backend service that automatically scrapes GitHub issues from configured repositories and converts them into SolFoundry bounty specifications. Components: - scripts/github-scraper.py: CLI tool with 4 commands (scrape, webhook, generate, list) - scripts/test_github_scraper.py: 9 unit tests (all passing) - scraper-config.yaml: Example configuration file Features: - Automatic GitHub issue detection and scraping - Tier estimation (T1/T2/T3) based on issue complexity - Category and skill detection from labels and content - Enhanced bounty descriptions with requirements checklist - YAML bounty spec generation (compatible with SolFoundry lint) - Webhook server for real-time GitHub issue updates - Rate limit handling and GitHub API best practices Usage: python3 scripts/github-scraper.py scrape --repo owner/repo python3 scripts/github-scraper.py generate --repo owner/repo --output specs/ python3 scripts/github-scraper.py webhook --port 8080 python3 scripts/github-scraper.py list Wallet: 47HxQss7ctt6fFymSo8gevkYUWJPxieYFDG1eWQK7AjU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements the GitHub Issue Scraper bounty from #840.
Closes #840
Wallet:
47HxQss7ctt6fFymSo8gevkYUWJPxieYFDG1eWQK7AjUSummary
Backend service that automatically scrapes GitHub issues from configured repositories and converts them into SolFoundry bounty specifications.
Components
scripts/github-scraper.py: CLI tool with 4 commands (scrape, webhook, generate, list)scripts/test_github_scraper.py: 9 unit tests, all passingscraper-config.yaml: Example configuration fileFeatures
Usage
Acceptance Criteria