docs: update all documentation for 17 source types

Update 32 documentation files across English and Chinese (zh-CN) docs
to reflect the 10 new source types added in the previous commit.

Updated files:
- README.md, README.zh-CN.md — taglines, feature lists, examples, install extras
- docs/reference/ — CLI_REFERENCE, FEATURE_MATRIX, MCP_REFERENCE, CONFIG_FORMAT, API_REFERENCE
- docs/features/ — UNIFIED_SCRAPING with generic merge docs
- docs/advanced/ — multi-source guide, MCP server guide
- docs/getting-started/ — installation extras, quick-start examples
- docs/user-guide/ — core-concepts, scraping, packaging, workflows (complex-merge)
- docs/ — FAQ, TROUBLESHOOTING, BEST_PRACTICES, ARCHITECTURE, UNIFIED_PARSERS, README
- Root — BULLETPROOF_QUICKSTART, CONTRIBUTING, ROADMAP
- docs/zh-CN/ — Chinese translations for all of the above

32 files changed, +3,016 lines, -245 lines
This commit is contained in:
yusyus
2026-03-15 15:56:04 +03:00
parent 53b911b697
commit 37cb307455
32 changed files with 3011 additions and 240 deletions

View File

@@ -1,12 +1,12 @@
# Skill Seekers Documentation
> **Complete documentation for Skill Seekers v3.1.0**
> **Complete documentation for Skill Seekers v3.2.0**
---
## Welcome!
This is the official documentation for **Skill Seekers** - the universal tool for converting documentation, code, and PDFs into AI-ready skills.
This is the official documentation for **Skill Seekers** - the universal tool for converting **17 source types** (documentation sites, GitHub repos, PDFs, videos, Word docs, EPUB books, Jupyter notebooks, local HTML, OpenAPI specs, AsciiDoc, PowerPoint, RSS/Atom feeds, man pages, Confluence, Notion, Slack/Discord, and local codebases) into AI-ready skills for 16+ platforms.
---
@@ -70,6 +70,12 @@ skill-seekers package output/django --target claude
### Common Commands
```bash
# Auto-detect any source type
skill-seekers create https://docs.django.com/
skill-seekers create facebook/react
skill-seekers create manual.pdf
skill-seekers create notebook.ipynb
# Scrape documentation
skill-seekers scrape --config react
@@ -79,6 +85,19 @@ skill-seekers github --repo facebook/react
# Extract PDF
skill-seekers pdf manual.pdf --name docs
# Convert other formats
skill-seekers word report.docx --name report
skill-seekers epub book.epub --name handbook
skill-seekers jupyter analysis.ipynb --name analysis
skill-seekers openapi spec.yaml --name my-api
skill-seekers pptx slides.pptx --name deck
skill-seekers video https://youtube.com/watch?v=... --name tutorial
# Import from platforms
skill-seekers confluence --space DOCS --name wiki
skill-seekers notion --database DB_ID --name notes
skill-seekers chat --platform slack --export-dir ./export
# Analyze local code
skill-seekers analyze --directory ./my-project
@@ -163,8 +182,9 @@ For Cursor, Windsurf, Cline:
## Version Information
- **Current Version:** 3.1.0
- **Last Updated:** 2026-02-16
- **Current Version:** 3.2.0
- **Last Updated:** 2026-03-15
- **Source Types:** 17
- **Python Required:** 3.10+
---