For the complete documentation index, see llms.txt.
Skip to main content
Version: 8.9

Migration tools

Camunda is invested in supporting and easing your migration from Camunda 7 to Camunda 8 with migration tools. You can use them in two ways:

  • Agentic migration (recommended): An AI coding agent uses the Diagram Converter for models and forms, then lets you select an AI-first or recipe-assisted Java migration path.
  • Manual migration: Run the individual tools yourself for full control or to handle specific migration tasks independently.

All tools are available as ready-to-use builds from the GitHub releases page.

Agentic migration​

The Camunda migration agent skill is an AI-driven orchestrator that uses the Diagram Converter CLI as the default for BPMN, DMN, and static Camunda 7 form conversion. After it inventories your Java code, you select either an AI-first, pattern-guided path or an optional recipe-assisted path.

You can run the skill with an AI coding agent such as Claude Code or GitHub Copilot CLI, or publish it to your organization as an AWS Transform custom transformation. The setup and run command differ by agent, but the migration flow is the same.

Set up and run​

Set up your agent, then run the skill from your Camunda 7 project directory. Every agent runs the same agent workflow.

Install the skill:

claude plugin marketplace add camunda/camunda-7-to-8-migration-tooling
claude plugin install camunda-migration

Run it:

/camunda-migration:migrate-c7-to-c8-code

The skill asks for your migration scope:

ScopeWhat the agent does
Code + models (recommended, default)Uses the Diagram Converter CLI as the default for BPMN, DMN, and Camunda 7 forms, then lets you select a Java migration path after inventory.
Code onlyInventories Java code, then lets you select an AI-first or recipe-assisted path.
Models onlyUses the Diagram Converter CLI as the default for BPMN, DMN, and Camunda 7 forms.
Assessment onlyInventories files and estimates effort without changes.

Select a Java migration path​

After the inventory, select the path that fits your codebase and review capacity:

PathUse when
AI-first, pattern-guided (preferred starting point)You have a capable coding model and can review source-to-output mappings and behavior.
Recipe-assisted (optional)You have repeated, supported, primarily syntactic transformations, or need a deterministic first diff.

Run both paths on representative Java code before you use one across a broad migration. A recipe-assisted path can add scaffolding, generated names, TODOs, and cleanup. Neither path guarantees lower token use, cost, or migration time. See Code Conversion for detailed selection guidance.

Agent workflow​

  1. Assess migration scope: Inventories BPMN/DMN diagrams, Camunda 7 .form files, and Java code files, and estimates effort.
  2. Convert models and forms: Runs the Diagram Converter CLI as the default. Review converted models and REVIEW, WARNING, and TASK findings. Do not use AI-only model conversion as the default because model capability can materially affect output and silently change model semantics.
  3. Select and migrate code: After inventory, select an AI-first, pattern-guided path or an optional recipe-assisted path. AI-first migration reads source code and patterns directly. Recipe-assisted migration produces a deterministic first diff for repeated, supported, primarily syntactic transformations, then needs AI or manual cleanup.
  4. Validate migration results: Compiles, runs tests, searches for remaining C7 references, verifies converted forms and model findings, and reviews source-to-output mappings and behavior.
  5. Fix remaining issues: Offers to fix remaining issues, and waits for your review before each change.

The agent also handles static and generated Camunda 7 forms by creating or adapting standard Camunda 8 forms and linking them from the converted BPMN models. Unsupported validation rules and ambiguous behavior are flagged for review.

The agent can use the flat analysis-results.json report generated by the CLI's --json option or the web interface's Download JSON action. It groups findings by category, checks the target platform version, and cross-references model findings with migrated code before suggesting fixes. See Download JSON analysis results.

Before it uses AI for Java changes or model findings, the agent checks whether the active model is suitable for complex reasoning. Select a capable model, but review remains mandatory because model quality materially affects the output.

If it finds no local BPMN or DMN models, the agent can use the Diagram Converter's engine mode to retrieve the latest definitions from an accessible Camunda 7 REST endpoint. It asks for the endpoint and authentication details and does not request engine access when local models are available.

The agent preserves the original model files, avoids using stale reports or overwriting existing output, and records findings and decisions in MIGRATION_REPORT.md. It asks for confirmation before adding deployment configuration for the converted resources.

Manual migration​

Camunda provides the following tools for manual migration:

Migration toolDescriptionGitHub link
Diagram ConverterAnalyze and convert BPMN, DMN, and Camunda 7 form files. Available for local installation (Java or Docker) or hosted as a free SaaS offering.Migration Tooling: Diagram Converter
Data MigratorCopies Camunda 7 runtime instances and history (audit log) to Camunda 8.Migration Tooling: Data Migrator
Code Conversion UtilitiesMixture of code mapping tables, code conversion patterns, and automatable refactoring recipes.Migration Tooling: Code Conversion

Examples​

ExampleDescriptionGitHub link
Simple end-to-end exampleShows all tools in action for a simple Spring Boot Java solution.Camunda 7 to 8 migration example