Target Audience: Complete beginners | Never used Python/git before? Start here!
Time: 15-30 minutes total (including all installations)
Result: Working Skill Seeker installation + your first Claude skill created
Before starting, you need:
That's it! We'll install everything else together.
Open Terminal (macOS/Linux) or Command Prompt (Windows) and type:
python3 --version
✅ If you see: Python 3.10.x or Python 3.11.x or higher → Skip to Step 2!
❌ If you see: command not found or version less than 3.10 → Continue below
# Install Homebrew (if not installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install Python
brew install python3
Verify:
python3 --version
# Should show: Python 3.11.x or similar
sudo apt update
sudo apt install python3 python3-pip
Verify:
python3 --version
pip3 --version
Open Command Prompt and verify:
python --version
✅ Success looks like:
Python 3.11.5
git --version
✅ If you see: git version 2.x.x → Skip to Step 3!
❌ If not installed:
brew install git
sudo apt install git
Download from: https://git-scm.com/download/win
Verify:
git --version
# Should show: git version 2.x.x
Pick a location for the project. Good choices:
~/Projects/ or ~/Documents/
~ means your home directory ($HOME or /Users/yourname on macOS, /home/yourname on Linux)C:\Users\YourName\Projects\# Create Projects directory (if it doesn't exist)
mkdir -p ~/Projects
cd ~/Projects
# Clone Skill Seeker
git clone https://github.com/yusufkaraaslan/Skill_Seekers.git
# Enter the directory
cd Skill_Seekers
✅ Success looks like:
Cloning into 'Skill_Seekers'...
remote: Enumerating objects: 245, done.
remote: Counting objects: 100% (245/245), done.
Verify you're in the right place:
pwd
# Should show something like:
# macOS: /Users/yourname/Projects/Skill_Seekers
# Linux: /home/yourname/Projects/Skill_Seekers
# (Replace 'yourname' with YOUR actual username)
ls
# Should show: README.md, cli/, mcp/, configs/, etc.
❌ If git clone fails:
# Check internet connection
ping google.com
# Or download ZIP manually:
# https://github.com/yusufkaraaslan/Skill_Seekers/archive/refs/heads/main.zip
# Then unzip and cd into it
A virtual environment keeps Skill Seeker's dependencies isolated and prevents conflicts.
# Make sure you're in the Skill_Seekers directory
cd ~/Projects/Skill_Seekers # ~ means your home directory ($HOME)
# Adjust if you chose a different location
# Create virtual environment
python3 -m venv venv
# Activate it
source venv/bin/activate # macOS/Linux
# Windows users: venv\Scripts\activate
✅ Success looks like:
(venv) username@computer Skill_Seekers %
Notice (venv) appears in your prompt - this means the virtual environment is active!
# Now install packages (only needed once)
pip install requests beautifulsoup4 pytest
# Save the dependency list
pip freeze > requirements.txt
✅ Success looks like:
Successfully installed requests-2.32.5 beautifulsoup4-4.14.2 pytest-8.4.2 ...
Optional - Only if you want API-based enhancement (not needed for LOCAL enhancement):
pip install anthropic
Important Notes:
source venv/bin/activate first(venv) in your terminal promptdeactivate❌ If python3 not found:
# Try without the 3
python -m venv venv
❌ If permission denied:
# Virtual environment approach doesn't need sudo - you might have the wrong path
# Make sure you're in the Skill_Seekers directory:
pwd
# Should show something like:
# macOS: /Users/yourname/Projects/Skill_Seekers
# Linux: /home/yourname/Projects/Skill_Seekers
# (Replace 'yourname' with YOUR actual username)
Let's make sure everything works:
# Test the main script can run
skill-seekers scrape --help
✅ Success looks like:
usage: doc_scraper.py [-h] [--config CONFIG] [--interactive] ...
❌ If you see "No such file or directory":
# Check you're in the right directory
pwd
# Should show path ending in /Skill_Seekers
# List files
ls cli/
# Should show: doc_scraper.py, estimate_pages.py, etc.
Let's create a simple skill using a preset configuration.
# Create a config for a small site first
cat > configs/test.json << 'EOF'
{
"name": "test-skill",
"description": "Test skill creation",
"base_url": "https://tailwindcss.com/docs/installation",
"max_pages": 5,
"rate_limit": 0.5
}
EOF
# Run the scraper
skill-seekers scrape --config configs/test.json
What happens:
output/test-skill/ directory⏱️ Time: ~30 seconds
✅ Success looks like:
Scraping: https://tailwindcss.com/docs/installation
Page 1/5: Installation
Page 2/5: Editor Setup
...
✅ Skill created at: output/test-skill/
# Use the React preset
skill-seekers scrape --config configs/react.json --max-pages 50
⏱️ Time: ~5 minutes
What you get:
output/react/SKILL.md - Main skill fileoutput/react/references/ - Organized documentation# Check the output
ls output/test-skill/
# Should show: SKILL.md, references/, scripts/, assets/
# Look at the generated skill
head output/test-skill/SKILL.md
# Package the skill
skill-seekers package output/test-skill/
✅ Success looks like:
✅ Skill packaged successfully!
📦 Created: output/test-skill.zip
📏 Size: 45.2 KB
Ready to upload to Claude AI!
Now you have: output/test-skill.zip ready to upload to Claude!
output/test-skill.zipYou now have a working Skill Seeker installation! Here's what you can do:
# See all available presets
ls configs/
# Try Vue.js
skill-seekers scrape --config configs/vue.json --max-pages 50
# Try Django
skill-seekers scrape --config configs/django.json --max-pages 50
# Interactive mode - answer questions
skill-seekers scrape --interactive
# Or create config for any website
skill-seekers scrape \
--name myframework \
--url https://docs.myframework.com/ \
--description "My favorite framework"
If you have Claude Code installed:
# One-time setup
./setup_mcp.sh
# Then use natural language in Claude Code:
# "Generate a skill for Svelte docs"
# "Package the skill at output/svelte/"
See: docs/MCP_SETUP.md for full MCP setup
Problem: python3: command not found
Solution: Python not installed or not in PATH
python instead of python3Problem: Can't install packages or run scripts
Solution:
# Use --user flag
pip3 install --user requests beautifulsoup4
# Or make script executable
chmod +x cli/doc_scraper.py
Problem: Can't find cli/doc_scraper.py
Solution: You're not in the right directory
# Go to the Skill_Seekers directory
cd ~/Projects/Skill_Seekers # Adjust your path
# Verify
ls cli/
# Should show doc_scraper.py
Problem: Missing Python packages
Solution:
# Install dependencies again
pip3 install requests beautifulsoup4
# If that fails, try:
pip3 install --user requests beautifulsoup4
Problem: Takes forever or gets errors
Solution:
# Use smaller max_pages for testing
skill-seekers scrape --config configs/react.json --max-pages 10
# Check internet connection
ping google.com
# Check the website is accessible
curl -I https://docs.yoursite.com
python3 --version)# Your typical workflow:
# 1. Create/use a config
skill-seekers scrape --config configs/react.json --max-pages 50
# 2. Package it
skill-seekers package output/react/
# 3. Upload output/react.zip to Claude
# Done! 🎉
Common locations:
configs/*.jsonoutput/skill-name/output/skill-name.zipTime estimates:
Still confused? That's okay! Open an issue and we'll help you get started: https://github.com/yusufkaraaslan/Skill_Seekers/issues/new