yusufkaraaslan--skill_seekers
2cab53bc94
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
486 行
8.8 KiB
Markdown
486 行
8.8 KiB
Markdown
# Troubleshooting Guide
|
|
|
|
Common issues and solutions when using Skill Seeker.
|
|
|
|
---
|
|
|
|
## Installation Issues
|
|
|
|
### Python Not Found
|
|
|
|
**Error:**
|
|
```
|
|
python3: command not found
|
|
```
|
|
|
|
**Solutions:**
|
|
1. **Check if Python is installed:**
|
|
```bash
|
|
which python3
|
|
python --version # Try without the 3
|
|
```
|
|
|
|
2. **Install Python:**
|
|
- **macOS:** `brew install python3`
|
|
- **Linux:** `sudo apt install python3 python3-pip`
|
|
- **Windows:** Download from python.org, check "Add to PATH"
|
|
|
|
3. **Use python instead of python3:**
|
|
```bash
|
|
python -m skill_seekers --help
|
|
```
|
|
|
|
### Module Not Found
|
|
|
|
**Error:**
|
|
```
|
|
ModuleNotFoundError: No module named 'requests'
|
|
ModuleNotFoundError: No module named 'bs4'
|
|
ModuleNotFoundError: No module named 'mcp'
|
|
```
|
|
|
|
**Solutions:**
|
|
1. **Install the package in editable mode (critical first step):**
|
|
```bash
|
|
pip install -e .
|
|
```
|
|
|
|
2. **Install MCP extras if needed:**
|
|
```bash
|
|
pip install -e ".[mcp]"
|
|
```
|
|
|
|
3. **Use --user flag if permission denied:**
|
|
```bash
|
|
pip install --user -e .
|
|
```
|
|
|
|
4. **Check pip is working:**
|
|
```bash
|
|
pip3 --version
|
|
```
|
|
|
|
### Permission Denied
|
|
|
|
**Error:**
|
|
```
|
|
Permission denied: '/usr/local/lib/python3.x/...'
|
|
```
|
|
|
|
**Solutions:**
|
|
1. **Use --user flag:**
|
|
```bash
|
|
pip3 install --user -e .
|
|
```
|
|
|
|
2. **Use sudo (not recommended):**
|
|
```bash
|
|
sudo pip install -e .
|
|
```
|
|
|
|
3. **Use virtual environment (best practice):**
|
|
```bash
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
pip install -e .
|
|
```
|
|
|
|
---
|
|
|
|
## Runtime Issues
|
|
|
|
### File Not Found
|
|
|
|
**Error:**
|
|
```
|
|
FileNotFoundError: [Errno 2] No such file or directory: 'src/skill_seekers/cli/main.py'
|
|
```
|
|
|
|
**Solutions:**
|
|
1. **Check you're in the Skill_Seekers directory:**
|
|
```bash
|
|
pwd
|
|
# Should show: .../Skill_Seekers
|
|
|
|
ls
|
|
# Should show: README.md, src/, configs/, tests/
|
|
```
|
|
|
|
2. **Change to the correct directory:**
|
|
```bash
|
|
cd ~/Projects/Skill_Seekers # Adjust path
|
|
```
|
|
|
|
3. **Ensure the package is installed:**
|
|
```bash
|
|
pip install -e .
|
|
```
|
|
|
|
### Config File Not Found
|
|
|
|
**Error:**
|
|
```
|
|
❌ Error: Config file not found: configs/myconfig.json
|
|
```
|
|
|
|
**Understanding Config Locations:**
|
|
|
|
The tool searches for configs in this order:
|
|
1. Exact path as provided
|
|
2. `./configs/` (current directory)
|
|
3. `~/.config/skill-seekers/configs/` (user config directory)
|
|
4. SkillSeekersWeb.com API (preset configs)
|
|
|
|
**Solutions:**
|
|
|
|
1. **Place config in user directory (recommended for custom configs):**
|
|
```bash
|
|
mkdir -p ~/.config/skill-seekers/configs
|
|
cp myconfig.json ~/.config/skill-seekers/configs/
|
|
|
|
# Now you can use it from anywhere
|
|
skill-seekers create --config myconfig.json
|
|
```
|
|
|
|
2. **Place config in current directory (project-specific):**
|
|
```bash
|
|
mkdir -p configs
|
|
cp myconfig.json configs/
|
|
|
|
skill-seekers create --config configs/myconfig.json
|
|
```
|
|
|
|
3. **Use absolute path:**
|
|
```bash
|
|
skill-seekers create --config /full/path/to/myconfig.json
|
|
```
|
|
|
|
4. **Check if it's a preset config (auto-downloads):**
|
|
```bash
|
|
# List all available presets
|
|
skill-seekers estimate --all
|
|
|
|
# Use preset (auto-fetched from API)
|
|
skill-seekers create --config react.json
|
|
```
|
|
|
|
5. **Create new config interactively:**
|
|
```bash
|
|
skill-seekers create --interactive
|
|
```
|
|
|
|
---
|
|
|
|
## MCP Setup Issues
|
|
|
|
### MCP Server Not Loading
|
|
|
|
**Symptoms:**
|
|
- Tools don't appear in Claude Code
|
|
- "List all available configs" doesn't work
|
|
|
|
**Solutions:**
|
|
|
|
1. **Check configuration file:**
|
|
```bash
|
|
cat ~/.config/claude-code/mcp.json
|
|
```
|
|
|
|
2. **Verify paths are ABSOLUTE (not placeholders):**
|
|
```json
|
|
{
|
|
"mcpServers": {
|
|
"skill-seeker": {
|
|
"command": "python",
|
|
"args": [
|
|
"-m",
|
|
"skill_seekers.mcp.server_fastmcp"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
```
|
|
❌ **Bad:** `$REPO_PATH` or `/path/to/Skill_Seekers`
|
|
✅ **Good:** `/Users/john/Projects/Skill_Seekers`
|
|
|
|
3. **Test server manually:**
|
|
```bash
|
|
cd ~/Projects/Skill_Seekers
|
|
python -m skill_seekers.mcp.server_fastmcp
|
|
# Should start without errors (Ctrl+C to stop)
|
|
```
|
|
|
|
4. **Re-run setup script:**
|
|
```bash
|
|
./setup_mcp.sh
|
|
# Select "y" for auto-configure
|
|
```
|
|
|
|
5. **RESTART Claude Code completely:**
|
|
- Quit (don't just close window)
|
|
- Reopen
|
|
|
|
### Placeholder Paths in Config
|
|
|
|
**Problem:** Config has `$REPO_PATH` or `/Users/username/` instead of real paths
|
|
|
|
**Solution:**
|
|
```bash
|
|
# Get your actual path
|
|
cd ~/Projects/Skill_Seekers
|
|
pwd
|
|
# Copy this path
|
|
|
|
# Edit config
|
|
nano ~/.config/claude-code/mcp.json
|
|
|
|
# Replace ALL instances of placeholders with your actual path
|
|
# Save (Ctrl+O, Enter, Ctrl+X)
|
|
|
|
# Restart Claude Code
|
|
```
|
|
|
|
### Tools Appear But Don't Work
|
|
|
|
**Symptoms:**
|
|
- Tools listed but commands fail
|
|
- "Error executing tool" messages
|
|
|
|
**Solutions:**
|
|
|
|
1. **Check working directory:**
|
|
```json
|
|
{
|
|
"cwd": "/FULL/PATH/TO/Skill_Seekers"
|
|
}
|
|
```
|
|
|
|
2. **Verify package is installed:**
|
|
```bash
|
|
pip list | grep skill-seekers
|
|
python -c "import skill_seekers; print(skill_seekers.__version__)"
|
|
```
|
|
|
|
3. **Test CLI tools directly:**
|
|
```bash
|
|
skill-seekers create --help
|
|
```
|
|
|
|
---
|
|
|
|
## Scraping Issues
|
|
|
|
### Slow or Hanging
|
|
|
|
**Solutions:**
|
|
|
|
1. **Check network connection:**
|
|
```bash
|
|
ping google.com
|
|
curl -I https://docs.yoursite.com
|
|
```
|
|
|
|
2. **Use smaller max_pages for testing:**
|
|
```bash
|
|
skill-seekers create --config configs/test.json --max-pages 5
|
|
```
|
|
|
|
3. **Increase rate_limit in config:**
|
|
```json
|
|
{
|
|
"rate_limit": 1.0 // Increase from 0.5
|
|
}
|
|
```
|
|
|
|
### No Content Extracted
|
|
|
|
**Problem:** Pages scraped but content is empty
|
|
|
|
**Solutions:**
|
|
|
|
1. **Check selector in config:**
|
|
```bash
|
|
# Test with browser dev tools
|
|
# Look for: article, main, div[role="main"], div.content
|
|
```
|
|
|
|
2. **Verify website is accessible:**
|
|
```bash
|
|
curl https://docs.example.com
|
|
```
|
|
|
|
3. **Try different selectors:**
|
|
```json
|
|
{
|
|
"selectors": {
|
|
"main_content": "article" // Try: main, div.content, etc.
|
|
}
|
|
}
|
|
```
|
|
|
|
### Rate Limiting / 429 Errors
|
|
|
|
**Error:**
|
|
```
|
|
HTTP Error 429: Too Many Requests
|
|
```
|
|
|
|
**Solutions:**
|
|
|
|
1. **Increase rate_limit:**
|
|
```json
|
|
{
|
|
"rate_limit": 2.0 // Wait 2 seconds between requests
|
|
}
|
|
```
|
|
|
|
2. **Reduce max_pages:**
|
|
```json
|
|
{
|
|
"max_pages": 50 // Scrape fewer pages
|
|
}
|
|
```
|
|
|
|
3. **Try again later:**
|
|
```bash
|
|
# Wait an hour and retry
|
|
```
|
|
|
|
---
|
|
|
|
## Platform-Specific Issues
|
|
|
|
### macOS
|
|
|
|
**Issue:** Can't run `./setup_mcp.sh`
|
|
|
|
**Solution:**
|
|
```bash
|
|
chmod +x setup_mcp.sh
|
|
./setup_mcp.sh
|
|
```
|
|
|
|
**Issue:** Homebrew not installed
|
|
|
|
**Solution:**
|
|
```bash
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
```
|
|
|
|
### Linux
|
|
|
|
**Issue:** pip3 not found
|
|
|
|
**Solution:**
|
|
```bash
|
|
sudo apt update
|
|
sudo apt install python3-pip
|
|
```
|
|
|
|
**Issue:** Permission errors
|
|
|
|
**Solution:**
|
|
```bash
|
|
# Use --user flag
|
|
pip3 install --user -e .
|
|
```
|
|
|
|
### Windows (WSL)
|
|
|
|
**Issue:** Python not in PATH
|
|
|
|
**Solution:**
|
|
1. Reinstall Python
|
|
2. Check "Add Python to PATH"
|
|
3. Or add manually to PATH
|
|
|
|
**Issue:** Line ending errors
|
|
|
|
**Solution:**
|
|
```bash
|
|
dos2unix setup_mcp.sh
|
|
./setup_mcp.sh
|
|
```
|
|
|
|
---
|
|
|
|
## Verification Commands
|
|
|
|
Use these to check your setup:
|
|
|
|
```bash
|
|
# 1. Check Python
|
|
python3 --version # Should be 3.10+
|
|
|
|
# 2. Check package is installed
|
|
pip list | grep skill-seekers
|
|
python -c "import skill_seekers; print(skill_seekers.__version__)"
|
|
|
|
# 3. Check source layout
|
|
ls src/skill_seekers/cli/
|
|
ls src/skill_seekers/mcp/
|
|
ls configs/
|
|
|
|
# 4. Check MCP config
|
|
cat ~/.config/claude-code/mcp.json
|
|
|
|
# 5. Test scraper
|
|
skill-seekers create --help
|
|
|
|
# 6. Test MCP server
|
|
timeout 3 python -m skill_seekers.mcp.server_fastmcp || echo "Server OK"
|
|
|
|
# 7. Check git repo
|
|
git status
|
|
git log --oneline -5
|
|
```
|
|
|
|
---
|
|
|
|
## Getting Help
|
|
|
|
If none of these solutions work:
|
|
|
|
1. **Check existing issues:**
|
|
https://github.com/yusufkaraaslan/Skill_Seekers/issues
|
|
|
|
2. **Open a new issue with:**
|
|
- Your OS (macOS 13, Ubuntu 22.04, etc.)
|
|
- Python version (`python3 --version`)
|
|
- Full error message
|
|
- What command you ran
|
|
- Output of verification commands above
|
|
|
|
3. **Include this debug info:**
|
|
```bash
|
|
# System info
|
|
uname -a
|
|
python3 --version
|
|
pip3 --version
|
|
|
|
# Skill Seeker info
|
|
cd ~/Projects/Skill_Seekers # Your path
|
|
pwd
|
|
git log --oneline -1
|
|
ls -la cli/ mcp/ configs/
|
|
|
|
# MCP config (if using MCP)
|
|
cat ~/.config/claude-code/mcp.json
|
|
```
|
|
|
|
---
|
|
|
|
## Quick Fixes Checklist
|
|
|
|
- [ ] In the Skill_Seekers directory? (`pwd`)
|
|
- [ ] Python 3.10+ installed? (`python3 --version`)
|
|
- [ ] Package installed? (`pip list | grep skill-seekers`)
|
|
- [ ] Config file exists? (`ls configs/yourconfig.json`)
|
|
- [ ] Internet connection working? (`ping google.com`)
|
|
- [ ] For MCP: Config uses absolute paths? (not `$REPO_PATH`)
|
|
- [ ] For MCP: Claude Code restarted? (quit and reopen)
|
|
|
|
---
|
|
|
|
**Still stuck?** Open an issue: https://github.com/yusufkaraaslan/Skill_Seekers/issues/new
|