AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Migrate Fields

skill-kentico-xperience-by-kentico-kenticopilot-migrate-fields · by Kentico

Generates C# IFieldMigration extension code for custom field value and definition transformations (form controls, data types, HTML cleanup, path updates) for page types, module classes, system objects, and forms during KX13→XbyK migration. Use when the user needs to handle custom form controls with no XbyK equivalent, cross-class field transforms, HTML sanitization, URL path rewriting, or data ty…

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-kentico-xperience-by-kentico-kenticopilot-migrate-fields

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kentico-xperience-by-kentico-kenticopilot-migrate-fields)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
25d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Migrate Fields? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Field Transformation Code Generation

Produces ready-to-use C# code files for the Migration.Tool.Extensions project. Takes the migration plan output from the migrate-plan skill — or a direct text description — as input.

Workflow

Step 1: Read Reference Materials

  • Read [field-migration-api.md](references/field-migration-api.md) for the complete API patterns and decision guides.
  • If you need pattern examples for implementation, read [FIELDMIGRATIONEXAMPLE.cs](assets/FIELDMIGRATIONEXAMPLE.cs) for a complete annotated reference implementation.
  • If you need context on the migration tool's extension points or configuration, read [migration-tool.md](../_shared/references/migration-tool.md).
  • If you need documentation links for the Kentico Migration Tool, read [migration-docs.md](../_shared/references/migration-docs.md).
  • If a Kentico documentation lookup tool is available, use it for additional context on XbyK form components, data types, or the Migration Tool API.

Step 2: Analyze Input

  • If a migration plan file path is provided → read it and extract from the Field Mappings section: Field Changes tables (scan for data type or form control changes), Custom Form Control Fields table (lists fields with non-built-in form controls and their handling mechanisms), and Custom Value Transforms table.
  • If the migration plan has no Custom Form Control Fields section, scan the Field Changes tables for any field with a data type change or form control change column that is not handled by a built-in mapping or WithFieldPatch in an IClassMapping. These are candidates for IFieldMigration code or appsettings.json FieldMigrations config.
  • If a direct text description is provided → identify source form controls, data types, field names, and transformation needs.
  • Ask clarifying questions if the transformation logic, target form components, or scope (which classes) are ambiguous.

Step 3: Identify Migrations to Generate

Determine the set of IFieldMigration classes needed:

  • One IFieldMigration class per logical transformation concern (e.g., one for custom rich text editors, one for HTML cleanup, one for date format conversion).
  • Group related form controls or data types into a single migration when they share the same transformation logic.
  • One ServiceCollectionExtensions class for DI registration.
  • Cross-reference the built-in mapping table in [migration-tool.md](../_shared/references/migration-tool.md) — the migration tool has default FieldMigration entries for standard data type + form control combinations (e.g., text + TextBoxControl → TextInput, longtext + HtmlAreaControl → RichTextEditor). It also has catch-all entries per data type (e.g., text + _other_ → TextInput, longtext + _other_ → TextArea). If a source form control matches a built-in entry or catch-all AND the target data type doesn't change, no IFieldMigration is needed.
  • Check for data type changes: Built-in catch-all mappings preserve the source data type — they do not change it. If a field requires a data type change (e.g., text → longtext) AND a form control change, the catch-all won't produce the correct result. Use IFieldMigration code, appsettings.json FieldMigrations config, or IClassMapping.WithFieldPatch instead.
  • Check the migration plan's Custom Form Control Fields section (if present) — fields marked with handling mechanism "IFieldMigration code" need code generation. Fields marked "Built-in catch-all", "FieldMigrations config", or "WithFieldPatch" do not.
  • Skip code generation for:
  • Simple form control swaps with no value change → use appsettings.json FieldMigrations config instead.
  • Field renames or per-class value transforms → use IClassMapping SetFrom/ConvertFrom instead.
  • Field definition changes scoped to a single class → consider IClassMapping.WithFieldPatch instead.
  • Built-in conversions already handled by the migration tool defaults (including catch-all entries).
  • Recommend IClassMapping.ConvertFrom when the transform is specific to one class and one field (per-class scope, not cross-class).
  • Recommend IClassMapping.WithFieldPatch when the field definition change (data type, form component) is scoped to a single class and paired with an IClassMapping that already exists for that class.

Step 4: Generate Field Migration Code

For each migration, generate a class implementing IFieldMigration:

  • Rank — use values (new T())` for each migration.
  • Include comment noting that fields handled by IFieldMigration code do not need entries in appsettings.json FieldMigrations config.
  • Include comment noting any prerequisite appsettings or IClassMapping registrations.

Step 6: Build Verification

  1. Build the Migration.Tool.Extensions project to verify the generated code compiles without errors.
  2. If the build fails, analyze the error messages, fix all issues in the generated code, and rebuild.
  3. Repeat up to 3 attempts. If the build still fails after 3 attempts, present the full build output and error details to the user for manual resolution.

Step 7: Present and Refine

  • Save files to the user-specified path (default: Migration.Tool.Extensions/FieldMigrations/ — generated code belongs in the Migration.Tool.Extensions project, matching the Migration.Tool.Extensions.FieldMigrations namespace).
  • Provide a summary table of generated migrations:

| File | Pattern | Rank | Handles | | -------------------------------------- | ------------------------ | ---- | ------------------------------------ | | CommunityTextEditorFieldMigration.cs | Form control replacement | 1000 | CommunityTextEditor → RichTextEditor | | DateTextFieldMigration.cs | Data type conversion | 2000 | EventDateText text → datetime |

  • Ask if any migrations need adjustment and iterate on feedback.

Rules

  • Namespace: Migration.Tool.Extensions.FieldMigrations (user can override).
  • File naming: {DescriptiveName}FieldMigration.cs.
  • Use string constants for source/target form control names and data types, following the Source_/Target_ prefix convention from the example.
  • Add TODO comments for values unknown at generation time (e.g., target asset paths, lookup dictionaries).
  • Follow exact API patterns from field-migration-api.md — do not invent methods that don't exist.
  • Every IFieldMigration must have a corresponding AddSingleton(new T()) registration.
  • Handle both structured (migration plan) and free-text input.
  • MigrateFieldDefinition uses System.Xml.Linq XElement API — find or create elements, set values, remove obsolete settings.
  • MigrateValue must handle null (null or DBNull) and unexpected types defensively.
  • Prefer IClassMapping.ConvertFrom for class-specific, per-field transforms; use IFieldMigration for cross-class or form-control-driven transforms.
  • If a Kentico documentation lookup tool is available, verify uncertain API details before generating code.
  • After generating code, always build the project and fix compilation errors before considering the task complete.

Gotchas

  • ShallMigrate is called for every field in every class — must be lightweight and specific. Broad matching (e.g., all "text" fields) interferes with built-in migrations.
  • MigrateFieldDefinition and MigrateValue must be aligned — if the definition changes the data type, the value must be converted to match.
  • Custom rank values must be < 100,000 (built-in defaults use 100,000+; lower rank = higher priority).
  • Fields handled by IFieldMigration do NOT need appsettings.json FieldMigrations entries. Skip code generation when config suffices (simple form control swap, no value transform).
  • When a field definition change is scoped to a single class that already has an IClassMapping, prefer WithFieldPatch over IFieldMigration — it keeps the definition change co-located with the class mapping. Only use IFieldMigration when the same form control or data type change applies across multiple classes.
  • Check SourceObjectContext when transformation behavior differs across pages, custom tables, and forms.
  • This skill generates IFieldMigration code only — IClassMapping, ContentItemDirectorBase, IWidgetMigration, and IWidgetPropertyMigration are separate extension points.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.