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

enonic-controller-generatorenonic 控制器发生器

Agent Skill

enonic-controller-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,746

周安装

75

GitHub Stars

公开资料未说明

下载量

612
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于在 Enonic XP 项目中自动生成页面或组件控制器,适配 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

  • 可识别项目结构并区分 Page 与 Part 类型,输出符合规范的 TypeScript 或 Java 控制器代码。
  • 依赖本地 Node.js 运行时扫描项目标记,确保生成的控制器与现有架构一致。
  • 使用前需验证项目根目录及构建配置,防止在未识别的仓库中误触发命令执行。
  • enonic-controller-generator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Enonic XP Controller Generator

Procedures

Step 1: Detect Enonic XP Project

  1. Execute node scripts/find-enonic-targets.mjs <workspace-root> to locate the project root and existing components.
  2. If the script exits with code 1 (no markers found), inform the user that no Enonic XP project was detected and stop.
  3. Record the sitePath from stdout — all generated files target directories relative to this path.

Step 2: Determine Component Type

  1. Identify which component type the user requires:

- Page — renders a full page, may declare one or more regions. - Part — a leaf component with a config form, no regions. - Layout — organizes other components via named regions. - Response processor — a site-level filter that modifies the HTTP response (e.g., inject scripts).

  1. If the request is ambiguous, ask the user to clarify the component type before proceeding.

Step 3: Gather Component Details

  1. Ask for or infer the following:

- Component name (kebab-case, e.g., hero-banner). - Display name (human-readable, e.g., Hero Banner). - Language — TypeScript (.ts, default) or JavaScript (.js). Read references/compatibility.md for guidance on TS vs JS differences. - Template engine — Thymeleaf (default) or Mustache. - For pages/layouts: region names (default: main for pages). - For parts: form fields (name, type, occurrences). - For response processors: page contribution target (bodyEnd, headEnd, etc.) and the content to inject.

Step 4: Generate the XML Descriptor

  1. Read references/controller-reference.md for the XML descriptor schema.
  2. Create the descriptor file:

- Page: <sitePath>/pages/<name>/<name>.xml - Part: <sitePath>/parts/<name>/<name>.xml - Layout: <sitePath>/layouts/<name>/<name>.xml

  1. Include <display-name>, <description>, <form> (with inputs for parts), and <regions> (for pages and layouts).

Step 5: Generate the Controller

  1. Read the appropriate template from assets/:

- assets/page-controller.template.ts for pages. - assets/part-controller.template.ts for parts. - assets/layout-controller.template.ts for layouts.

  1. Replace placeholders with the actual component name, config field mappings, region names, and library imports.
  2. If JavaScript was requested, convert the ES module syntax to CommonJS (require/exports).
  3. Read references/controller-reference.md for the Portal API surface (functions, import paths).
  4. Place the controller at:

- Page: <sitePath>/pages/<name>/<name>.ts (or .js) - Part: <sitePath>/parts/<name>/<name>.ts (or .js) - Layout: <sitePath>/layouts/<name>/<name>.ts (or .js) - Processor: <sitePath>/processors/<name>.js

Step 6: Generate the View (if applicable)

  1. For pages, parts, and layouts using Thymeleaf or Mustache, generate a paired .html view file in the same directory as the controller.
  2. For pages and layouts, include data-portal-region="<region-name>" attributes on container elements.
  3. For region iteration, use data-th-each="component: ${region.components}" with data-portal-component="${component.path}".

Step 7: Wire Response Processors (if applicable)

  1. If generating a response processor, check whether <sitePath>/site.xml exists.
  2. If it exists, add a <response-processor> entry inside the <processors> block.
  3. If it does not exist, create <sitePath>/site.xml with the processor declaration.

Step 8: Update build.gradle Dependencies

  1. Check the project's build.gradle for existing library includes.
  2. Add any missing dependencies:

- com.enonic.xp:lib-portal:${xpVersion} — required for all controllers. - com.enonic.xp:lib-content:${xpVersion} — if the controller uses content queries. - com.enonic.lib:lib-thymeleaf:2.0.0 — if using Thymeleaf rendering. - com.enonic.lib:lib-mustache:2.1.0 — if using Mustache rendering. - com.enonic.lib:lib-asset:${libVersion} — if the controller generates asset URLs (replaces the deprecated portalLib.assetUrl in XP 7.15+).

Step 9: Validate Output

  1. Verify the descriptor file name matches the parent directory name exactly.
  2. Verify the controller file name matches the descriptor directory name.
  3. Verify all region names in the controller/view match those declared in the XML descriptor.
  4. Read references/examples.md to cross-check the generated code against known-good patterns.

Error Handling

  • If scripts/find-enonic-targets.mjs exits with code 1 (NO_PROJECT), inform the user that no Enonic XP project was found and suggest creating the standard directory structure under src/main/resources/site/.
  • If a component with the same name already exists at the target path, warn the user and ask whether to overwrite or rename.
  • If the user reports a 404 on a part or missing regions, read references/troubleshooting.md to diagnose common causes.
  • If the generated controller fails at runtime with view resolution errors, verify the view file is co-located with the controller and the resolve() call uses the correct filename.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.34%
按下载量换算210

Claude

30.92%
按下载量换算189

Cursor

18.11%
按下载量换算111

Gemini CLI

10.45%
按下载量换算64

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills