Skill Seekers v3.1.0
Step-by-step guide to creating your first skill
A skill from the Django documentation that you can use with Claude AI.
Time required: ~15-20 minutes
Result: A comprehensive Django skill with ~400 lines of structured documentation
# Ensure skill-seekers is installed
skill-seekers --version
# Should output: skill-seekers 3.1.0For this walkthrough, we'll use Django documentation. You can use any of these:
# Option A: Django docs (what we'll use)
https://docs.djangoproject.com/
# Option B: React docs
https://react.dev/
# Option C: Your own project
./my-project
# Option D: GitHub repo
facebook/reactBefore scraping, let's preview what will happen:
skill-seekers create https://docs.djangoproject.com/ --dry-runExpected output:
🔍 Dry Run Preview
==================
Source: https://docs.djangoproject.com/
Type: Documentation website
Estimated pages: ~400
Estimated time: 15-20 minutes
Will create:
- output/django/
- output/django/SKILL.md
- output/django/references/
Configuration:
Rate limit: 0.5s
Max pages: 500
Enhancement: Level 2
✅ Preview complete. Run without --dry-run to execute.
This shows you exactly what will happen without actually scraping.
Now let's actually create it:
skill-seekers create https://docs.djangoproject.com/ --name djangoWhat happens:
- Detection - Recognizes as documentation website
- Crawling - Discovers pages starting from the base URL
- Scraping - Downloads and extracts content (~5-10 min)
- Processing - Organizes into categories
- Enhancement - AI improves SKILL.md quality (~60 sec)
Progress output:
🚀 Creating skill: django
📍 Source: https://docs.djangoproject.com/
📋 Type: Documentation
⏳ Phase 1/5: Detecting source type...
✅ Detected: Documentation website
⏳ Phase 2/5: Discovering pages...
✅ Discovered: 387 pages
⏳ Phase 3/5: Scraping content...
Progress: [████████████████████░░░░░] 320/387 pages (83%)
Rate: 1.8 pages/sec | ETA: 37 seconds
⏳ Phase 4/5: Processing and categorizing...
✅ Categories: getting_started, models, views, templates, forms, admin, security
⏳ Phase 5/5: AI enhancement (Level 2)...
✅ SKILL.md enhanced: 423 lines
🎉 Skill created successfully!
Location: output/django/
SKILL.md: 423 lines
References: 7 categories, 42 files
⏱️ Total time: 12 minutes 34 seconds
Let's see what was created:
ls -la output/django/Output:
output/django/
├── .skill-seekers/ # Metadata
│ └── manifest.json
├── SKILL.md # Main skill file ⭐
├── references/ # Organized docs
│ ├── index.md
│ ├── getting_started.md
│ ├── models.md
│ ├── views.md
│ ├── templates.md
│ ├── forms.md
│ ├── admin.md
│ └── security.md
└── assets/ # Images (if any)
head -50 output/django/SKILL.mdYou'll see:
# Django Skill
## Overview
Django is a high-level Python web framework that encourages rapid development
and clean, pragmatic design...
## Quick Reference
### Create a Project
```bash
django-admin startproject mysitepython manage.py startapp myapp...
### Check References
```bash
ls output/django/references/
cat output/django/references/models.md | head -30
Now package it for Claude AI:
skill-seekers package output/django/ --target claudeOutput:
📦 Packaging skill: django
🎯 Target: Claude AI
✅ Validated: SKILL.md (423 lines)
✅ Packaged: output/django-claude.zip
📊 Size: 245 KB
Next steps:
1. Upload to Claude: skill-seekers upload output/django-claude.zip
2. Or manually: Use "Create Skill" in Claude Code
export ANTHROPIC_API_KEY=sk-ant-...
skill-seekers upload output/django-claude.zip --target claude- Open Claude Code or Claude Desktop
- Go to "Skills" or "Projects"
- Click "Create Skill" or "Upload"
- Select
output/django-claude.zip
Once uploaded, you can ask Claude:
"How do I create a Django model with foreign keys?"
"Show me how to use class-based views"
"What's the best way to handle forms in Django?"
"Explain Django's ORM query optimization"
Claude will use your skill to provide accurate, contextual answers.
If you want faster results (no AI enhancement):
# Create without enhancement
skill-seekers create https://docs.djangoproject.com/ --name django --enhance-level 0
# Package
skill-seekers package output/django/ --target claude
# Enhances later if needed
skill-seekers enhance output/django/Instead of auto-detection, use a preset:
# See available presets
skill-seekers estimate --all
# Use Django preset
skill-seekers create --config django
skill-seekers package output/django/ --target claude✅ Create - skill-seekers create <source> auto-detects and scrapes
✅ Dry Run - --dry-run previews without executing
✅ Enhancement - AI automatically improves SKILL.md quality
✅ Package - skill-seekers package <dir> --target <platform>
✅ Upload - Direct upload or manual import
skill-seekers create facebook/react --name react
skill-seekers package output/react/ --target claudecd ~/projects/my-api
skill-seekers create . --name my-api
skill-seekers package output/my-api/ --target claudeskill-seekers create manual.pdf --name docs
skill-seekers package output/docs/ --target claude# Create once
skill-seekers create https://docs.djangoproject.com/ --name django
# Package for multiple platforms
skill-seekers package output/django/ --target claude
skill-seekers package output/django/ --target gemini
skill-seekers package output/django/ --target openai
# Upload to each
skill-seekers upload output/django-claude.zip --target claude
skill-seekers upload output/django-gemini.tar.gz --target gemini# Resume from checkpoint
skill-seekers resume --list
skill-seekers resume <job-id># Limit pages
skill-seekers create https://docs.djangoproject.com/ --max-pages 100# Use custom config with selectors
cat > configs/django.json << 'EOF'
{
"name": "django",
"base_url": "https://docs.djangoproject.com/",
"selectors": {
"main_content": "#docs-content"
}
}
EOF
skill-seekers create --config configs/django.json- Next Steps - Where to go from here
- Core Concepts - Understand the system
- Scraping Guide - Advanced scraping options
- Enhancement Guide - AI enhancement deep dive
| Step | Command | Time |
|---|---|---|
| 1 | skill-seekers create https://docs.djangoproject.com/ |
~15 min |
| 2 | skill-seekers package output/django/ --target claude |
~5 sec |
| 3 | skill-seekers upload output/django-claude.zip |
~10 sec |
Total: ~15 minutes to a production-ready AI skill! 🎉