Hyva Cms Custom Field logo

Hyva Cms Custom Field

Organization
hyva-themes
hyva-cms-custom-field

Create custom field types and field handlers for Hyvä CMS components. Use when the user mentions Hyvä, Hyva, or CMS together with custom field, custom input, or modal selector (e.g. hyva custom field, custom cms field, hyva modal selector, custom hyva input, custom cms input). Do not use for generic form or UI work outside Hyvä CMS.

Overview

Publisherhyva-themes
Repositoryhyva-ai-tools
Skill namehyva-cms-custom-field
Stars
84
Forks
16
Bundled files
8
LicenseOSL-3.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 8 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by hyva-themes on GitHub. Read the source before you install it.

Installation

Install the Hyva Cms Custom Field AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/hyva-themes/hyva-ai-tools.git /tmp/hyva-ai-tools
mkdir -p .claude/skills
cp -r /tmp/hyva-ai-tools/skills/hyva-cms-custom-field .claude/skills/hyva-cms-custom-field
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Hyva Cms Custom Field in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Hyva Cms Custom Field on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Hyva Cms Custom Field is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Hyvä CMS Custom Field Type Creator

Overview

This skill guides the creation of custom field types and field handlers for Hyvä CMS components. Custom field types extend the built-in field types (text, textarea, select, etc.) with specialized input controls for the CMS editor interface.

Two types of custom fields:

  1. Basic Custom Field Type: Custom input control with direct data entry (e.g., date range, color picker, custom validation)
  2. Field Handler: Enhanced UI with complex interactions (e.g., product selector with images, searchable dropdown, link configuration modal)

Command execution: For commands that need to run inside the development environment (e.g., bin/magento), use the hyva-exec-shell-cmd skill to detect the environment and determine the appropriate command wrapper.

Workflow

Step 1: Module Selection

If not already specified in the prompt, determine where to create the custom field type:

Option A: New Module

Use the hyva-create-module skill with:

  • dependencies: ["Hyva_CmsBase", "Hyva_CmsLiveviewEditor"]
  • composer_require: {"hyva-themes/commerce-module-cms": "^1.0"}

Option B: Existing Module

Verify the module has required dependencies:

  • Hyva_CmsBase and Hyva_CmsLiveviewEditor in etc/module.xml
  • hyva-themes/commerce-module-cms in composer.json

Add missing dependencies if needed.

Step 2: Field Type Details

Gather information about the custom field type:

  1. Field type name (lowercase identifier, e.g., date_range, product_selector, color_picker)
  2. Purpose (what data does it collect?)
  3. UI pattern:
    • Basic field: Simple input with validation (date picker, pattern input, enhanced text field)
    • Inline handler: Enhanced control in field area (searchable dropdown, color picker)
    • Modal handler: Separate dialog for complex selection (product selector, link builder, media gallery)
  4. Data structure (simple string, JSON object, array?)
  5. Validation requirements (pattern, required, custom rules?)

Step 3: Implementation Pattern Selection

Based on the UI pattern identified in Step 2:

Pattern A: Basic Custom Field Type

For simple inputs with custom HTML5 validation or specialized input controls:

  • Single template file for the field
  • No separate handler modal
  • Example: Date range selector, custom pattern validation, slider input

Pattern B: Inline Field Handler

For enhanced controls that remain in the field area:

  • Single template file with Alpine.js component
  • No separate handler modal
  • Example: Searchable select dropdown, color picker with swatches

Pattern C: Modal-Based Field Handler

For complex selection interfaces requiring more space:

  • Field template (displays selection + trigger button)
  • Handler modal template (separate dialog with full UI)
  • Layout XML registration for the handler
  • Example: Product selector, link configuration, media gallery

See references/handler-patterns.md for detailed implementation patterns and code examples for each type.

Step 4: Generate Field Template

Create the field template at view/adminhtml/templates/field-types/[field-type-name].phtml.

Required template elements:

  1. Field container with proper ID: field-container-{uid}_{fieldName}
  2. Input element(s) with name: {uid}_{fieldName}
  3. Validation messages container: validation-messages-{uid}_{fieldName}
  4. updateWireField() or updateField() call on value change
  5. Error state handling via $magewire->errors
  6. IMPORTANT: Use null coalescing for field value: $block->getData('value') ?? '' (NOT type casting)

Use the appropriate template from assets/templates/:

  • basic-field.phtml.tpl - Basic custom field type
  • inline-handler.phtml.tpl - Inline enhanced control
  • modal-field.phtml.tpl - Modal handler field template

See references/template-requirements.md for detailed template requirements and patterns.

Step 5: Generate Handler Modal (if needed)

For modal-based handlers only, create the handler template at view/adminhtml/templates/handlers/[handler-name]-handler.phtml.

Handler modal structure:

  1. <dialog> element with Alpine.js component and open:flex class (NOT static flex)
  2. Listen for initialization event from field template
  3. Implement selection UI (search, filters, grid, etc.)
  4. Dispatch editor-change event on save

Use assets/templates/modal-handler.phtml.tpl as the starting point.

See references/handler-communication.md for event protocols and data exchange patterns.

Step 6: Register Field Type

Add registration to etc/adminhtml/di.xml:

xml
<type name="Hyva\CmsLiveviewEditor\Model\CustomField">
    <arguments>
        <argument name="customTypes" xsi:type="array">
            <item name="[field_type_name]" xsi:type="string">
                [Vendor]_[Module]::field-types/[field-type-name].phtml
            </item>
        </argument>
    </arguments>
</type>

Step 7: Register Handler Modal (if needed)

For modal-based handlers only, create or update view/adminhtml/layout/liveview_editor.xml:

xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceContainer name="before.body.end">
            <block name="[handler_name]_handler"
                   template="[Vendor]_[Module]::handlers/[handler-name]-handler.phtml"/>
        </referenceContainer>
    </body>
</page>

Note: Inline handlers do NOT require layout XML registration.

Step 8: Usage Example

Provide an example of using the custom field type in components.json:

json
{
    "my_component": {
        "label": "My Component",
        "content": {
            "[field_name]": {
                "type": "custom_type",
                "custom_type": "[field_type_name]",
                "label": "Field Label",
                "attributes": {
                    "required": true,
                    "pattern": ".*"
                }
            }
        }
    }
}

Resources

references/template-requirements.md

Complete reference for custom field type template requirements:

  • Required markup patterns and element IDs
  • Field container structure
  • Validation message containers
  • Field value update methods (updateWireField vs updateField)
  • HTML5 validation attributes
  • Error state handling

Read this file when implementing the field template to ensure proper integration with the CMS editor.

references/handler-patterns.md

Implementation patterns for all three custom field types:

  • Basic custom field type (simple input)
  • Inline field handler (enhanced control)
  • Modal-based field handler (dialog selection)

Each pattern includes:

  • Complete code examples
  • When to use each pattern
  • Alpine.js component structure
  • Data flow and state management

Read this file when selecting the implementation pattern and writing the template code.

references/handler-communication.md

Event protocols and data exchange for field handlers:

  • Initialization event structure
  • Save event structure
  • Field value encoding/decoding
  • Error handling patterns
  • Common pitfalls and solutions

Read this file when implementing handler modals to understand the communication protocol.

references/built-in-handlers.md

Reference for Hyvä CMS built-in field handlers:

  • Product Handler (modal-based, image grid selection)
  • Link Handler (modal-based, multi-type link config)
  • Searchable Select (inline enhanced dropdown)

Each includes:

  • Location in Hyvä CMS module
  • Key features and patterns
  • Usage examples
  • Code to examine for patterns

Read this file when looking for implementation examples or patterns to copy.

assets/templates/basic-field.phtml.tpl

Template for basic custom field types with custom validation or input controls.

Placeholders:

  • {{FIELD_TYPE_NAME}} - Custom field type identifier
  • {{FIELD_INPUTS}} - Input element(s) HTML
  • {{VALIDATION_LOGIC}} - Custom validation JavaScript (optional)

assets/templates/inline-handler.phtml.tpl

Template for inline enhanced controls (searchable dropdown, color picker, etc.).

Placeholders:

  • {{HANDLER_NAME}} - Alpine.js component name
  • {{HANDLER_LOGIC}} - Alpine.js component implementation
  • {{HANDLER_UI}} - Enhanced control HTML

assets/templates/modal-field.phtml.tpl

Field template for modal-based handlers (trigger button + hidden input).

Placeholders:

  • {{EVENT_NAME}} - Custom event name to dispatch
  • {{BUTTON_LABEL}} - Button text
  • {{DISPLAY_VALUE}} - Current selection display

assets/templates/modal-handler.phtml.tpl

Handler modal template for modal-based selection interfaces.

Placeholders:

  • {{HANDLER_NAME}} - Alpine.js component name
  • {{MODAL_TITLE}} - Dialog header text
  • {{SELECTION_UI}} - Selection interface HTML
  • {{SAVE_LOGIC}} - Save button logic

Important Guidelines

Core Requirements

  1. Template Requirements: All custom field types must follow required markup patterns (container ID, input name, validation messages)
  2. Handler Registration: Modal handlers need layout XML registration; inline handlers do not
  3. Validation: Apply HTML5 validation attributes via $filteredAttributes for automatic validation
  4. Alpine Components: If using custom Alpine components, keep input fields outside the component and update via vanilla JS
  5. Built-In Examples: Reference built-in handlers in Hyva_CmsLiveviewEditor::page/js/ for proven patterns

Accurate Patterns from Codebase

Based on built-in Hyvä CMS handler implementations:

  1. Event Naming Convention: Use toggle-{type}-select pattern

    • ✅ Correct: toggle-product-select, toggle-link-select, toggle-category-select
    • ❌ Incorrect: toggle-product-handler, toggle-link-handler
  2. Handler Function Naming: Use init{Type}Select() pattern

    • ✅ Examples: initProductSelect(), initLinkSelect(), initCategorySelect()
  3. Field Value Update Methods:

    • Use updateWireField (default): Products, Link, Category handlers
      • Triggers immediate server-side validation via Magewire
      • Keeps component state synchronized
    • Use updateField (specialized): Image handler, debounced inputs (color, range)
      • Updates preview without server round-trip
      • Defers validation until save
  4. JSON Encoding Pattern: All complex data (arrays, objects) must be JSON-encoded

    php
    // Field template
    value="<?= $escaper->escapeHtmlAttr(json_encode($fieldValue)) ?>"
    
    // Handler initialization
    const data = JSON.parse(fieldValue);
    
    // @change handler
    @change="updateWireField(..., JSON.parse($event.target.value))"
  5. wire:ignore for Livewire Compatibility: Searchable select uses wire:ignore wrapper

    php
    <div wire:ignore>
        <div x-data="initSearchableSelect(...)">
            <!-- Alpine component -->
        </div>
    </div>
  6. Separate Handler Files: Even inline handlers may have separate function files

    • Field template: liveview/field-types/searchable_select.phtml
    • Handler function: page/js/searchable-select-handler.phtml
  7. Icons View Model: Use for UI elements

    php
    /** @var Icons $icons */
    $icons = $viewModels->require(Icons::class);
    <?= /** @noEscape */ $icons->trashHtml('', 22, 22) ?>
  8. FieldTypes View Model: Use for attribute filtering

    php
    /** @var FieldTypes $fieldTypes */
    $fieldTypes = $viewModels->require(FieldTypes::class);
    $filteredAttributes = $fieldTypes->getDefinedFieldAttributes($attributes);
    // Or for specific attributes:
    $filteredAttributes = $fieldTypes->getAttributesByKeys($attributes, ['required', 'data-required']);
  9. CRITICAL: Layout XML referenceContainer: Handler modals MUST use before.body.end container

    • ✅ Correct: <referenceContainer name="before.body.end">
    • ❌ Incorrect: <referenceContainer name="content">
    • The before.body.end container ensures the handler modal is loaded at the end of the page body, which is required for proper Alpine.js initialization and modal functionality
  10. CRITICAL: Field Value Type Handling: NEVER use type casting for field values, always use null coalescing operator

  • ✅ Correct: $fieldValue = $block->getData('value') ?? '';
  • ❌ Incorrect: $fieldValue = (string) $block->getData('value');
  • Type casting (string) will fail when value is null, causing PHP errors
  • Use ?? '' for string values, ?? [] for array values, or appropriate default for your data type
  • Reference: See built-in field types like category.phtml which use ?? [] pattern
  1. CRITICAL: Dialog Modal Classes: Handler modals must use open:flex not static flex class
  • ✅ Correct: <dialog class="... open:flex flex-col">
  • ❌ Incorrect: <dialog class="... flex flex-col"> (modal always visible)
  • The open: prefix applies styles only when dialog is open (native HTML dialog state)
  • Reference: See built-in handlers like category-handler.phtml which use open:flex flex-col
  1. CRITICAL: Complex Data Type Handling: For fields storing JSON/array data, handle BOTH array and string types
  • Field values may be returned as already-decoded arrays OR as JSON strings (depends on storage/context)
  • ✅ Correct pattern:
    php
    $data = ['default' => 'structure'];
    if ($fieldValue) {
        if (is_array($fieldValue)) {
            $data = $fieldValue;  // Already decoded
        } elseif (is_string($fieldValue)) {
            $decoded = json_decode($fieldValue, true);
            if (is_array($decoded)) {
                $data = $decoded;
            }
        }
    }
    
    // When outputting to hidden input, ALWAYS ensure it's a JSON string
    $fieldValueJson = is_array($fieldValue) ? json_encode($fieldValue) : $fieldValue;
  • ❌ Incorrect: json_decode($fieldValue) without type checking (fails if value is already an array)
  • ❌ Incorrect: Using array directly in value attribute without JSON-encoding first

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Hyva Cms Custom Field AI skill do?

Create custom field types and field handlers for Hyvä CMS components. Use when the user mentions Hyvä, Hyva, or CMS together with custom field, custom input, or modal selector (e.g. hyva custom field, custom cms field, hyva modal selector, custom hyva input, custom cms input). Do not use for generic form or UI work outside Hyvä CMS.

Why use Hyva Cms Custom Field on TypingMind?

Because you install it once and use it with any model. Hyva Cms Custom Field is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Hyva Cms Custom Field in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/hyva-themes/hyva-ai-tools/tree/main/skills/hyva-cms-custom-field. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Hyva Cms Custom Field?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Hyva Cms Custom Field?

As many as you like. As long as a model supports skills, you can use Hyva Cms Custom Field with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Hyva Cms Custom Field AI skill free?

Yes. It is published on GitHub by hyva-themes under the OSL-3.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