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,6 +1,6 @@
# Quick Start Guide
> **Skill Seekers v3.1.0**
> **Skill Seekers v3.2.0**
> **Create your first skill in 3 commands**
---
@@ -32,6 +32,19 @@ The `create` command auto-detects your source:
| **GitHub Repo** | `skill-seekers create facebook/react` |
| **Local Code** | `skill-seekers create ./my-project` |
| **PDF File** | `skill-seekers create manual.pdf` |
| **Word Document** | `skill-seekers create report.docx` |
| **EPUB Book** | `skill-seekers create book.epub` |
| **Video** | `skill-seekers create https://youtube.com/watch?v=...` |
| **Jupyter Notebook** | `skill-seekers create analysis.ipynb` |
| **Local HTML** | `skill-seekers create page.html` |
| **OpenAPI Spec** | `skill-seekers create api-spec.yaml` |
| **AsciiDoc** | `skill-seekers create guide.adoc` |
| **PowerPoint** | `skill-seekers create slides.pptx` |
| **RSS/Atom Feed** | `skill-seekers create feed.rss` |
| **Man Page** | `skill-seekers create grep.1` |
| **Confluence** | `skill-seekers confluence --space DEV` |
| **Notion** | `skill-seekers notion --database abc123` |
| **Slack/Discord** | `skill-seekers chat --export slack-export/` |
| **Config File** | `skill-seekers create configs/custom.json` |
---
@@ -87,6 +100,48 @@ skill-seekers create paper.pdf --name research
skill-seekers package output/research --target claude
```
### Video
```bash
# YouTube video transcript
skill-seekers create https://www.youtube.com/watch?v=dQw4w9WgXcQ --name tutorial
skill-seekers package output/tutorial --target claude
```
### Jupyter Notebook
```bash
# Data science notebook
skill-seekers create analysis.ipynb --name ml-analysis
skill-seekers package output/ml-analysis --target claude
```
### PowerPoint / Word / EPUB
```bash
# PowerPoint slides
skill-seekers create presentation.pptx --name quarterly-review
# Word document
skill-seekers create spec.docx --name api-spec
# EPUB book
skill-seekers create rust-book.epub --name rust-guide
```
### Confluence / Notion / Slack
```bash
# Confluence wiki space
skill-seekers confluence --space DEV --name team-docs
# Notion workspace
skill-seekers notion --database abc123 --name product-wiki
# Slack/Discord export
skill-seekers chat --export slack-export/ --name team-chat
```
---
## Common Options