Skill Seekers v3.1.0
Where to go after creating your first skill
Now what? Here's your roadmap to becoming a Skill Seekers power user.
You've done documentation. Now try:
# GitHub repository
skill-seekers create facebook/react --name react
# Local project
skill-seekers create ./my-project --name my-project
# PDF document
skill-seekers create manual.pdf --name manualYour skill works everywhere:
# Create once
skill-seekers create https://docs.djangoproject.com/ --name django
# Package for all platforms
for platform in claude gemini openai langchain; do
skill-seekers package output/django/ --target $platform
done# See available workflows
skill-seekers workflows list
# Apply security-focused analysis
skill-seekers create ./my-project --enhance-workflow security-focus
# Chain multiple workflows
skill-seekers create ./my-project \
--enhance-workflow security-focus \
--enhance-workflow api-documentation✅ Created your first skill
⬜ Try different source types
⬜ Package for multiple platforms
⬜ Use preset configs
Resources:
⬜ Custom configurations
⬜ Multi-source scraping
⬜ Enhancement workflows
⬜ Vector database export
⬜ MCP server setup
Resources:
⬜ Custom workflow creation
⬜ Integration with CI/CD
⬜ API programmatic usage
⬜ Contributing to project
Resources:
Goal: Create skills for all your team's frameworks
# Create a script
for framework in django react vue fastapi; do
echo "Processing $framework..."
skill-seekers install --config $framework --target claude
doneGoal: Analyze your codebase for AI assistance
# Analyze your repo
skill-seekers create your-org/your-repo --preset comprehensive
# Install to Cursor for coding assistance
skill-seekers install-agent output/your-repo/ --agent cursorGoal: Feed documentation into vector database
# Create skill
skill-seekers create https://docs.djangoproject.com/ --name django
# Export to ChromaDB
skill-seekers package output/django/ --target chroma
# Or export directly
export_to_chroma(skill_directory="output/django/")Goal: Keep skills up-to-date automatically
# Check for updates
skill-seekers update --config django --check-only
# Update if changed
skill-seekers update --config djangoBuilding skills for Claude, Gemini, or ChatGPT?
Learn:
- Enhancement workflows for better quality
- Multi-source combining for comprehensive skills
- Quality scoring before upload
Commands:
skill-seekers quality output/my-skill/ --report
skill-seekers create ./my-project --enhance-workflow architecture-comprehensiveBuilding retrieval-augmented generation systems?
Learn:
- Vector database exports (Chroma, Weaviate, Qdrant, FAISS)
- Chunking strategies
- Embedding integration
Commands:
skill-seekers package output/my-skill/ --target chroma
skill-seekers package output/my-skill/ --target weaviate
skill-seekers package output/my-skill/ --target langchainUsing Cursor, Windsurf, Cline, Roo, Aider, Bolt, Kilo, Continue, or Kimi Code?
Learn:
- Local codebase analysis
- Agent installation
- Pattern detection
Commands:
skill-seekers create ./my-project --preset comprehensive
skill-seekers install-agent output/my-project/ --agent cursorAutomating documentation workflows?
Learn:
- CI/CD integration
- MCP server setup
- Config sources
Commands:
# Start MCP server
skill-seekers-mcp --transport http --port 8765
# Add config source
skill-seekers workflows add-config-source my-org https://github.com/my-org/configs- CLI Reference - All commands
- Config Format - JSON specification
- Environment Variables - Settings
- Core Concepts - How it works
- Scraping Guide - Source options
- Enhancement Guide - AI options
- Workflows Guide - Preset workflows
- Troubleshooting - Common issues
- GitHub Issues: https://github.com/yusufkaraaslan/Skill_Seekers/issues
- Discussions: Share use cases and get advice
- Discord: [Link in README]
- Bug reports: Help improve the project
- Feature requests: Suggest new capabilities
- Documentation: Improve these docs
- Code: Submit PRs
- Watch the GitHub repository
- Star the project
- Follow on Twitter: @yUSyUS
# Core workflow
skill-seekers create <source> # Create skill
skill-seekers package <dir> --target <p> # Package
skill-seekers upload <file> --target <p> # Upload
# Analysis
skill-seekers analyze --directory <dir> # Local codebase
skill-seekers github --repo <owner/repo> # GitHub repo
skill-seekers pdf --pdf <file> # PDF
# Utilities
skill-seekers estimate <config> # Page estimation
skill-seekers quality <dir> # Quality check
skill-seekers resume # Resume job
skill-seekers workflows list # List workflows
# MCP server
skill-seekers-mcp # Start MCP server- Start simple - Use
createwith defaults - Dry run first - Use
--dry-runto preview - Iterate - Enhance, package, test, repeat
- Share - Package for multiple platforms
- Automate - Use
installfor one-command workflows
Go build something amazing. The documentation is your oyster. 🦪
# Your next skill awaits
skill-seekers create <your-source-here>