diff --git a/src/skill_seekers/cli/presets/github_presets.py b/src/skill_seekers/cli/presets/github_presets.py index 8c72cef..1a29fa0 100644 --- a/src/skill_seekers/cli/presets/github_presets.py +++ b/src/skill_seekers/cli/presets/github_presets.py @@ -5,7 +5,7 @@ Defines preset configurations for the github command. Presets: quick: Fast scraping with minimal data standard: Balanced scraping (DEFAULT) - full: Comprehensive scraping with all data + comprehensive: Comprehensive scraping with all data """ from dataclasses import dataclass, field @@ -57,8 +57,8 @@ GITHUB_PRESETS = { estimated_time="5-15 minutes" ), - "full": GitHubPreset( - name="Full", + "comprehensive": GitHubPreset( + name="Comprehensive", description="Comprehensive scraping with all available data", max_issues=500, features={ diff --git a/src/skill_seekers/cli/presets/scrape_presets.py b/src/skill_seekers/cli/presets/scrape_presets.py index 805044f..4a272dc 100644 --- a/src/skill_seekers/cli/presets/scrape_presets.py +++ b/src/skill_seekers/cli/presets/scrape_presets.py @@ -5,7 +5,7 @@ Defines preset configurations for the scrape command. Presets: quick: Fast scraping with minimal depth standard: Balanced scraping (DEFAULT) - deep: Comprehensive scraping with all features + comprehensive: Comprehensive scraping with all features """ from dataclasses import dataclass, field @@ -63,8 +63,8 @@ SCRAPE_PRESETS = { estimated_time="10-30 minutes" ), - "deep": ScrapePreset( - name="Deep", + "comprehensive": ScrapePreset( + name="Comprehensive", description="Comprehensive scraping with all features", rate_limit=1.0, features={