Migration Guide

Migrate from v2.x to v3.0.0.

Overview

v3.0.0 is backward compatible for basic usage. All v2.x configs and commands work unchanged.

What’s New

Featurev2.xv3.0.0
Output formats416
MCP tools926
Input sources34 (+local codebases)
Cloud storage✅ S3/GCS/Azure
Multi-agent✅ Claude/Copilot/Codex
Godot support✅ Signal flow analysis
Tests700+1,852

Upgrade Steps

1. Update Package

pip install --upgrade skill-seekers

2. Verify Installation

skill-seekers --version
# Should show 3.0.0

3. Test Existing Configs

# Your v2.x configs still work
skill-seekers scrape --config configs/react.json

New Features to Try

Local Codebase Analysis

# New in v3.0.0
skill-seekers analyze --directory ./my-project --format langchain

Cloud Upload

# New in v3.0.0
skill-seekers cloud upload output/react/ --provider s3 --bucket my-bucket

Multi-Agent Support

# New in v3.0.0
skill-seekers enhance --agent copilot

Deprecated Features

None! v3.0.0 only adds features.

Troubleshooting

Issue: Command not found

# Reinstall
pip uninstall skill-seekers
pip install skill-seekers

Issue: Config validation fails

# Update config schema
skill-seekers config --wizard

Next Steps