Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

create-component创建组件

Agent Skill

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

总安装

3,740

周安装

159

GitHub Stars

55

下载量

1,310
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adobe/skills --skill create-component

简介

create-component 用于创建遵循 Adobe 最佳实践的 AEM 组件,支持完整组件结构和规范生成。

  • 它要求首先检查 .aem-skills-config.yaml 配置文件是否存在且已启用,否则将终止执行。
  • 适用于需要快速搭建符合企业标准的 AEM 前端组件的开发场景,减少重复配置工作。
  • 使用前请确认项目路径、包名配置正确,避免因配置错误导致生成文件结构异常。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

AEM Component Creation Skill

Creates complete AEM components following Adobe best practices.

Configuration Gate Check — Do This First

This configuration check needs to happen first because without it, the skill will use incorrect project paths and package names, causing every generated file to be wrong.

First tool call: Read .aem-skills-config.yaml in the project root (same level as pom.xml).

Check: Does the file exist and does it have configured: true?

StatusAction
File missing or configured: falseStop and display the error message below. Do not explore the codebase or proceed — the config values are needed for correct file paths and naming. Wait for the user to configure.
configured: trueRead project, package, and group values from the YAML file. Proceed with component creation.

If NOT configured, Display This Message and Stop:

Project configuration required!

Before creating components, configure your project settings in:
`.aem-skills-config.yaml` (in your project root, same level as pom.xml)

Open the file and update:
- project: Your AEM project name (e.g., 'mysite', 'wknd')
- package: Your Java package (e.g., 'com.mysite.core')
- group: Your component group (e.g., 'MySite Components')
- configured: true

After updating, ask me to create the component again.

Why you should not explore the codebase when unconfigured:

Doing any of the following before configuration is set will lead to incorrect assumptions and wasted effort:

  • Reading any other repository files
  • Listing directories to "understand the project"
  • Checking existing components for patterns
  • Looking at pom.xml, Java files, or folder structures
  • Inferring values from any source

The config file is the single source of truth for project values — skipping it leads to wrong paths and package names in every generated file.

No Hallucination Rule

Only create the exact fields the user specified — adding extra fields creates authoring confusion and maintenance burden, and renaming fields breaks content contracts.

Load reference for full rules: references/no-hallucination-rules.md

Workflow Overview

StepAction
0Configuration validation (do this first — see above)
1Extract & validate component name
1.5Component extension decision (if extending)
2Gather requirements & confirm dialog specification
2.3Figma design fetch (if Figma URL provided)
3Create all component files
3.11Dependency verification (required for servlets)
4Completion summary

Step 0: Configuration Validation

0.1 Read Configuration

  1. Read .aem-skills-config.yaml from the project root
  2. Check that configured: true
  3. Read project, package, and group values

0.2 Validate — Use Only the Config File

Do not infer project values from the file system, existing components, Java files, pom.xml, or prior knowledge. These sources may be outdated or inconsistent — .aem-skills-config.yaml is the single source of truth because the user explicitly sets it.

0.3 Load Conventions

  1. Read references/aem-conventions.md for file structure templates, naming conventions, and patterns

0.4 Project State Analysis (after configuration validated)

  1. Check Component Name Uniqueness - Look in /apps/[project]/components/
  2. Check Model Class Conflicts - Look in core/src/main/java/[package-path]/models/
  3. Analyze Existing Patterns - Review 1-2 recent components for style reference

Step 1: Extract & Validate Component Name

  • Parse component name from user's message (ask if not provided)
  • Normalize to lowercase kebab-case (e.g., My Component -> my-component)
  • Validate: starts with letter, only letters/numbers/hyphens, no consecutive hyphens

Step 1.5: Component Extension Decision

When user says "extend {component}":

Tier 1: Check Project Components First

  • Search /apps/{project}/components/{component}
  • If found -> Use as sling:resourceSuperType

Tier 2: Check Core Components

User SaysMaps To
imagecore/wcm/components/image/v3/image
teaser, cardcore/wcm/components/teaser/v2/teaser
text, richtextcore/wcm/components/text/v2/text
title, headingcore/wcm/components/title/v3/title
listcore/wcm/components/list/v4/list
button, ctacore/wcm/components/button/v2/button
navigation, navcore/wcm/components/navigation/v2/navigation
container, sectioncore/wcm/components/container/v1/container
accordioncore/wcm/components/accordion/v1/accordion
tabscore/wcm/components/tabs/v1/tabs
carouselcore/wcm/components/carousel/v1/carousel
embed, videocore/wcm/components/embed/v2/embed

Tier 3: Not Found - Ask user for clarification.

For extension patterns, load: references/extending-core-components.md

Step 1.6: Core Component Extension Requirements

Required when extending with "hide", "remove", "add custom field", or "override" (these operations need Sling Resource Merger patterns to work correctly):

Load reference: references/extending-core-components.md

User RequestAction
"Add custom fields"Create new tab OR add to existing
"Hide {tab}"Use sling:hideResource="{Boolean}true"
"Hide {field}"Use sling:hideResource="{Boolean}true"
"Override {field}"Use sling:hideProperties + new values

