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

@@ -2,14 +2,14 @@
Step-by-step guide to set up the Skill Seeker MCP server with 5 supported AI coding agents.
**Version 2.7.0 Highlights:**
**Version 3.1.0-dev Highlights:**
-**MCP SDK v1.25.0** - Latest protocol support (upgraded from v1.18.0)
-**FastMCP Framework** - Modern, decorator-based server implementation
-**Dual Transport** - HTTP + stdio support (choose based on agent)
-**18 MCP Tools** - Expanded from 9 tools (enhance_skill + source management tools)
-**26 MCP Tools** - Core (9), Extended (10), Vector DB (4), Cloud (3)
-**Multi-Agent Support** - Claude Code, Cursor, Windsurf, VS Code + Cline, IntelliJ IDEA
-**Auto-Configuration** - One-line setup with `./setup_mcp.sh`
-**Production Ready** - 700+ comprehensive tests, 100% pass rate
-**Production Ready** - 1,880+ comprehensive tests, 100% pass rate
---
@@ -51,7 +51,7 @@ Step-by-step guide to set up the Skill Seeker MCP server with 5 supported AI cod
### New Features
**18 MCP Tools** (expanded from 9):
**26 MCP Tools** (expanded from 9):
**Config Tools (3):**
- `generate_config` - Generate config for any documentation site
@@ -180,7 +180,7 @@ In any connected agent:
List all available MCP tools
```
You should see 18 tools (up from 9 in v2.3.0).
You should see 26 tools (up from 9 in v2.3.0).
### 5. Optional: Run Auto-Configuration
@@ -1478,7 +1478,7 @@ SETUP:
3. Restart agent
VERIFY:
- "List all available MCP tools" (should show 18 tools)
- "List all available MCP tools" (should show 26 tools)
- "List all available configs" (should show 24 configs)
GENERATE SKILL:

View File

@@ -1,7 +1,7 @@
# Migration Guide
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready
---
@@ -614,6 +614,6 @@ When reporting migration issues:
---
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Status:** ✅ Production Ready

View File

@@ -1,8 +1,8 @@
# Testing Guide
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Test Count:** 1200+ tests
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Test Count:** 1,880+ tests
**Coverage:** >85%
**Status:** ✅ Production Ready
@@ -10,7 +10,7 @@
## Overview
Skill Seekers has comprehensive test coverage with **1200+ tests** spanning unit tests, integration tests, end-to-end tests, and MCP integration tests. This guide covers everything you need to know about testing in the project.
Skill Seekers has comprehensive test coverage with **1,880+ tests** spanning unit tests, integration tests, end-to-end tests, and MCP integration tests. This guide covers everything you need to know about testing in the project.
**Test Philosophy:**
- **Never skip tests** - All tests must pass before commits
@@ -250,7 +250,7 @@ pytest tests/test_*_e2e.py -v -n auto
### 4. MCP Tests (63 tests)
Test MCP server and all 18 MCP tools.
Test MCP server and all 26 MCP tools.
#### Example: Testing MCP Tool
@@ -927,8 +927,8 @@ pytest tests/ --cov=src/skill_seekers
---
**Version:** 2.7.0
**Last Updated:** 2026-01-18
**Test Count:** 1200+ tests
**Version:** 3.1.0-dev
**Last Updated:** 2026-02-18
**Test Count:** 1,880+ tests
**Coverage:** >85%
**Status:** ✅ Production Ready