Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions guides/plugin-migration/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ icon: "compass"

This comprehensive guide will walk you through migrating your ElizaOS plugins from version 0.x to 1.x. The migration process involves several key changes to architecture, APIs, and best practices.

## 📚 Migration Documentation
## Migration Documentation

Follow these guides in order for a smooth migration:

Expand Down Expand Up @@ -52,7 +52,7 @@ Ensuring your migrated plugin works correctly:
- Integration testing
- Performance benchmarks

## 🚀 Quick Start
## Quick Start

If you're migrating a simple plugin, you can start with these basic steps:

Expand All @@ -61,14 +61,14 @@ If you're migrating a simple plugin, you can start with these basic steps:
3. **Update providers** - Convert state getters to provider pattern
4. **Test thoroughly** - Use the testing guide to verify functionality

## 💡 Migration Tips
## Migration Tips

- **Don't rush** - Take time to understand the new patterns
- **Test incrementally** - Migrate and test one component at a time
- **Use TypeScript** - The new type system will catch many issues
- **Ask for help** - Join our Discord for migration support

## 🔧 Common Migration Scenarios
## Common Migration Scenarios

### Simple Action Migration
```typescript
Expand Down Expand Up @@ -101,7 +101,7 @@ const provider = {
};
```

## 📋 Pre-Migration Checklist
## Pre-Migration Checklist

Before starting your migration:

Expand All @@ -111,7 +111,7 @@ Before starting your migration:
- [ ] Plan your testing strategy
- [ ] Allocate sufficient time for the migration

## 🆘 Getting Help
## Getting Help

If you encounter issues during migration:

Expand All @@ -120,7 +120,7 @@ If you encounter issues during migration:
3. Join our [Discord community](https://discord.gg/ai16z) for real-time help
4. Create a detailed issue with your migration problem

## 🎯 Migration Goals
## Migration Goals

The 1.x architecture brings:

Expand Down