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 @@
# 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