docs: update stale version numbers, MCP counts, and test counts across docs/

Version headers/footers updated to 3.1.0-dev:
- docs/features/BOOTSTRAP_SKILL_TECHNICAL.md (was 2.8.0-dev)
- docs/reference/API_REFERENCE.md (was 2.7.0)
- docs/reference/CODE_QUALITY.md (was 2.7.0)
- docs/guides/TESTING_GUIDE.md (was 2.7.0)
- docs/guides/MIGRATION_GUIDE.md (was 2.7.0, historical tables untouched)

MCP tool count 18 → 26:
- docs/guides/MCP_SETUP.md
- docs/guides/TESTING_GUIDE.md
- docs/reference/CODE_QUALITY.md
- docs/reference/CLAUDE_INTEGRATION.md
- docs/integrations/CLINE.md
- docs/strategy/INTEGRATION_STRATEGY.md

Test count 700+/1200+ → 1,880+:
- docs/guides/MCP_SETUP.md
- docs/guides/TESTING_GUIDE.md
- docs/reference/CODE_QUALITY.md
- docs/reference/CLAUDE_INTEGRATION.md
- docs/features/HOW_TO_GUIDES.md
- docs/blog/UNIVERSAL_RAG_PREPROCESSOR.md

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-02-18 22:36:08 +03:00
parent 66c823107e
commit c44b88e801
11 changed files with 43 additions and 43 deletions

View File

@@ -1,7 +1,7 @@
# API Reference - Programmatic Usage
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready
---
@@ -970,6 +970,6 @@ monitor_enhancement('output/react/', watch=True)
---
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready

View File

@@ -25,9 +25,9 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
- **🌐 Multi-LLM Support**: Full support for 4 platforms - Claude AI, Google Gemini, OpenAI ChatGPT, Generic Markdown
- **🔄 Complete Feature Parity**: All skill modes work with all platforms
- **🏗️ Platform Adaptors**: Clean architecture with platform-specific implementations
- **✨ 18 MCP Tools**: Enhanced with multi-platform support (package, upload, enhance)
- **✨ 26 MCP Tools**: Enhanced with multi-platform support (package, upload, enhance)
- **📚 Comprehensive Documentation**: Complete guides for all platforms
- **🧪 Test Coverage**: 1200+ tests passing, extensive platform compatibility testing
- **🧪 Test Coverage**: 1,880+ tests passing, extensive platform compatibility testing
**🚀 NEW: Three-Stream GitHub Architecture (v2.6.0)**
- **📊 Three-Stream Fetcher**: Split GitHub repos into Code, Docs, and Insights streams
@@ -194,7 +194,7 @@ The LOCAL enhancement option (`--enhance-local` or `enhance_skill_local.py`) ope
"Package skill at output/react/"
```
18 MCP tools available with multi-platform support: list_configs, generate_config, validate_config, fetch_config, estimate_pages, scrape_docs, scrape_github, scrape_pdf, package_skill, upload_skill, enhance_skill (NEW), install_skill, split_config, generate_router, add_config_source, list_config_sources, remove_config_source, submit_config
26 MCP tools available with multi-platform support: list_configs, generate_config, validate_config, fetch_config, estimate_pages, scrape_docs, scrape_github, scrape_pdf, package_skill, upload_skill, enhance_skill (NEW), install_skill, split_config, generate_router, add_config_source, list_config_sources, remove_config_source, submit_config
### Test with limited pages (edit config first)
Set `"max_pages": 20` in the config file to test with fewer pages.

View File

@@ -1,7 +1,7 @@
# Code Quality Standards
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready
---
@@ -12,7 +12,7 @@ Skill Seekers maintains high code quality through automated linting, comprehensi
**Quality Pillars:**
1. **Linting** - Automated code style and error detection with Ruff
2. **Testing** - Comprehensive test coverage (1200+ tests)
2. **Testing** - Comprehensive test coverage (1,880+ tests)
3. **Type Safety** - Type hints and validation
4. **Security** - Security scanning with Bandit
5. **CI/CD** - Automated validation on every commit
@@ -262,7 +262,7 @@ Fixed **all 21 ruff linting errors** across the codebase:
**Overall Project:** >80% coverage target
**Current Status:**
- ✅ 1200+ tests passing
- ✅ 1,880+ tests passing
- ✅ >85% code coverage
- ✅ All critical paths covered
- ✅ CI/CD integrated
@@ -329,7 +329,7 @@ pytest tests/ -m asyncio
- Platform integration testing
4. **MCP Tests** (63 tests)
- All 18 MCP tools
- All 26 MCP tools
- Transport mode testing (stdio, HTTP)
- Error handling validation
@@ -340,7 +340,7 @@ pytest tests/ -m asyncio
> "never skip any test. always make sure all test pass"
**This means:**
-**ALL 1200+ tests must pass** before commits
-**ALL 1,880+ tests must pass** before commits
- ✅ No skipping tests, even if they're slow
- ✅ Add tests for new features
- ✅ Fix failing tests immediately
@@ -415,7 +415,7 @@ Every commit and PR must pass:
1. **Ruff Linting** - Zero linting errors
2. **Ruff Formatting** - Consistent code style
3. **Pytest** - All 1200+ tests passing
3. **Pytest** - All 1,880+ tests passing
4. **Coverage** - >80% code coverage
5. **Multi-platform** - Ubuntu + macOS
6. **Multi-version** - Python 3.10-3.13
@@ -732,7 +732,7 @@ gh pr create --title "Add your feature" --body "Description..."
# CI checks will run automatically:
# ✅ Ruff linting
# ✅ Ruff formatting
# ✅ Pytest (1200+ tests)
# ✅ Pytest (1,880+ tests)
# ✅ Coverage report
# ✅ Multi-platform (Ubuntu + macOS)
# ✅ Multi-version (Python 3.10-3.13)
@@ -818,6 +818,6 @@ open htmlcov/index.html
---
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready