Version: 3.6.0 (18 source types supported)
Unified multi-source scraping allows you to combine knowledge from multiple sources into a single comprehensive skill. Instead of choosing between documentation, GitHub repositories, PDF manuals, or any of the 18 supported source types, you can extract and intelligently merge information from all of them.
The Problem: Documentation and code often drift apart over time. Official docs might be outdated, missing features that exist in code, or documenting features that have been removed. Separately scraping docs and code creates two incomplete skills.
The Solution: Unified scraping:
- Extracts information from 18 source types (documentation, GitHub, PDFs, videos, Word docs, EPUB, Jupyter notebooks, local HTML, OpenAPI specs, AsciiDoc, PowerPoint, RSS/Atom feeds, man pages, Confluence, Notion, Slack/Discord, and local codebases)
- Detects conflicts between documentation and actual code implementation
- Intelligently merges conflicting information with transparency
- Generic merge system combines any combination of source types via pairwise synthesis
- Highlights discrepancies with inline warnings
- Creates a single, comprehensive skill that shows the complete picture
Create a config file with multiple sources:
{
"name": "react",
"description": "Complete React knowledge from docs + codebase",
"merge_mode": "rule-based",
"sources": [
{
"type": "documentation",
"base_url": "https://react.dev/",
"extract_api": true,
"max_pages": 200
},
{
"type": "github",
"repo": "facebook/react",
"include_code": true,
"code_analysis_depth": "surface",
"max_issues": 100
}
]
}skill-seekers create --config configs/react_unified.jsonThe tool will:
- ✅ Phase 1: Scrape all sources (any of the 17 supported types)
- ✅ Phase 2: Detect conflicts between sources
- ✅ Phase 3: Merge conflicts intelligently (pairwise synthesis or generic merge)
- ✅ Phase 4: Build unified skill with conflict transparency
- ✅ Phase 5: Apply enhancement workflows (optional)
skill-seekers package output/react/{
"name": "skill-name",
"description": "When to use this skill",
"merge_mode": "rule-based|claude-enhanced",
"sources": [
{
"type": "<source-type>",
...source-specific fields...
}
]
}| Type | Config type Value |
Description |
|---|---|---|
| Documentation (web) | documentation |
Web documentation sites |
| GitHub repo | github |
GitHub repository analysis |
pdf |
PDF document extraction | |
| Local codebase | local |
Local directory analysis |
| Word (.docx) | word |
Word document extraction |
| Video | video |
YouTube/Vimeo/local video transcription |
| EPUB | epub |
EPUB ebook extraction |
| Jupyter Notebook | jupyter |
.ipynb notebook extraction |
| Local HTML | html |
Local HTML file extraction |
| OpenAPI/Swagger | openapi |
OpenAPI/Swagger spec parsing |
| AsciiDoc | asciidoc |
AsciiDoc document extraction |
| PowerPoint | pptx |
PowerPoint presentation extraction |
| RSS/Atom | rss |
RSS/Atom feed extraction |
| Man pages | manpage |
Unix man page extraction |
| Confluence | confluence |
Atlassian Confluence wiki extraction |
| Notion | notion |
Notion workspace extraction |
| Slack/Discord | chat |
Chat export extraction |
{
"type": "documentation",
"base_url": "https://docs.example.com/",
"extract_api": true,
"selectors": {
"main_content": "article",
"title": "h1",
"code_blocks": "pre code"
},
"url_patterns": {
"include": [],
"exclude": ["/blog/"]
},
"categories": {
"getting_started": ["intro", "tutorial"],
"api": ["api", "reference"]
},
"rate_limit": 0.5,
"max_pages": 200
}{
"type": "github",
"repo": "owner/repo",
"github_token": "ghp_...",
"include_issues": true,
"max_issues": 100,
"include_changelog": true,
"include_releases": true,
"include_code": true,
"code_analysis_depth": "surface|deep|full",
"file_patterns": [
"src/**/*.js",
"lib/**/*.ts"
]
}Code Analysis Depth:
surface(default): Basic structure, no code analysisdeep: Extract class/function signatures, parameters, return typesfull: Complete AST analysis (expensive)
{
"type": "pdf",
"path": "/path/to/manual.pdf",
"extract_tables": false,
"ocr": false,
"password": "optional-password"
}{
"type": "video",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"language": "en"
}{
"type": "word",
"path": "/path/to/document.docx"
}{
"type": "epub",
"path": "/path/to/book.epub"
}{
"type": "jupyter",
"path": "/path/to/notebook.ipynb"
}{
"type": "html",
"path": "/path/to/page.html"
}{
"type": "openapi",
"path": "/path/to/openapi.yaml"
}{
"type": "asciidoc",
"path": "/path/to/document.adoc"
}{
"type": "pptx",
"path": "/path/to/presentation.pptx"
}{
"type": "rss",
"url": "https://blog.example.com/feed.xml"
}{
"type": "manpage",
"path": "/path/to/command.1"
}{
"type": "confluence",
"base_url": "https://company.atlassian.net/wiki",
"space_key": "DOCS"
}{
"type": "notion",
"workspace": "my-workspace",
"root_page_id": "abc123"
}{
"type": "chat",
"path": "/path/to/export/"
}The unified scraper automatically detects 4 types of conflicts:
Severity: Medium Description: API exists in code but is not documented
Example:
# Code has this method:
def move_local_x(self, delta: float, snap: bool = False) -> None:
"""Move node along local X axis"""
# But documentation doesn't mention itSuggestion: Add documentation for this API
Severity: High Description: API is documented but not found in codebase
Example:
# Docs say:
def rotate(angle: float) -> None
# But code doesn't have this functionSuggestion: Update documentation to remove this API, or add it to codebase
Severity: Medium-High Description: API exists in both but signatures differ
Example:
# Docs say:
def move_local_x(delta: float)
# Code has:
def move_local_x(delta: float, snap: bool = False)Suggestion: Update documentation to match actual signature
Severity: Low Description: Different descriptions/docstrings
Fast, deterministic merging using predefined rules:
- If API only in docs → Include with
[DOCS_ONLY]tag - If API only in code → Include with
[UNDOCUMENTED]tag - If both match perfectly → Include normally
- If conflict exists → Prefer code signature, keep docs description
When to use:
- Fast merging (< 1 second)
- Automated workflows
- You don't need human oversight
Example:
skill-seekers create --config config.json --merge-mode rule-basedAI-powered reconciliation using local Claude Code:
- Opens new terminal with Claude Code
- Provides conflict context and instructions
- Claude analyzes and creates reconciled API reference
- Human can review and adjust before finalizing
When to use:
- Complex conflicts requiring judgment
- You want highest quality merge
- You have time for human oversight
Example:
skill-seekers create --config config.json --merge-mode claude-enhancedThe unified scraper creates this structure:
output/skill-name/
├── SKILL.md # Main skill file with merged APIs
├── references/
│ ├── documentation/ # Documentation references
│ │ └── index.md
│ ├── github/ # GitHub references
│ │ ├── README.md
│ │ ├── issues.md
│ │ └── releases.md
│ ├── pdf/ # PDF references (if applicable)
│ │ └── index.md
│ ├── video/ # Video transcripts (if applicable)
│ │ └── index.md
│ ├── openapi/ # OpenAPI spec (if applicable)
│ │ └── index.md
│ ├── jupyter/ # Notebook content (if applicable)
│ │ └── index.md
│ ├── <source-type>/ # Other source type references
│ │ └── index.md
│ ├── api/ # Merged API reference
│ │ └── merged_api.md
│ └── conflicts.md # Detailed conflict report
├── scripts/ # Empty (for user scripts)
└── assets/ # Empty (for user assets)
# React
Complete React knowledge base combining official documentation and React codebase insights.
## 📚 Sources
This skill combines knowledge from multiple sources:
- ✅ **Documentation**: https://react.dev/
- Pages: 200
- ✅ **GitHub Repository**: facebook/react
- Code Analysis: surface
- Issues: 100
## ⚠️ Data Quality
**5 conflicts detected** between sources.
**Conflict Breakdown:**
- missing_in_docs: 3
- missing_in_code: 2
See `references/conflicts.md` for detailed conflict information.
## 🔧 API Reference
*Merged from documentation and code analysis*
### ✅ Verified APIs
*Documentation and code agree*
#### `useState(initialValue)`
...
### ⚠️ APIs with Conflicts
*Documentation and code differ*
#### `useEffect(callback, deps?)`
⚠️ **Conflict**: Documentation signature differs from code implementation
**Documentation says:**useEffect(callback: () => void, deps: any[])
**Code implementation:**
useEffect(callback: () => void | (() => void), deps?: readonly any[])
*Source: both*
---
{
"name": "react",
"description": "Complete React framework knowledge",
"merge_mode": "rule-based",
"sources": [
{
"type": "documentation",
"base_url": "https://react.dev/",
"extract_api": true,
"max_pages": 200
},
{
"type": "github",
"repo": "facebook/react",
"include_code": true,
"code_analysis_depth": "surface"
}
]
}{
"name": "django",
"description": "Complete Django framework knowledge",
"merge_mode": "rule-based",
"sources": [
{
"type": "documentation",
"base_url": "https://docs.djangoproject.com/en/stable/",
"extract_api": true,
"max_pages": 300
},
{
"type": "github",
"repo": "django/django",
"include_code": true,
"code_analysis_depth": "deep",
"file_patterns": [
"django/db/**/*.py",
"django/views/**/*.py"
]
}
]
}{
"name": "my-api",
"description": "Complete API knowledge with spec and notebooks",
"merge_mode": "rule-based",
"sources": [
{
"type": "documentation",
"base_url": "https://api.example.com/docs/",
"extract_api": true,
"max_pages": 100
},
{
"type": "openapi",
"path": "specs/openapi.yaml"
},
{
"type": "jupyter",
"path": "notebooks/api-examples.ipynb"
}
]
}{
"name": "internal-platform",
"description": "Internal platform knowledge from all sources",
"merge_mode": "claude-enhanced",
"sources": [
{
"type": "confluence",
"base_url": "https://company.atlassian.net/wiki",
"space_key": "PLATFORM"
},
{
"type": "github",
"repo": "company/platform",
"include_code": true,
"code_analysis_depth": "deep"
},
{
"type": "video",
"url": "https://www.youtube.com/playlist?list=PLexample",
"language": "en"
}
]
}{
"name": "godot",
"description": "Complete Godot Engine knowledge",
"merge_mode": "claude-enhanced",
"sources": [
{
"type": "documentation",
"base_url": "https://docs.godotengine.org/en/stable/",
"extract_api": true,
"max_pages": 500
},
{
"type": "github",
"repo": "godotengine/godot",
"include_code": true,
"code_analysis_depth": "deep"
},
{
"type": "pdf",
"path": "/path/to/godot_manual.pdf",
"extract_tables": true
}
]
}# Basic usage
skill-seekers create --config configs/react_unified.json
# Override merge mode
skill-seekers create --config configs/react_unified.json --merge-mode claude-enhanced
# Fresh start (clear cached data)
skill-seekers create --config configs/react_unified.json --fresh
# Dry run (preview without executing)
skill-seekers create --config configs/react_unified.json --dry-runAll workflow flags are now supported:
# Apply workflow preset
skill-seekers create --config configs/react_unified.json --enhance-workflow security-focus
# Multiple workflows (chained)
skill-seekers create --config configs/react_unified.json \
--enhance-workflow security-focus \
--enhance-workflow api-documentation
# Custom enhancement stage
skill-seekers create --config configs/react_unified.json \
--enhance-stage "cleanup:Remove boilerplate content"
# Workflow variables
skill-seekers create --config configs/react_unified.json \
--enhance-workflow my-workflow \
--var focus_area=performance \
--var detail_level=high
# Preview workflows without executing
skill-seekers create --config configs/react_unified.json \
--enhance-workflow security-focus \
--workflow-dry-runOverride enhancement settings from CLI:
# Override enhance level for all sources
skill-seekers create --config configs/react_unified.json --enhance-level 3
# Provide API key (or use ANTHROPIC_API_KEY env var)
skill-seekers create --config configs/react_unified.json --api-key YOUR_API_KEYDefine workflows directly in your unified config:
{
"name": "react-complete",
"description": "React with security focus",
"merge_mode": "claude-enhanced",
"workflows": ["security-focus"],
"workflow_stages": [
{
"name": "cleanup",
"prompt": "Remove boilerplate and standardize formatting"
}
],
"workflow_vars": {
"focus_area": "security",
"detail_level": "comprehensive"
},
"sources": [
{"type": "documentation", "base_url": "https://react.dev/"},
{"type": "github", "repo": "facebook/react"}
]
}Priority: CLI flags override config values.
python3 -c "
import sys
sys.path.insert(0, 'cli')
from config_validator import validate_config
validator = validate_config('configs/react_unified.json')
print(f'Format: {\"Unified\" if validator.is_unified else \"Legacy\"}')
print(f'Sources: {len(validator.config.get(\"sources\", []))}')
print(f'Needs API merge: {validator.needs_api_merge()}')
"The unified scraper is fully integrated with MCP. The scrape_docs tool automatically detects unified vs legacy configs and routes to the appropriate scraper.
# MCP tool usage
{
"name": "scrape_docs",
"arguments": {
"config_path": "configs/react_unified.json",
"merge_mode": "rule-based" # Optional override
}
}The tool will:
- Auto-detect unified format
- Route to
unified_scraper.py - Apply specified merge mode
- Return comprehensive output
Legacy configs still work! The system automatically detects legacy single-source configs and routes to the original doc_scraper.py.
// Legacy config (still works)
{
"name": "react",
"base_url": "https://react.dev/",
...
}
// Automatically detected as legacy format
// Routes to doc_scraper.pyRun integration tests:
pytest tests/ -k unified_simpleTests validate:
- ✅ Unified config validation
- ✅ Backward compatibility with legacy configs
- ✅ Mixed source type support
- ✅ Error handling for invalid configs
- config_validator.py: Validates unified and legacy configs
- code_analyzer.py: Extracts code signatures at configurable depth
- conflict_detector.py: Detects API conflicts between sources
- merge_sources.py: Implements rule-based and Claude-enhanced merging
- unified_scraper.py: Main orchestrator. Routes each source through a class-level
SOURCE_DISPATCHtable; the 13 mechanical source types share one_scrape_with_converter()engine built onget_converter(), so new converter types registered inCONVERTER_REGISTRYwork in unified configs automatically. Also constructible via the factory:get_converter("config", {"config_path": ...}). - unified_skill_builder.py: Generates final skill structure
- skill_seeker_mcp/server.py: MCP integration with auto-detection
Unified Config
↓
ConfigValidator (validates format)
↓
UnifiedScraper.run()
↓
┌────────────────────────────────────┐
│ Phase 1: Scrape All Sources │
│ - Documentation → doc_scraper │
│ - GitHub → github_scraper │
│ - PDF → pdf_scraper │
│ - Local → codebase_scraper │
│ - Video → video_scraper │
│ - Word → word_scraper │
│ - EPUB → epub_scraper │
│ - Jupyter → jupyter_scraper │
│ - HTML → html_scraper │
│ - OpenAPI → openapi_scraper │
│ - AsciiDoc → asciidoc_scraper │
│ - PowerPoint → pptx_scraper │
│ - RSS/Atom → rss_scraper │
│ - Man pages → manpage_scraper │
│ - Confluence → confluence_scraper │
│ - Notion → notion_scraper │
│ - Chat → chat_scraper │
└────────────────────────────────────┘
↓
┌────────────────────────────────────┐
│ Phase 2: Detect Conflicts │
│ - ConflictDetector │
│ - Compare docs APIs vs code APIs │
│ - Classify by type and severity │
└────────────────────────────────────┘
↓
┌────────────────────────────────────┐
│ Phase 3: Merge Sources │
│ - Pairwise synthesis (docs+github │
│ +pdf combos) │
│ - Generic merge (_generic_merge) │
│ for all other combinations │
│ - RuleBasedMerger (fast) │
│ - OR ClaudeEnhancedMerger (AI) │
│ - Create unified API reference │
└────────────────────────────────────┘
↓
┌────────────────────────────────────┐
│ Phase 4: Build Skill │
│ - UnifiedSkillBuilder │
│ - Generate SKILL.md with conflicts│
│ - Create reference structure │
│ - Generate conflicts report │
└────────────────────────────────────┘
↓
┌────────────────────────────────────┐
│ Phase 5: Enhancement Workflows │
│ - Apply workflow presets │
│ - Run custom enhancement stages │
│ - Variable substitution │
└────────────────────────────────────┘
↓
Unified Skill (.zip ready)
Rule-based is fast and works well for most cases. Only use Claude-enhanced if you need human oversight.
code_analysis_depth: "surface" is usually sufficient. Deep analysis is expensive and rarely needed.
max_issues: 100 is a good default. More than 200 issues rarely adds value.
"file_patterns": [
"src/**/*.js", // Good: specific paths
"lib/**/*.ts"
]
// Not recommended:
"file_patterns": ["**/*.js"] // Too broad, slowAlways review references/conflicts.md to understand discrepancies between sources.
Possible causes:
extract_api: falsein documentation sourceinclude_code: falsein GitHub source- Code analysis found no APIs (check
code_analysis_depth)
Solution: Ensure both sources have API extraction enabled
Possible causes:
- Fuzzy matching threshold too strict
- Documentation uses different naming conventions
- Old documentation version
Solution: Review conflicts manually and adjust merge strategy
Possible causes:
- Using
code_analysis_depth: "full"(very slow) - Too many file patterns
- Large repository
Solution:
- Use
"surface"or"deep"analysis - Narrow file patterns
- Increase
rate_limit
Planned features:
- Automated conflict resolution strategies
- Conflict trend analysis across versions
- Multi-version comparison (docs v1 vs v2)
- Custom merge rules DSL
- Conflict confidence scores
For issues, questions, or suggestions:
- GitHub Issues: https://github.com/yusufkaraaslan/Skill_Seekers/issues
- Documentation: https://github.com/yusufkaraaslan/Skill_Seekers/docs
v3.6.0 (May 2026): 18 source types supported
- ✅ 13 new source types: Word, EPUB, Video, Jupyter, HTML, OpenAPI, AsciiDoc, PowerPoint, RSS/Atom, Man pages, Confluence, Notion, Slack/Discord
- ✅ Generic merge system (
_generic_merge()) for combining any source type combination - ✅ Pairwise synthesis for docs+github+pdf combos
- ✅
complex-merge.yamlworkflow preset for AI-powered multi-source merging
v3.1.0 (February 2026): Enhancement workflow support
- ✅ Full workflow system integration (Phase 5)
- ✅ All workflow flags supported (--enhance-workflow, --enhance-stage, --var, --workflow-dry-run)
- ✅ Workflow configuration in JSON configs
- ✅ Global --enhance-level and --api-key CLI overrides
- ✅ Local source type support (codebase analysis)
v2.0 (October 2025): Unified multi-source scraping feature complete
- ✅ Config validation for unified format
- ✅ Deep code analysis with AST parsing
- ✅ Conflict detection (4 types, 3 severity levels)
- ✅ Rule-based merging
- ✅ Claude-enhanced merging
- ✅ Unified skill builder with inline conflict warnings
- ✅ MCP integration with auto-detection
- ✅ Backward compatibility with legacy configs
- ✅ Comprehensive tests and documentation