Documentation restructure: - New docs/getting-started/ guide (4 files: install, quick-start, first-skill, next-steps) - New docs/user-guide/ section (6 files: core concepts through troubleshooting) - New docs/reference/ section (CLI_REFERENCE, CONFIG_FORMAT, ENVIRONMENT_VARIABLES, MCP_REFERENCE) - New docs/advanced/ section (custom-workflows, mcp-server, multi-source) - New docs/ARCHITECTURE.md - system architecture overview - Archived legacy files (QUICKSTART.md, QUICK_REFERENCE.md, docs/guides/USAGE.md) to docs/archive/legacy/ Chinese (zh-CN) translations: - Full zh-CN mirror of all user-facing docs (getting-started, user-guide, reference, advanced) - GitHub Actions workflow for translation sync (.github/workflows/translate-docs.yml) - Translation sync checker script (scripts/check_translation_sync.sh) - Translation helper script (scripts/translate_doc.py) Content updates: - CHANGELOG.md: [Unreleased] → [3.1.0] - 2026-02-22 - README.md: updated with new doc structure links - AGENTS.md: updated agent documentation - docs/features/UNIFIED_SCRAPING.md: updated for unified scraper workflow JSON config Analysis/planning artifacts (kept for reference): - DOCUMENTATION_OVERHAUL_PLAN.md, DOCUMENTATION_OVERHAUL_SUMMARY.md - FEATURE_GAP_ANALYSIS.md, IMPLEMENTATION_GAPS_ANALYSIS.md, CREATE_COMMAND_COVERAGE_ANALYSIS.md - CHINESE_TRANSLATION_IMPLEMENTATION_SUMMARY.md, ISSUE_260_UPDATE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
1.9 KiB
Markdown
67 lines
1.9 KiB
Markdown
# Legacy Documentation Archive
|
|
|
|
> **Status:** Archived
|
|
> **Reason:** Outdated patterns, phantom commands, or superseded by new docs
|
|
|
|
---
|
|
|
|
## Archived Files
|
|
|
|
| File | Reason | Replaced By |
|
|
|------|--------|-------------|
|
|
| `QUICKSTART.md` | Old CLI patterns | `docs/getting-started/02-quick-start.md` |
|
|
| `USAGE.md` | `python3 cli/X.py` pattern | `docs/user-guide/` + `docs/reference/CLI_REFERENCE.md` |
|
|
| `QUICK_REFERENCE.md` | Phantom commands | `docs/reference/CLI_REFERENCE.md` |
|
|
|
|
---
|
|
|
|
## Why These Were Archived
|
|
|
|
### QUICKSTART.md
|
|
|
|
**Issues:**
|
|
- Referenced `pip3 install requests beautifulsoup4` instead of `pip install skill-seekers`
|
|
- Missing modern commands like `create`
|
|
|
|
**Use Instead:** [docs/getting-started/02-quick-start.md](../../getting-started/02-quick-start.md)
|
|
|
|
---
|
|
|
|
### USAGE.md
|
|
|
|
**Issues:**
|
|
- Used `python3 cli/doc_scraper.py` pattern (removed in v3.x)
|
|
- Referenced `python3 cli/enhance_skill_local.py` (now `skill-seekers enhance`)
|
|
- Referenced `python3 cli/estimate_pages.py` (now `skill-seekers estimate`)
|
|
|
|
**Use Instead:**
|
|
- [docs/reference/CLI_REFERENCE.md](../../reference/CLI_REFERENCE.md) - Complete command reference
|
|
- [docs/user-guide/](../../user-guide/) - Common tasks
|
|
|
|
---
|
|
|
|
### QUICK_REFERENCE.md
|
|
|
|
**Issues:**
|
|
- Documented phantom commands like `skill-seekers merge-sources`
|
|
- Documented phantom commands like `skill-seekers split-config`
|
|
- Documented phantom commands like `skill-seekers generate-router`
|
|
|
|
**Use Instead:** [docs/reference/CLI_REFERENCE.md](../../reference/CLI_REFERENCE.md)
|
|
|
|
---
|
|
|
|
## Current Documentation
|
|
|
|
For up-to-date documentation, see:
|
|
|
|
- [docs/README.md](../../README.md) - Documentation hub
|
|
- [docs/getting-started/](../../getting-started/) - New user guides
|
|
- [docs/user-guide/](../../user-guide/) - Common tasks
|
|
- [docs/reference/](../../reference/) - Technical reference
|
|
- [docs/advanced/](../../advanced/) - Power user topics
|
|
|
|
---
|
|
|
|
*Last archived: 2026-02-16*
|