When extending Core Components:

  • Use @Self @Via(type = ResourceSuperType.class) for model delegation
  • Implement ComponentExporter interface
  • Add resourceType to @Model annotation
  • Use sling:hideResource in dialog for inherited tabs/fields
Note: If the parent component is a project component (not a Core Component), use direct Java class extension (extends ParentModel) instead of the delegation pattern. The @Self @Via(type = ResourceSuperType.class) pattern is only for Core Components. Load references/extending-core-components.md for the decision table.

Step 2: Gather Requirements

2.1 Parse Dialog Specification

Echo back EXACTLY what you understood before creating:

Dialog Specification Confirmed:
I will create exactly {N} fields:
| # | Field Label | Field Type | Property Name |
|---|-------------|------------|---------------|
| 1 | {label1}    | {type1}    | {name1}       |
No additional fields will be added.
Is this correct?

2.2 Mockup Image Handling

  • Both mockup AND spec provided: Dialog spec takes precedence. Mockup for HTML/CSS only.
  • Only mockup provided: Propose fields and ASK for confirmation.

2.3 Figma Design Input

Load: references/figma-design-rules.md

When user provides a Figma URL (figma.com/design/..., figma.com/make/..., or figma.com/board/...):

  1. Parse the URL to extract fileKey and nodeId (see references/figma-design-rules.md Rule 1)
  • Convert - to : in the node-id query parameter
  • Use branchKey as fileKey for branch URLs
  1. Call get_design_context via the plugin-figma-figma MCP server (see Rule 2):{"server": "plugin-figma-figma", "toolName": "get_design_context", "arguments": {"nodeId": "<extracted-node-id>", "fileKey": "<extracted-file-key>", "clientLanguages": "html,css,javascript", "clientFrameworks": "htl"}}
  2. Extract design tokens from the response — colors, fonts, sizes, spacing, layout (see Rules 3-4)
  3. Use the Figma output for HTL structure, CSS styling, and JS behavior — NOT for dialog fields

Precedence when BOTH dialog spec AND Figma URL are provided:

  • Dialog specification → determines dialog fields (absolute precedence, no hallucination)
  • Figma design → determines HTML structure, CSS styling, JS behavior only

When ONLY Figma URL is provided (no dialog spec):

  • Analyze the design and PROPOSE dialog fields to the user
  • ASK for confirmation before proceeding

Figma response handling:

  • The response is React+Tailwind — treat as a REFERENCE, not production code
  • Convert JSX to semantic HTL with BEM classes (see Rule 5)
  • Extract all CSS values to the component clientlib (see Rule 6)
  • Create JS only if interactivity is implied (see Rule 7)
  • Do not hardcode Figma temporary image URLs — they expire and will break in production (see Rule 8)

2.4 Dynamic Content Requirements

User IndicatesServlet Required?
External API integrationYes (GET)
Dynamic data loadingYes (GET)
Form submissionYes (POST)
Search/filterYes (GET)
Static dialog contentNo

Step 3: Create Component Files

Create ALL files in this order:

3.1 Component Definition

Path: ui.apps/src/main/content/jcr_root/apps/[project]/components/{component-name}/.content.xml

Load: references/aem-conventions.md

3.2 Component Dialog

Path: ui.apps/.../components/{component-name}/_cq_dialog/.content.xml

Load: references/dialog-patterns.md

For extended components: Load references/extending-core-components.md — Sling Resource Merger is required here because dialog inheritance only works through the merger; without it, parent dialog nodes won't be resolved.

3.2.1 Image Field Handling

When a user specifies an image or photo field:

  • Default approach: Embed the Core Image component via data-sly-resource — do NOT create a fileupload dialog field with manual <img> rendering.
  • Fileupload is only for non-image files (PDFs, documents, etc.). Only use cq/gui/components/authoring/dialog/fileupload when the user explicitly asks for a non-image file upload.
  • Load references/htl-patterns.md (Image Handling section) for the correct embedding pattern.

3.3 HTL Template

Path: ui.apps/.../components/{component-name}/{component-name}.html

Load: references/htl-patterns.mdIf Figma URL provided, ALSO load: references/figma-design-rules.md (Rules 5, 8) — Convert JSX structure to semantic HTL with BEM classes. Replace static text with Sling Model expressions. Use the Figma screenshot as visual truth for element hierarchy.

i18n check: If the component has static display text (labels, button text, placeholder strings), use HTL i18n expressions: ${'Label Text' @ i18n}. Do not handle static text translation in the Sling Model — keep it in HTL where translation is automatic.

3.4 Sling Model

Path: core/src/main/java/[package-path]/models/{ComponentName}Model.java

Load: references/model-patterns.md, references/java-standards.md

For extensions: Load references/extending-core-components.md

Delegation Pattern (for Core Component extensions):

