chore: Bump version to 2.7.1 for hotfix release

Version Bump:
- pyproject.toml: 2.8.0-dev → 2.7.1
- src/skill_seekers/__init__.py: 2.8.0-dev → 2.7.1
- src/skill_seekers/cli/__init__.py: 2.8.0-dev → 2.7.1
- src/skill_seekers/mcp/__init__.py: 2.8.0-dev → 2.7.1
- src/skill_seekers/mcp/tools/__init__.py: 2.8.0-dev → 2.7.1

CHANGELOG:
- Added v2.7.1 entry documenting critical config download bug fix
- Root cause, solution, files fixed, impact, and testing documented

This hotfix resolves the critical 404 error bug when downloading configs
from the skillseekersweb.com API.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-01-18 22:39:34 +03:00
parent 86a0d53172
commit dc6b82f06d
7 changed files with 74 additions and 5 deletions

View File

@@ -17,6 +17,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
--- ---
## [2.7.1] - 2026-01-18
### 🚨 Critical Bug Fix - Config Download 404 Errors
This **hotfix release** resolves a critical bug causing 404 errors when downloading configs from the API.
### Fixed
- **Critical: Config download 404 errors** - Fixed bug where code was constructing download URLs manually instead of using the `download_url` field from the API response
- **Root Cause**: Code was building `f"{API_BASE_URL}/api/download/{config_name}.json"` which failed when actual URLs differed (CDN URLs, version-specific paths)
- **Solution**: Changed to use `config_info.get("download_url")` from API response in both MCP server implementations
- **Files Fixed**:
- `src/skill_seekers/mcp/tools/source_tools.py` (FastMCP server)
- `src/skill_seekers/mcp/server_legacy.py` (Legacy server)
- **Impact**: Fixes all config downloads from skillseekersweb.com API and private Git repositories
- **Reported By**: User testing `skill-seekers install --config godot --unlimited`
- **Testing**: All 15 source tools tests pass, all 8 fetch_config tests pass
---
## [2.7.0] - 2026-01-18 ## [2.7.0] - 2026-01-18
### 🔐 Smart Rate Limit Management & Multi-Token Configuration ### 🔐 Smart Rate Limit Management & Multi-Token Configuration

49
configs/godot.json Normal file
View File

@@ -0,0 +1,49 @@
{
"name": "godot",
"description": "Complete Godot Engine knowledge base combining official documentation and source code analysis",
"merge_mode": "claude-enhanced",
"sources": [
{
"type": "documentation",
"base_url": "https://docs.godotengine.org/en/stable/",
"extract_api": true,
"selectors": {
"main_content": "div[role='main']",
"title": "title",
"code_blocks": "pre"
},
"url_patterns": {
"include": [],
"exclude": ["/search.html", "/_static/", "/_images/"]
},
"categories": {
"getting_started": ["introduction", "getting_started", "step_by_step"],
"scripting": ["scripting", "gdscript", "c_sharp"],
"2d": ["2d", "canvas", "sprite", "animation"],
"3d": ["3d", "spatial", "mesh", "shader"],
"physics": ["physics", "collision", "rigidbody"],
"api": ["api", "class", "reference", "method"]
},
"rate_limit": 0.5,
"max_pages": 500
},
{
"type": "github",
"repo": "godotengine/godot",
"enable_codebase_analysis": true,
"code_analysis_depth": "deep",
"fetch_issues": true,
"max_issues": 100,
"fetch_changelog": true,
"fetch_releases": true,
"file_patterns": [
"core/**/*.h",
"core/**/*.cpp",
"scene/**/*.h",
"scene/**/*.cpp",
"servers/**/*.h",
"servers/**/*.cpp"
]
}
]
}

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "skill-seekers" name = "skill-seekers"
version = "2.8.0-dev" version = "2.7.1"
description = "Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills" description = "Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"

View File

@@ -5,7 +5,7 @@ This package provides tools for automatically scraping, organizing, and packagin
documentation from various sources into uploadable Claude AI skills. documentation from various sources into uploadable Claude AI skills.
""" """
__version__ = "2.8.0-dev" __version__ = "2.7.1"
__author__ = "Yusuf Karaaslan" __author__ = "Yusuf Karaaslan"
__license__ = "MIT" __license__ = "MIT"

View File

@@ -28,7 +28,7 @@ except ImportError:
open_folder = None open_folder = None
read_reference_files = None read_reference_files = None
__version__ = "2.8.0-dev" __version__ = "2.7.1"
__all__ = [ __all__ = [
"LlmsTxtDetector", "LlmsTxtDetector",

View File

@@ -28,6 +28,6 @@ Usage:
in ~/.config/claude-code/mcp.json in ~/.config/claude-code/mcp.json
""" """
__version__ = "2.8.0-dev" __version__ = "2.7.1"
__all__ = ["agent_detector"] __all__ = ["agent_detector"]

View File

@@ -11,7 +11,7 @@ Tools are organized by functionality:
- source_tools: Config source management (fetch, submit, add/remove sources) - source_tools: Config source management (fetch, submit, add/remove sources)
""" """
__version__ = "2.8.0-dev" __version__ = "2.7.1"
from .config_tools import ( from .config_tools import (
generate_config as generate_config_impl, generate_config as generate_config_impl,