Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add respira-press/agent-skills-wordpress --skill html-to-breakdancegit clone --depth 1 https://github.com/respira-press/agent-skills-wordpressWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/respira-press/agent-skills-wordpress/html-to-breakdance)<a href="https://agentmods.dev/skills/respira-press/agent-skills-wordpress/html-to-breakdance"><img src="https://agentmods.dev/badge/skills/respira-press/agent-skills-wordpress/html-to-breakdance/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/respira-press/agent-skills-wordpress/html-to-breakdance"><img src="https://agentmods.dev/badge/skills/respira-press/agent-skills-wordpress/html-to-breakdance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00088 | $0.03569 |
| Opus 5 | $0.00044 | $0.01784 |
| Sonnet 5 | $0.00018 | $0.00714 |
| Haiku 4.5 | $0.00009 | $0.00357 |
Grade A, and why
html-to-breakdance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 269 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HTML to Breakdance
Version: 1.0.0 Updated: 2026-08-19 Category: migration Status: stable Requires: Respira for WordPress plugin 8.6.32+ + Breakdance active + MCP server
Description
Convert raw HTML/CSS, pasted from a design export, a Figma extraction, a landing page on
another platform, or your own prototype, into native Breakdance elements. Not a
screenshot-to-builder pass. This is a structural conversion into the EssentialElements\*
tree Breakdance's own renderer reads, with the site's Breakdance Variables reused instead of
inlined values.
Uses the existing respira_convert_html_to_builder MCP tool with a Breakdance-specific
workflow layered on top. The Breakdance layer matters because Breakdance stores nothing in
post_content: the page lives entirely in the _breakdance_data post meta, and three of the
five ways this conversion can go wrong are invisible unless you check the meta and the public
render separately.
What Breakdance actually stores
Read this before the workflow. Every step below depends on it.
| Fact | Detail |
|---|---|
| Storage key | _breakdance_data post meta, JSON. post_content stays empty |
| Envelope | tree_json_string (the tree as a stringified JSON) plus a tree sibling carrying root, _nextNodeId and status. Both the PHP tree gate and the editor's io-ts decoder need that exact shape |
| Node shape (native) | { id, data: { type, properties: { content, design } }, children: [...] } |
| Node shape (what you send) | { type, attributes: { content, design }, children: [] }. The attributes bucket is content + design, never settings |
| Element type naming | Fully qualified class names: EssentialElements\Section, EssentialElements\Heading, EssentialElements\Text, EssentialElements\RichText, EssentialElements\Button, EssentialElements\Image, EssentialElements\Video, EssentialElements\Divider, EssentialElements\Columns, EssentialElements\Column, EssentialElements\Div, EssentialElements\Grid, EssentialElements\CodeBlock |
| Content path | Values live at properties.content.content.<field>. content is the tab, content.content is the section inside it. A heading is content.content.text plus content.content.tags (h1..h6); a text node is content.content.text |
| Styling path | design.*, for example design.typography.align. Design values never go in the content bag |
| Children | Genuinely nested. Each node carries its own children array. No flat map, no parent refs (that is Bricks) |
| Node IDs | Numeric, auto-assigned by the adapter with a floor of 100 (root is id 1). _nextNodeId is kept in sync on write. Do not invent IDs |
| Render gate | _breakdance_dependency_cache, written by Breakdance's own save pipeline. Respira regenerates it best-effort via \Breakdance\Render\generateCacheForPost. Without it a perfectly valid tree renders nothing on the front end while the editor looks fine |
| Variables | Breakdance Variables (Color, Typography, Spacing) live in the breakdance_global_settings option, not in the page |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 269 lines · 88 tokens per session scan A ff464f090f2b
html-to-breakdance is a skill published in the GitHub repository respira-press/agent-skills-wordpress (42 stars, last pushed yesterday), licensed MIT. It adds 88 tokens to every session and 3,569 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
baoyu-markdown-to-html
Converts Markdown to styled HTML with WeChat-compatible themes. Supports code highlighting, math, Mermaid (rendered to PNG via headless Chrome), PlantUML, footnotes, alerts, infographics, and optional bottom citations for external links. Use when user asks for "markdown to html", "convert md to html", "md 转 html"…
liveview-patterns
Build LiveView: async data (assignasync), PubSub (check connected?), phx-change events, form components/modals/uploads, streams for lists, livepatch. Use when handling interactions, debugging events, or tracking Presence.
cesiumjs-camera
CesiumJS camera control - Camera, flyTo, lookAt, setView, ScreenSpaceCameraController, CameraEventAggregator, flight animation. Use when positioning the camera, creating flyTo animations, constraining user navigation, tracking entities, or converting between screen and world coordinates.
cesiumjs-custom-shader
CustomShader authoring — vertexShaderText and fragmentShaderText against VertexInput, FragmentInput, FeatureIds, Metadata, czmmodelMaterial. Use when reading EXTmeshfeatures or EXTstructuralmetadata property textures/tables, vertex displacement, or shading VoxelPrimitive.
cesiumjs-primitives
CesiumJS primitives and geometry - Primitive, GeometryInstance, Appearance, BufferPrimitive collections, GeoJsonPrimitive, Billboard/Label/PointPrimitive collections, built-in geometry shapes, ground primitives, classification. Use when rendering performance-critical static or vector geometry, loading GeoJSON without…
cesiumjs-time-properties
CesiumJS time, properties, and animation - Clock, JulianDate, TimeInterval, Property, SampledProperty, CallbackProperty, PathMode, interval and sampled path materials, interpolation, splines, CZML temporal data. Use when making entity attributes or path materials time-dynamic, configuring the simulation clock…