@Model(adaptables = SlingHttpServletRequest.class,
       adapters = {CustomModel.class, ComponentExporter.class},
       resourceType = CustomModel.RESOURCE_TYPE)
@Exporter(name = ExporterConstants.SLING_MODEL_EXPORTER_NAME,
          extensions = ExporterConstants.SLING_MODEL_EXTENSION)
public class CustomModel implements ComponentExporter {
    @Self @Via(type = ResourceSuperType.class)
    private com.adobe.cq.wcm.core.components.models.List coreList;
    // Use FQN for core interfaces to avoid import collision
}

3.5 Child Item Model - If Multifield

Path: core/src/main/java/[package-path]/models/{ItemName}.java

3.6 Unit Test

Path: core/src/test/java/[package-path]/models/{ComponentName}ModelTest.java

Load: references/test-patterns.md

3.7 Component Clientlib — Create for Every Component

Path: ui.apps/.../clientlibs/clientlib-{component-name}/

Load: references/clientlib-patterns.mdIf Figma URL provided, ALSO load: references/figma-design-rules.md (Rules 6, 7) — Extract exact colors, fonts, sizes, spacing, border-radius from the Figma response. Place all CSS into css/{component-name}.css using BEM naming. Create JS in js/{component-name}.js only if the design implies interactivity. Verify pixel-perfect fidelity against the Figma screenshot.

3.8 Dialog Clientlib - If Conditional Logic

Path: ui.apps/.../clientlibs/clientlib-{component-name}-dialog/

Load: references/clientlib-patterns.md (Dialog JavaScript Pattern section)

3.9 Sling Servlet - If Dynamic Content

Path: core/src/main/java/[package-path]/servlets/{ComponentName}Servlet.java

Load: references/sling-servlet-standards.md

3.10 Servlet Unit Test

Path: core/src/test/java/[package-path]/servlets/{ComponentName}ServletTest.java

3.11 Dependency Verification — Required for Servlets

Before completing, verify dependencies in core/pom.xml:

  • Do not hardcode versions — check parent pom.xml for version properties instead, since hardcoded versions drift out of sync and cause build conflicts
  • Most common APIs included in aem-sdk-api (GSON, Jackson, Commons)
  • Use provided scope for AEM runtime libraries

Step 4: Completion Summary

Component '{component-name}' created successfully!

## Files Created
- ui.apps/.../components/{component-name}/.content.xml
- ui.apps/.../components/{component-name}/_cq_dialog/.content.xml
- ui.apps/.../components/{component-name}/{component-name}.html
- core/.../models/{ComponentName}Model.java
- core/.../models/{ComponentName}ModelTest.java
- ui.apps/.../clientlibs/clientlib-{component-name}/
[+ servlet files if applicable]

## Dialog Fields (Exact Match)
{table matching specification}

Would you like me to add any additional fields or build the project?

Quick Reference: Field Type Mapping

User SaysGranite Resource Type
Textfieldgranite/ui/components/coral/foundation/form/textfield
Textareagranite/ui/components/coral/foundation/form/textarea
Richtext, RTEcq/gui/components/authoring/dialog/richtext
Pathfield, Pathgranite/ui/components/coral/foundation/form/pathfield
Image, PhotoEmbed Core Image component (see references/htl-patterns.md Image Handling section). Do not use fileupload for image rendering.
Fileupload, File Uploadcq/gui/components/authoring/dialog/fileupload (for non-image files: PDFs, documents)
Multifieldgranite/ui/components/coral/foundation/form/multifield
Checkboxgranite/ui/components/coral/foundation/form/checkbox
Select, Dropdowngranite/ui/components/coral/foundation/form/select
Numberfieldgranite/ui/components/coral/foundation/form/numberfield
Datepickergranite/ui/components/coral/foundation/form/datepicker

For complete mappings: assets/field-type-mappings.md

Reference Files

Load on-demand based on what you're creating:

CreatingLoad Reference
Any component.aem-skills-config.yaml (project root, load first — see Configuration Gate Check), then references/aem-conventions.md
Dialog XMLreferences/dialog-patterns.md
HTL Templatereferences/htl-patterns.md
Sling Modelreferences/model-patterns.md, references/java-standards.md
Unit Testsreferences/test-patterns.md
Clientlibsreferences/clientlib-patterns.md
Extending Core Componentreferences/extending-core-components.md
Extending Core Component — worked example & checklistsreferences/extending-core-components-example.md (load when you need a complete worked example of extending a Core Component, unit testing patterns, or the implementation checklist)
Sling Servletreferences/sling-servlet-standards.md
Core Component patternsreferences/core-components.md
No Hallucination rulesreferences/no-hallucination-rules.md
Figma design integrationreferences/figma-design-rules.md
Troubleshootingreferences/troubleshooting.md
Examplesreferences/examples.md

If encountering issues during or after component creation, consult references/troubleshooting.md for common problems and solutions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.35%
按下载量换算463

Claude

28.18%
按下载量换算369

Cursor

19.03%
按下载量换算249

Gemini CLI

9.32%
按下载量换算122

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills