Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

elementor-content元素含量

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

931

周安装

40

GitHub Stars

公开资料未说明

下载量

326
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:elementor-content(元素含量)
来源仓库:https://github.com/beeltec/skills
仓库路径:skills/elementor-content
安装命令:
npx skills add https://github.com/beeltec/skills --skill elementor-content
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/beeltec/skills --skill elementor-content

简介

elementor-content 辅助管理 Elementor 页面构建器的内容结构与 JSON 数据。

  • 适用于创建、修改 Elementor 模板、批量更新内容或导入导出页面布局。
  • 通过 npx skills add 命令从 GitHub 安装,需确认仓库权限与网络访问能力。
  • 使用前应核实维护状态及是否涉及文件读写、命令执行等敏感操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Elementor Content

Directly read, create, modify, and restructure Elementor page builder content by working with the underlying JSON data — either in exported .json template files or in the WordPress database via WP-CLI.

When to Use

  • Creating or editing Elementor page/template content
  • Modifying widget settings (text, images, styles, links)
  • Restructuring page layouts (moving sections, adding containers)
  • Bulk-updating content across multiple Elementor pages
  • Importing/exporting Elementor templates
  • Building new Elementor pages from scratch
  • Creating Theme Builder templates (header, footer, single, archive) programmatically

Operational Modes

Mode 1: JSON Template Files

Work directly with .json files exported from Elementor (Library → Export Template). Read, edit, and write the file. Import back via Elementor UI or WP-CLI.

Mode 2: WP-CLI Database Operations

Read/write the _elementor_data post meta key in WordPress. Requires WP-CLI access and a running WordPress installation. See references/wp-cli-operations.md.

Core Workflow

  1. Identify mode — JSON file on disk, or live WordPress database?
  2. Read the content — parse the JSON file or fetch via wp post meta get
  3. Understand the tree — Elementor content is a nested array of elements (see references/element-structure.md)
  4. Locate target — find the element to modify by walking the tree; match on widgetType, settings content, or id
  5. Modify — change settings, add/remove/reorder elements
  6. Validate — run the validation checklist below before writing
  7. Write — save the JSON file or update via wp post meta update
  8. Flush cache — if using WP-CLI, run wp elementor flush-css to regenerate stylesheets

Reference Guides

TopicFileLoad when...
JSON structure & hierarchyreferences/element-structure.mdYou need to understand the data format, nesting rules, or settings patterns
Widget types & settingsreferences/widget-catalog.mdYou need to create a widget or modify widget-specific settings
WP-CLI operationsreferences/wp-cli-operations.mdYou're working with a live WordPress database (not a JSON file)
Theme Builder templatesreferences/theme-builder-templates.mdYou're creating header, footer, single, or archive templates programmatically

Quick Reference: Common Operations

Change a heading: Find the element with "widgetType": "heading", update settings.title.

Add a button to a container: Create a new element with "elType": "widget", "widgetType": "button", generate a unique id, set settings.text and settings.link, and append to the parent container's elements array.

Restructure layout: Move elements between parent containers by cutting from one elements array and pasting into another. Ensure no element appears in two places.

Create a new page: Build the full JSON tree: outer container(s) → inner containers/widgets. Wrap in template format if exporting, or write directly to _elementor_data via WP-CLI.

Create a Theme Builder template: Requires post meta (_elementor_template_type, _elementor_conditions), taxonomy term (elementor_library_type), AND registration in the elementor_pro_theme_builder_conditions option. See references/theme-builder-templates.md for the full checklist — missing any step will silently fail.

Change styling: Modify the relevant settings key on the element. Responsive variants use _tablet and _mobile suffixes. Dimensions use {top, right, bottom, left, unit, isLinked} objects.

Element ID Generation

Every element requires a unique id — an 8-character lowercase hexadecimal string (e.g., "3f2a1b7c"). Generate randomly; ensure no duplicates within the document.

Constraints

  • MUST preserve valid JSON at all times
  • MUST keep every element's id unique within the document
  • MUST maintain correct nesting: containers hold containers or widgets; widgets have "elements": [] (empty)
  • MUST include elType on every element
  • MUST include widgetType on every widget element
  • MUST NOT place widgets directly inside the root array — they must be inside a container (or legacy section → column)
  • MUST NOT leave orphaned references (e.g., removing a container but leaving its children elsewhere)
  • MUST flush CSS cache after database writes (wp elementor flush-css)

Validation Checklist

Before writing the modified content:

  • Valid JSON (parseable without errors)
  • All id values are unique 8-char hex strings
  • Every element has elType set ("container", "widget", "section", or "column")
  • Every widget has widgetType set to a valid type
  • Widgets have "elements": [] (empty array, never omitted)
  • No widgets at root level — all wrapped in containers
  • Settings values use correct format (dimensions, URLs, media objects)
  • Template wrapper (if applicable) has type, version, title, content

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.64%
按下载量换算119

Claude

30.24%
按下载量换算99

Cursor

19.68%
按下载量换算64

Gemini CLI

9.3%
按下载量换算30

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills