Divi 5 Compatibility logo

Divi 5 Compatibility

Community
cjsimon2
Divi 5 Compatibility

Use this skill when validating CSS for Divi 5 / Divi 5.11 compatibility, checking unsupported features or units, troubleshooting Divi CSS that isn't applying, debugging plugin conflicts (WP Rocket, LiteSpeed, Wordfence, WooCommerce, Perfmatters), migrating from Divi 4 to Divi 5, understanding breakpoints, applying the 5.5 Aspect Ratio + Framing settings to prevent CLS, using the 5.3 pseudo-class editing modes (:checked / :focus / :active) instead of custom CSS, the 5.4 Sizing Variable Generator and Relative Colorscheme Generator, the 5.7 Gradient Variables and text effects, the 5.9 Variable Fonts and CSS Grid Editor, the newer modules (Timeline, Breadcrumbs, SVG, Table of Contents, Instagram Feed, Tooltip, Post Filter, Charts, Gravity Forms, Payment Button, Imagely Gallery), Nested Option Presets, Critical CSS / Dynamic CSS / Inline Stylesheets, or fixing "styles not working" / "button override not working" / "static CSS cache" issues. Provides compatibility rules, validation patterns, specificity fixes, composable settings alternatives, version-specific bug fix history, and a full error-message reference.

Overview

Publishercjsimon2
RepositoryDivi5-ToolKit
Skill nameDivi 5 Compatibility
Stars
61
Forks
3
Bundled files
1
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.

  • 1 bundled files

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

  • Open source

    Published by cjsimon2 on GitHub. Read the source before you install it.

Installation

Install the Divi 5 Compatibility 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/cjsimon2/Divi5-ToolKit.git /tmp/Divi5-ToolKit
mkdir -p .claude/skills
cp -r /tmp/Divi5-ToolKit/plugins/divi5-toolkit/skills/divi5-compatibility .claude/skills/cjsimon2-divi-5-compatibility
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Divi 5 Compatibility 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 Divi 5 Compatibility 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 Divi 5 Compatibility 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.

Divi 5 Compatibility Reference

Divi 5 Version: 5.11.0 (August 15, 2026 — Divi 5.0 released February 26, 2026; weekly release cadence) Architecture: React 18, no Shadow DOM, standard DOM with et_pb_* classes Key recent additions:

  • 5.2 — Composable Settings (toggle any design option on any sub-element)
  • 5.3 — Pseudo-class editing (:checked, :focus, :active), Contact Form 7 Styler, Nested Option Presets
  • 5.4 — Sizing Variable Generator, Relative Colorscheme Generator
  • 5.5 — Aspect Ratio + Framing on all images, Image Presets, SVG sanitization
  • 5.6 — Five new modules (Timeline, Breadcrumbs, SVG, Table of Contents, Instagram Feed), Color Scale + Color Harmony Generators
  • 5.7 — Gradient picker overhaul, Gradient Variables (7th Design Variable type), gradient/image text fills, text-stroke
  • 5.8 — Customizable Workspaces, Tooltip module
  • 5.9 — Variable Fonts + new typography controls (drop caps, text columns, hyphenation), visual CSS Grid Editor
  • 5.10 — Post Filter + Post Filter Item modules (front-end Loop Builder filtering), corrected fluid breakpoint sizing, row-granular lazy loading
  • 5.11 — Charts, Gravity Forms, Imagely Gallery, Payment Button modules; flexbox alignItems CSS classes on Column/Section/Row/Group

CSS Feature Support

Unit Picker Dropdown (Builder Fields)

UnitStatusNotes
pxSupportedStandard absolute unit
%SupportedPercentage
emSupportedRelative to parent font
remSupportedRelative to root font
vwSupportedViewport width
vhSupportedViewport height
in, mm, cm, pt, pcSupportedPrint/absolute units

Advanced Units (Freeform/Advanced Input Mode)

All valid CSS units work in advanced input mode and in custom CSS fields:

UnitStatusNotes
chWorks in custom CSSNot in dropdown; works in freeform/advanced/child theme
exWorks in custom CSSNot in dropdown; works in freeform/advanced/child theme
dvh, svh, lvhWorks in custom CSSDynamic/small/large viewport units
vmin, vmaxWorks in custom CSSViewport min/max

Key insight: Since Divi 5 renders standard HTML without Shadow DOM, any CSS feature the browser supports will work in custom CSS, Code Modules, Free-Form CSS, or child theme stylesheets. The unit picker dropdown is limited, but custom CSS is not.

CSS Functions

FunctionStatusNotes
calc()Fully supportedWorks in builder fields and custom CSS
clamp()Fully supportedGreat for fluid responsive values
min()Fully supportedWorks in builder fields
max()Fully supportedWorks in builder fields
var()Fully supportedCSS custom properties

Modern CSS Features (via Custom CSS)

FeatureStatusNotes
CSS VariablesSupportedMust be in :root for global scope
FlexboxNativeFirst-class builder support
CSS GridNativeConvertible from flexbox in builder
Container queries (@container)WorksVia custom CSS/child theme (not in builder UI)
:has() selectorWorksVia custom CSS/child theme
CSS nestingWorksBrowser-native feature, via custom CSS
Cascade layers (@layer)WorksVia custom CSS/child theme
@media queriesWorksStandard responsive tool

CSS Keywords

auto, none, unset, inherit, fit-content — all supported in advanced unit fields.

Validation Rules

Rule 1: Button Specificity (Critical)

css
/* WILL NOT WORK — Divi overrides this */
.et_pb_button {
  background-color: #000000;
}

/* WILL WORK — proper override */
body .et_pb_button {
  background-color: #000000 !important;
}

Required for buttons:

  • body prefix for specificity
  • !important on all properties

Rule 2: CSS Variable Scope

css
/* May not work globally — wrong scope */
.my-section {
  --my-color: #2ea3f2;
}

/* WILL WORK — :root scope */
:root {
  --my-color: #2ea3f2;
}

Rule 3: Code Module Wrapping

html
<!-- INVALID — raw CSS in Code Module -->
.my-class { color: red; }

<!-- VALID — wrapped in style tags -->
<style>
.my-class { color: red; }
</style>

Rule 4: Theme Options Format

Theme Options Custom CSS must NOT have <style> tags.

Rule 5: Module Advanced Tab CSS Fields

The Module Element CSS fields (Title, Body, Button, Main Element, Before, After) accept property declarations only — no selectors or braces. Use Free-Form CSS for full rulesets.

css
/* Module Element field (properties only): */
color: red;
font-size: 1.2rem;

/* Free-Form CSS (full rulesets with selector keyword): */
selector h4 { color: red; line-height: 1.5; }
selector:hover { transform: scale(1.02); }

Rule 6: Numbered Classes Are Fragile

css
/* FRAGILE — changes when modules are reordered */
.et_pb_text_0 { color: red; }

/* STABLE — use custom classes instead */
.my-intro-text { color: red; }

Responsive Breakpoints

Divi 5 ships with 7 breakpoints, but only 3 are active by default:

BreakpointDefault WidthActive by DefaultQuery Type
Phone767pxYesmax-width
Phone Wide860pxNo (enable in builder)max-width
Tablet980pxYesmax-width
Tablet Wide1024pxNo (enable in builder)max-width
Desktop(base)Yes (cannot be disabled)N/A
Widescreen1280pxNo (enable in builder)min-width
Ultra Wide2560pxNo (enable in builder)min-width

All breakpoint widths are customizable. Custom breakpoints configured via Sitewide Responsive Breakpoints modal in the Visual Builder.

Standard Media Queries

css
/* Phone (default active) */
@media (max-width: 767px) { }

/* Tablet (default active) */
@media (max-width: 980px) { }

/* Widescreen (must enable) */
@media (min-width: 1280px) { }

/* Ultra Wide (must enable) */
@media (min-width: 2560px) { }

Note: The visibility toggle only supports the original 3 breakpoints (desktop, tablet, phone). Use CSS for visibility on custom breakpoints.

Common Issues & Fixes

Issue: Button styles not applying

Symptom: Custom button colors/styles ignored Cause: Low specificity, missing !important Fix:

css
body .et_pb_button {
  background-color: #000000 !important;
  border-radius: 0 !important;
  /* ALL properties need !important */
}

Issue: Custom CSS overridden by Divi

Symptom: Styles appear struck-through in DevTools Cause: Divi's cached-inline-styles CSS loads after child theme stylesheets Fix: Move CSS to Theme Options Custom CSS panel (loads later in cascade), increase selector specificity, or use !important.

Issue: CSS Variables not working

Symptom: Variables undefined or not applying Cause: Wrong scope or Divi 5.1 unit picker bug (fixed) Fix:

css
:root {
  --my-color: #2ea3f2;
}
.element {
  color: var(--my-color);
}

Issue: Visual Builder vs Frontend differences

Symptom: Styles look different in builder vs live site Cause: Builder renders in an iframe with different CSS context Fix: Always test on the frontend. Use Safe Mode (Divi > Support Center) to isolate.

Issue: Styles lost after Divi update

Symptom: Custom CSS disappears or breaks after updating Cause: Static CSS cache is stale Fix: Clear at Divi > Theme Options > Builder > Advanced > Static CSS File Generation > Clear. Disable Static CSS during active development.

Issue: Font not loading

Symptom: Fallback font displays instead Cause: Websafe fonts incorrectly generating Google Fonts API requests (fixed in 5.1) Fix: Ensure font is loaded via Google Fonts or @font-face. Use exact name with fallbacks:

css
font-family: 'Fira Sans', system-ui, sans-serif !important;

Issue: Layout breaking on mobile

Symptom: Elements stack or overflow incorrectly Cause: Divi 5 uses Flexbox by default; custom CSS may conflict Fix: Work with Divi's Flexbox controls in the builder, or override completely:

css
.et_pb_row {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem !important;
}

Issue: Hover states not working

Symptom: Hover effects ignored Cause: Divi's inline styles override Fix:

css
body .et_pb_button:hover {
  background-color: #222222 !important;
}

Issue: Header/menu layout breaks after clearing Static CSS (5.6, field-verified 2026-06-12)

Symptom: A previously centered header menu (e.g., inline_centered_logo style) packs to the left on every page immediately after clearing the Static CSS cache. No custom CSS touches the menu. Cause: Regeneration re-emits the template's flex layout CSS using current defaults (justify-content: start). Modules configured before Divi exposed explicit Flex options (or left at "default") inherited centering implicitly; the regenerated CSS doesn't reproduce it. Diagnostic signature: .et_pb_menu_inner_container computes justify-content: start and .et_pb_menu__wrap computes flex: 0 1 auto while the stylesheet still contains flex: 1 1 auto for it. Fix: In the Theme Builder, set the menu module's Justify Content and Align Items explicitly — per breakpoint (e.g., Desktop: Center; Tablet/Phone: Space Between so the logo stays left and the hamburger stays right). Any setting change + Save forces a clean regeneration. Do NOT patch with custom CSS first — the builder-native fix survives future regenerations.

Issue: Custom CSS targeting et_pb_section_N_tb_header / _tb_footer silently stops matching (field-verified 2026-06-12)

Symptom: A rule scoped to a numbered Theme Builder template class (e.g., .et_pb_section_1_tb_footer) stops applying after editing/resaving any template — no error, the selector just matches nothing. Cause: Resaving a Theme Builder template can renumber its et_pb_section_N_tb_* classes (e.g., _1__3_). Numbered template classes are exactly as fragile as page-level numbered selectors (.et_pb_text_0), but they look stable because they survive page edits — they only break on template saves, which makes the failure hard to trace. Fix: Scope to the stable Theme Builder layout wrappers instead: .et-l--header, .et-l--body, .et-l--footer (e.g., .et-l--footer a[href^="tel:"]). Treat et_pb_*_N_tb_* in custom CSS as a P0 finding, same as any numbered selector.

Plugin Conflict Reference

Cache Plugins

  • WP Rocket + RUCSS: Divi auto-disables Dynamic CSS when RUCSS is active. Use CSS Safelist to preserve Divi selectors.
  • LiteSpeed Cache: May show unstyled HTML initially. Whitelist admin-ajax.php in ModSecurity. (Pre-5.8 Divi caused LiteSpeed to purge entire entry sets on every edit — fixed in Divi 5.8.)
  • Autoptimize: jQuery deferral can cause fatal errors with Divi.
  • General rule: Disable Divi performance options (Static CSS, Dynamic CSS, JS deferral) during development. Enable after finalization.

Security Plugins

  • Wordfence: Firewall can block page saves. Use Learning Mode during Divi updates.
  • Multiple security plugins: Use only one — they conflict with each other.

WooCommerce

  • Cart/checkout pages may lose formatting after updates.
  • Fix: Disable Dynamic CSS in Divi Theme Options > Performance. Divi 5 offers native Woo Cart and Checkout modules.

Divi 4 to Divi 5 Migration

What Changes

  • Shortcodes ([et_pb_section]) → JSON block format
  • HTML structure changes — CSS selectors may break
  • CSS ID & Classes field → Attributes panel (Advanced tab)
  • Custom JS targeting Divi 4 DOM may fail
  • Third-party D4 modules load in backward-compatibility mode (full D4 framework)

Migration Checklist

  1. Back up the full site (database + files)
  2. Test on staging environment first
  3. Inspect new HTML structure in browser DevTools
  4. Adapt custom CSS selectors for new class structure
  5. Move CSS IDs/classes to new Attributes panel
  6. Test all custom JavaScript hooks
  7. Clear Static CSS cache after migration
  8. Check third-party plugin compatibility tags

Backward Compatibility

  • D4 modules auto-detected and loaded with D4 framework
  • If a page has even one D4 module, the entire page loads D4 framework (performance hit)
  • Legacy modules trigger AJAX reload when editing in Visual Builder

Debugging Techniques

Browser DevTools

  1. Computed tab: Shows final applied values — identifies which style "won"
  2. Styles tab: Shows cascaded styles with source locations. Struck-through = overridden.
  3. In Visual Builder: Right-click is disabled. Hover over the admin bar to right-click and inspect.

Divi Safe Mode

  • Location: Divi > Support Center > Safe Mode
  • Disables third-party plugins, child themes, and custom code for your session only
  • If the problem disappears, it's caused by a plugin/child theme/custom code

Static CSS Troubleshooting

  • Clear: Divi > Theme Options > Builder > Advanced > Static CSS > Clear
  • Keep disabled during development
  • Per-page setting defaults to TRUE even if globally disabled

D5 Dev Tool

Composable Settings Compatibility (Divi 5.2+ through 5.11)

Composable Settings let you enable any design option for any module sub-element directly in the builder. Before reaching for custom CSS, check if the styling can be achieved natively:

CSS PatternComposable AlternativeSince
Width/height on buttonsEnable Sizing options on button sub-element5.2
Border on titlesEnable Border options on title sub-element5.2
Animation on imagesEnable Animation options on image sub-element5.2
Transform on any sub-elementEnable Transform options via Compose Settings5.2
Spacing on any sub-elementEnable Spacing options via Compose Settings5.2
input:focus / input:checked / input:active stylingUse the pseudo-class tabs in field design5.3
aspect-ratio: 16/9 on imagesSizing > Aspect Ratio5.5
object-fit / object-position on cropped imagesFraming settings5.5
Image-specific options on non-image modulesComposable settings for image option groups5.5
Nested presets (e.g., button border inside CTA preset)Nested Option Presets5.3
Repeated linear-gradient() values across elementsGradient Variables5.7
background-clip: text gradient/image text fillsGradient + image text fill controls5.7
-webkit-text-stroke on headingsText-stroke controls5.7 (expanded 5.9)
::after-based tooltip CSSTooltip module5.8
font-variation-settings / variable font axesVariable Fonts controls5.9
Drop caps (::first-letter), column-count, hyphensNew typography options5.9
grid-template-* / grid-column: span layoutsCSS Grid Editor (start/end/span offsets)5.9
Custom JS loop filteringPost Filter + Post Filter Item modules5.10
align-items overrides on rows/columnsFlexbox alignItems classes + builder setting5.11

When CSS is still needed:

  • Complex selectors (:has(), sibling combinators, attribute selectors)
  • Pseudo-elements (::before, ::after) beyond what Free-Form CSS offers
  • @media queries for preference queries (prefers-reduced-motion, prefers-color-scheme)
  • Custom @keyframes animations
  • Cross-element relationships
  • Canvas/popup styling
  • Custom-styled checkboxes/radios with visual UI distinct from the native input

Known Divi 5.x CSS Bug Fixes (Version History)

If a user reports one of these symptoms, check whether their Divi version predates the fix.

Fixed in 5.2

  • Box shadow inherited hover states breaking due to empty string values overwriting presets
  • Transform Scale handle drag corrupting calc() function values and CSS variable values
  • Broken CSS on pages with loops if a paginated page was visited before the main loop page

Fixed in 5.3 (April 24, 2026 — 69 fixes total)

  • Sticky/locked module rendering performance regressions
  • Visual Builder loading speed (deferred assets + lazy-loading of editor chunks)
  • Form field option inconsistencies across modules

Fixed in 5.5 (May 12, 2026 — 58 fixes total)

  • Grid class parity for first_in_row, last_in_row, on_last_row selectors
  • Flex/Grid layout row height application
  • Border inheritance corrections
  • CSS variable application for background images

Fixed in 5.6 (May 25, 2026 — 109 changes total)

  • Decimal values in Section Divider Horizontal Repeat field (0.6x now accepted)
  • Grid Auto Columns/Rows accept full CSS track values beyond single numeric sizes
  • Global number and font variables render correctly on frontend
  • Responsive padding calculations corrected for columns with child modules
  • Background videos no longer load on devices where the module is removed

Fixed in 5.7 (June 10, 2026 — 72 fixes total)

  • Border-radius clipping broken for complex values (e.g., clamp())
  • Icon module background color stretching across the full column width in flex layouts
  • Unit synchronization in Transform Scale fields
  • Image module aspect ratio targeting for portrait videos
  • Visual Builder save failures after extended idle periods (stale nonces)

Fixed in 5.8 (June 20, 2026 — 66 fixes total)

  • False CSS linter errors for nested selectors without & in Free-Form CSS and CodeMirror CSS fields
  • Incorrect heading font sizes on frontend + Visual Builder when Text modules use option group presets
  • Migrated background gradients rendering with wrong length units (units now preserved)
  • Contact Form 7 Styler button icon and rounded corners on hover
  • Slider module control layering — arrows/navigation now stay above high-z-index content
  • Cache bugs causing styles to intermittently disappear
  • LiteSpeed Cache purging entire entry sets instead of just the edited page

Fixed in 5.9 (July 13, 2026 — 65 fixes total)

  • Grid layout consolidation when switching a container from flex to grid
  • Button line color/style unavailable in hover and sticky states
  • Section visibility issues with animations
  • Blurb image alignment with percentage-based widths
  • CSS numeric field values lost in settings modals

Fixed in 5.10 (August 11, 2026 — 85 fixes total)

  • Custom attributes declaring duplicate class/style names now merge instead of dropping entries
  • Theme Builder layout custom CSS not outputting on search results pages
  • Column sizing broken when row horizontal gap uses global variables
  • Post Slider Dark/Light text color specificity across the breakpoint ladder
  • Fluid breakpoint sizing in the Visual Builder corrected (desktop 1025px, tablet-wide 981px, tablet 861px, phone-wide 768px preview widths)

Fixed in 5.11 (August 15, 2026 — 18 fixes total)

  • List items in Text module rich-text fields now inherit body text styles
  • Circle Counter margin spacing in flex containers without stretch alignment
  • Image module "Grow to Fill" shrinking instead of filling columns when lightbox is enabled
  • Global Color circular references crashing the Visual Builder
  • Desktop breakpoint zoom defaulting incorrectly when the widescreen breakpoint is enabled
  • Theme Builder Shop page rendering with WooCommerce 11.0

Pattern

If a user is on a Divi version older than the fix for their issue, the answer is "update Divi." For users who can't update (compatibility constraints, third-party module dependencies), provide a workaround appropriate to their version.

Error Messages Reference

ErrorCauseFix
"Property ignored"Low specificityAdd !important or increase specificity
"Unknown property"Typo or unsupportedCheck property name
"Expected RBRACE"Missing } or selectors in Module Element fieldUse Free-Form CSS for full rulesets
"Unexpected token"Syntax errorCheck semicolons, braces, quotes
Styles not applyingWrong CSS location or cacheCheck format (Code Module needs <style>, Theme Options does not). Clear cache.
Transform values corruptedDragging Scale handles corrupts calc()/var() valuesRe-enter values manually (fixed in 5.2)
Box shadow hover brokenEmpty string values overwrite presetsUpdate to 5.2, or set explicit hover shadow
Loop page CSS missingPagination cache conflictClear Static CSS; fixed in 5.2
Linter errors on valid nested CSSFalse positives on nested selectors without & in Free-Form CSSUpdate to 5.8 — the CSS is valid, the linter was wrong
Styles intermittently disappearingCache bugs in Dynamic CSS pipelineUpdate to 5.8/5.9 (multiple cache fixes); clear Static CSS

Compatibility Modes

Advisory Mode (Default)

  • Reports issues as warnings
  • Suggests fixes
  • Allows proceeding with warnings

Strict Mode

  • Reports issues as errors
  • Requires fixes before proceeding
  • Blocks incompatible CSS

Configure in .claude/divi5-toolkit.local.md:

yaml
validation_mode: advisory  # or "strict"

Reference Files

For complete details, see:

  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-compatibility/references/unit-conversions.md — CSS unit support, conversion tables, fluid responsive patterns
  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/SKILL.md — Critical CSS, Dynamic CSS, Inline Stylesheets, cache plugin compatibility
  • ${CLAUDE_PLUGIN_ROOT}/skills/divi5-performance/references/core-web-vitals.md — LCP/INP/CLS diagnostics with Divi-specific causes and fixes

Resources

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 Divi 5 Compatibility AI skill do?

Use this skill when validating CSS for Divi 5 / Divi 5.11 compatibility, checking unsupported features or units, troubleshooting Divi CSS that isn't applying, debugging plugin conflicts (WP Rocket, LiteSpeed, Wordfence, WooCommerce, Perfmatters), migrating from Divi 4 to Divi 5, understanding breakpoints, applying the 5.5 Aspect Ratio + Framing settings to prevent CLS, using the 5.3 pseudo-class editing modes (:checked / :focus / :active) instead of custom CSS, the 5.4 Sizing Variable Generator and Relative Colorscheme Generator, the 5.7 Gradient Variables and text effects, the 5.9 Variable...

Why use Divi 5 Compatibility on TypingMind?

Because you install it once and use it with any model. Divi 5 Compatibility 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 Divi 5 Compatibility in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/cjsimon2/Divi5-ToolKit/tree/main/plugins/divi5-toolkit/skills/divi5-compatibility. 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 Divi 5 Compatibility?

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 Divi 5 Compatibility?

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

Is the Divi 5 Compatibility AI skill free?

It is published on GitHub by cjsimon2. Check the repository for licensing terms. 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 👇