Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

enonic-content-type-generatorenonic 内容类型生成器

Agent Skill

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

总安装

1,854

周安装

75

GitHub Stars

公开资料未说明

下载量

582
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/webmaxru/enonic-agent-skills --skill enonic-content-type-generator

简介

用于辅助 Enonic XP 内容类型的生成与管理,适合在 Codex、Claude、Cursor、Gemini CLI 中快速创建符合规范的内容模型。

  • 支持自动检测项目结构、收集命名与字段要求,并生成标准化的内容类型定义文件。
  • 通过命令行工具集成,需配合 Node.js 环境使用,适用于已有 Enonic 项目的自动化开发流程。
  • 安装前需确认项目路径和权限,避免在非目标目录或只读环境中执行生成操作。
  • enonic-content-type-generator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Enonic XP Content Type Generator

Procedures

Step 1: Detect Enonic XP Project

  1. Execute node scripts/find-enonic-targets.mjs [workspaceRoot] to locate Enonic XP project roots.
  2. If the script returns an empty array, warn that no Enonic XP project markers were found and ask for the target directory.
  3. Store the detected project root for use in subsequent steps.

Step 2: Gather Requirements

  1. Identify the content type name from the request. The name must be lowercase-hyphenated (e.g., blog-post).
  2. Identify the display name — a human-readable label (e.g., Blog Post).
  3. Determine the super-type. Default to base:structured unless the request specifies a folder (base:folder) or another built-in type.
  4. List all requested fields with their input types. Read references/content-type-reference.md to map natural-language field descriptions to the correct Enonic XP input type and configuration.
  5. Identify any item sets (repeatable grouped fields), option sets (single-select or multi-select choices), or mixin references.
  6. If the request mentions a mixin, determine whether to generate the mixin file or reference an existing one.
  7. If the request mentions x-data, determine whether to generate the x-data file or reference an existing one.

Step 3: Generate the Content Type XML

  1. Read assets/content-type.template.xml to obtain the starter template.
  2. Replace DISPLAY_NAME with the display name from Step 2.
  3. Replace DESCRIPTION with a short description or remove the element if none was provided.
  4. Set the <super-type> element to the value determined in Step 2.
  5. Populate the <form> element with the identified inputs, item sets, option sets, field sets, and mixin references.
  6. For each input:

- Set the name attribute using camelCase. - Set the type attribute to the exact Enonic XP input type name (case-sensitive). - Add <label>, <occurrences>, <help-text>, <default>, and <config> as required.

  1. For ComboBox and RadioButton inputs, include all options inside <config>.
  2. For ContentSelector, ImageSelector, and MediaSelector inputs, include <config> with allowContentType, allowPath, treeMode, and hideToggleIcon as specified.
  3. For TextLine and TextArea, add <config> with max-length, show-counter, or regexp if validation constraints are requested.
  4. For Long and Double, add <config> with min and max if range constraints are requested.
  5. For DateTime, add <config> with <timezone>true</timezone> if timezone-aware storage is requested.
  6. If examples are needed for reference, read references/examples.md.

Step 4: Write the File

  1. Construct the target path: [projectRoot]/src/main/resources/site/content-types/[name]/[name].xml
  2. Create the directory if it does not exist.
  3. Write the generated XML to the file.
  4. If a mixin was generated, write it to: [projectRoot]/src/main/resources/site/mixins/[name]/[name].xml
  5. If x-data was generated, write it to: [projectRoot]/src/main/resources/site/x-data/[name]/[name].xml

Step 5: Validate Output

  1. Verify the generated XML is well-formed.
  2. Confirm every <input> has a valid type attribute by cross-referencing references/content-type-reference.md.
  3. Confirm all name attributes are unique within their nesting level.
  4. Confirm <occurrences> values are logically consistent (minimum <= maximum, or maximum = 0 for unlimited).
  5. If the request asks about super-types, input types, or schema structure without requesting file generation, answer the question using references/content-type-reference.md without creating files.

Error Handling

  • If scripts/find-enonic-targets.mjs exits with a non-zero code, report the stderr message and ask for the project root path manually.
  • If the requested input type does not match any known Enonic XP input type, read references/content-type-reference.md and suggest the closest match. Do not invent input type names.
  • If XML validation fails, read references/troubleshooting.md to diagnose and correct the error, then regenerate the file.
  • If a mixin reference cannot be resolved, confirm the mixin file path exists before writing the content type.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.15%
按下载量换算216

Claude

31.52%
按下载量换算183

Cursor

20.24%
按下载量换算118

Gemini CLI

8.36%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills