Token导航 LogoToken导航TokenDH.com
开发规范external-servicegithub未标认证来源可访问许可证需确认审计通过

best-practices最佳实践

Agent Skill

best-practices 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,378

周安装

138

GitHub Stars

55

下载量

1,082
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adobe/skills --skill best-practices

简介

用于记录 AEM as a Cloud Service 开发中的经验教训、错误修正和能力改进点。

  • 包含 Java/OSGi 和 HTL 模板的最佳实践参考模块,支持绿色场和遗留系统维护。
  • 可与 migration 技能联动实现 BPA/CAM 编排,也可单独用于查阅模式参考文档。
  • 安装命令:npx skills add https://github.com/adobe/skills --skill best-practices。
  • 注意:建议定期更新本地缓存以同步最新实践,避免直接修改原始参考文件。

SKILL.md

AEM as a Cloud Service — Best Practices

Platform guidance for AEM as a Cloud Service: Java/OSGi (what to use, what to avoid, how to refactor legacy patterns) and HTL (component .html templates, Cloud SDK HTL lint).

This skill holds the pattern transformation modules (references/*.md). They ship with the aem-cloud-service plugin; use this skill without the migration skill for greenfield or maintenance work that only needs these references. Use migration when you need BPA/CAM orchestration on top.

Quick pick: Open the Pattern Reference Modules table below → jump to the matching references/<file>.md → read it fully before editing. For Java: Felix SCR, resolvers, or logging, use Java / OSGi baseline links first when those appear in the same change set.

When to Use This Skill

Use this skill when you need to:

  • Apply AEM as a Cloud Service constraints to Java/OSGi code (new or existing)
  • Refactor legacy Java patterns into supported APIs (same modules migration uses)
  • Follow consistent rules across schedulers, replication, JCR observation listeners (eventListener), OSGi event handlers (eventHandler), and DAM assets
  • Fix HTL (Sightly) issues from the AEM Cloud SDK build, especially data-sly-test: redundant constant value comparison
  • Read step-by-step transformation and validation checklists for a specific pattern

For BPA/CAM orchestration (collections, CSV, MCP project selection), use the migration skill (skills/aem/cloud-service/skills/migration/).

Pattern Reference Modules

Each supported pattern has a dedicated module under references/ relative to this SKILL.md.

Pattern / topicBPA Pattern IDModule fileStatus
Schedulerschedulerreferences/scheduler.mdReady
Resource Change ListenerresourceChangeListenerreferences/resource-change-listener.mdReady
Replicationreplicationreferences/replication.mdReady
Event listener (JCR observation)eventListenerreferences/event-migration.mdReady
Event handler (OSGi Event Admin)eventHandlerreferences/event-migration.mdReady
Asset ManagerassetApireferences/asset-manager.mdReady
Felix SCR → OSGi DSreferences/scr-to-osgi-ds.mdReady
ResourceResolver + SLF4Jreferences/resource-resolver-logging.mdReady
HTL: data-sly-test redundant constant— (HTL lint)references/data-sly-test-redundant-constant.mdReady
*(Prerequisites hub)*references/aem-cloud-service-pattern-prerequisites.md

Event listener vs event handler (not the same): eventListener is JCR observation — the JCR API for repository change callbacks (javax.jcr.observation.EventListener, onEvent). eventHandler is OSGi Event Admin — whiteboard-style OSGi events (org.osgi.service.event.EventHandler, handleEvent). Both migrate via references/event-migration.md (Path A vs Path B). resourceChangeListener is separate: Sling ResourceChangeListener, module references/resource-change-listener.md.

Before changing code for a pattern: read the module for that pattern in full. Modules include classification criteria, ordered transformation steps, and validation checklists.

Java / OSGi baseline (same skill; no separate installables)

SCR→DS and ResourceResolver/logging are reference modules under references/ — not separate skills. Read them when relevant instead of re-embedding the same steps inside each pattern file.

Critical Rules (All Patterns)

These rules apply to every pattern module. Violation means incorrect migration or unsafe Cloud Service code.

  • READ THE PATTERN MODULE FIRST — never transform code without reading the module
  • READ scr-to-osgi-ds.md and resource-resolver-logging.md when SCR, ResourceResolver, or logging are in scope (pattern modules link via the prerequisites hub; do not duplicate long guides inline)
  • DO preserve environment-specific guards (e.g. isAuthor() run mode checks)
  • DO NOT change business logic inside methods (Java) or logical show/hide intent (HTL) unless the module explicitly allows it
  • DO NOT rename classes unless the pattern module explicitly says to
  • DO NOT invent values — extract from existing code
  • DO NOT edit files outside the scope agreed with the user (e.g. only BPA targets or paths they named)
  • DO keep searches, discovery, and edits for the customer's AEM sources inside the IDE workspace root(s) currently open; DO NOT grep or walk directories outside that boundary to find Java unless the user explicitly points there

Manual Pattern Hints (Classification)

When no BPA list exists, scan imports and types to pick a module:

Look forPattern
org.apache.sling.commons.scheduler.Scheduler or scheduler.schedule( with Runnablescheduler
implements ResourceChangeListenerresourceChangeListener
com.day.cq.replication.Replicator or org.apache.sling.replication.*replication
JCR observation: javax.jcr.observation.EventListener, onEvent(EventIterator), javax.jcr.observation.*eventListener
OSGi Event Admin: org.osgi.service.event.EventHandler, substantive handleEvent (resolver/session/node work)eventHandler
com.day.cq.dam.api.AssetManager create/remove asset APIsassetApi
org.apache.felix.scr.annotationsread references/scr-to-osgi-ds.md (often combined with a BPA pattern)
getAdministrativeResourceResolver, System.out / printStackTraceread references/resource-resolver-logging.md
HTL: build warning data-sly-test: redundant constant value comparison, or .html under ui.apps / jcr_root with bad data-sly-testread references/data-sly-test-redundant-constant.md

If multiple patterns match, ask which to fix first.

Relationship to Migration

The migration skill defines one-pattern-per-session workflow, BPA/CAM/MCP flows, and user messaging. It delegates all detailed transformation steps to this skill's references/ modules. It uses a {best-practices} repo-root path alias to this folder (see its SKILL.md). Keep platform truth here; keep orchestration there.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.03%
按下载量换算357

Claude

32.28%
按下载量换算349

Cursor

18.99%
按下载量换算205

Gemini CLI

8.56%
按下载量换算93

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills