build-oxygen6-page

build-oxygen6-page is a skill for Claude Code from respira-press/agent-skills-wordpress. It costs 72 tokens per session (1,245 once invoked), scanned A, original, MIT.

A building guide for pages, headers, footers, and templates in Oxygen 6, a WordPress visual site builder also known as Jenga. It explains how to create native editable Oxygen elements instead of placing the whole page in one raw HTML block.

In plain words
What is it for?
Use it when creating or rebuilding an Oxygen 6 page or site, especially when converting another WordPress builder or correcting an earlier broken build.
Why use it?
Oxygen 6 has a different structure from Oxygen Classic, so ordinary Oxygen instructions can produce blank pages, unknown elements, or content that is hard to edit.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the respira-wordpress-skills plugin — 50 skills shipped together

Good fit Use it when creating or rebuilding an Oxygen 6 page or site, especially when converting another WordPress builder or correcting an earlier broken build.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/respira-press/agent-skills-wordpress/build-oxygen6-page
Install

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.

Any agent
npx skills add respira-press/agent-skills-wordpress --skill build-oxygen6-page
Clone the repo
git clone --depth 1 https://github.com/respira-press/agent-skills-wordpress

Made for: Claude Code.

Or install respira-wordpress-skills, the plugin that ships this one along with the rest of its 50 skills.

Wrote 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.

agentmods badge for build-oxygen6-page

README.md
[![agentmods](https://agentmods.dev/badge/skills/respira-press/agent-skills-wordpress/build-oxygen6-page/github.svg)](https://agentmods.dev/skills/respira-press/agent-skills-wordpress/build-oxygen6-page)
Your own site
<a href="https://agentmods.dev/skills/respira-press/agent-skills-wordpress/build-oxygen6-page"><img src="https://agentmods.dev/badge/skills/respira-press/agent-skills-wordpress/build-oxygen6-page/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.

agentmods 80×15 button for build-oxygen6-page

Your own site · 80×15
<a href="https://agentmods.dev/skills/respira-press/agent-skills-wordpress/build-oxygen6-page"><img src="https://agentmods.dev/badge/skills/respira-press/agent-skills-wordpress/build-oxygen6-page.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,245 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.01245
Opus 5 $0.00036 $0.00622
Sonnet 5 $0.00014 $0.00249
Haiku 4.5 $0.00007 $0.00125

Measured 11d ago against content hash b231dbf6c42b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

build-oxygen6-page 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 11d 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.

skills/build-oxygen6-page/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Build an Oxygen 6 Page

Version: 1.0.0 Updated: 2026-06-16 Category: workflow Status: stable Requires: Respira for WordPress plugin (7.4.10+) + MCP server, on a site running Oxygen 6 (Jenga) Telemetry endpoint: https://www.respira.press/api/skills/track-usage


Description

A focused recipe for building or rebuilding pages on Oxygen 6 (codename Jenga, the Breakdance-based engine), the right way: as native, editable Oxygen elements, not a wall of raw HTML. Oxygen 6 is a different builder from Oxygen Classic, and its structure (separate header, footer, and template post types, a Template Content Area element, an _oxygen_data node tree) trips up agents that have not been told how it works. This skill hands you that structure up front so you stop rediscovering it every run and stop falling back to a single HTML code block.

Run this when you are about to build or rebuild a page, or a whole site, on an Oxygen 6 install.


When to Use

  • Building a new page on an Oxygen 6 site.
  • Rebuilding an existing site into Oxygen 6 (for example from a Beaver Builder or Elementor source).
  • A previous attempt produced a blank page, a single HTML/code block, or "Unknown element" / "This content cannot be displayed".
  • Editing the site header, footer, or a template.

Do not use this for Oxygen Classic (the ct_* shortcode builder); that is a different engine.


How Oxygen 6 is structured (read this first)

  • Pages: a page's layout is a node tree stored in the _oxygen_data post meta. You never hand-write that JSON. You pass simplified type + settings to build_page / inject_builder_content and Respira maps them onto the real native classes (OxygenElements\*, and EssentialElements\* when the "Breakdance Elements for Oxygen" add-on is active).
  • Header / Footer / Templates are separate post types: oxygen_header, oxygen_footer, oxygen_template. Edit the existing header and footer posts. Do not delete them and re-inline a header and footer into every page.
  • Templates need a Template Content Area: an oxygen_template must contain a Template Content Area element (OxygenElements\TemplateContentArea) at the spot where the page body should render. Do not use a Post Content element on Oxygen 6 — it errors and the page cannot be edited. This is the single most common Oxygen 6 mistake.

Read the full file on GitHub · 72 lines

Changes

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.

  1. 11d ago First seen · 72 lines · 72 tokens per session scan A b231dbf6c42b

Subscribe to this mod's changes

build-oxygen6-page is a skill published in the GitHub repository respira-press/agent-skills-wordpress (43 stars, last pushed 2d ago), licensed MIT. It adds 72 tokens to every session and 1,245 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.

Related

Other skills, from other repositories

brand-visual-language

A brand's visual tone — playful or serious, rounded or angular — should be consistent across all UI elements. Shape language in typography, border-radius, and iconography communicates personality before a single word is read. Use when establishing a design system, choosing icon libraries, setting border-radius tokens…

dembrandt/dembrandt-skills · 68 tokens

data-display-and-selection

Complex data deserves multiple view modes — grid, list, table — chosen by the user based on their task. Row and item selection should use large hit areas (the whole row or card, not just a checkbox). Selected state is communicated through a subtle background colour shift. Mass actions appear when items are selected.…

dembrandt/dembrandt-skills · 85 tokens

generate-ui-from-brand

Pipeline skill — turns a URL or DESIGN.md into a concrete UI structure with decisions already made. Extracts live design tokens, normalizes them into a semantic system, applies UX principles, and outputs an actionable UI spec. Use when building UI for an existing brand from scratch, auditing a design system, or…

dembrandt/dembrandt-skills · 72 tokens

information-architecture

In large applications, information architecture determines whether users can find, understand, and act on data. Naming matters. The UI should mirror the data model and signal how data can be transformed. Dangerous or irreversible changes always require a confirm dialog. Use when designing navigation, naming entities…

dembrandt/dembrandt-skills · 71 tokens

micro-interactions

Micro-interactions are small, purposeful animations and responses that reward the user and make the interface feel alive — an animated icon, a satisfying toggle, a subtle reveal. Borrowed from the natural world, they add delight without distraction. Use when designing interactive components, success states, toggles…

dembrandt/dembrandt-skills · 70 tokens

modal-and-overlay-patterns

Overlays — modals, drawers, bottom sheets, popovers — interrupt or augment the main flow. Each type has a different scope, blocking level, and appropriate use case. Use when designing dialogs, confirmation prompts, side panels, action sheets, or any UI element that appears above the main content layer.

dembrandt/dembrandt-skills · 68 tokens