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

modeling-content建模内容

Agent Skill

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

总安装

20,335

周安装

675

GitHub Stars

40

下载量

9,161
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/adobe/helix-website --skill 'Modeling Content'

简介

用于辅助文档、README 和 Markdown 内容的整理与改写。

  • 适合提炼结构、补齐章节、统一术语或检查链接有效性。
  • 通过 npx skills add 命令从指定仓库安装,需保留项目已有事实和路径。
  • 涉及对外文案时应控制语气,避免过度营销或夸大能力。
  • 不要把未确认的信息写成确定结论,确保内容准确性。

SKILL.md

Content Modeling for AEM Edge Delivery Blocks

This skill guides you through designing content models for AEM Edge Delivery Services blocks. A content model defines the HTML table structure that authors work with when creating content in their CMS (Google Docs, SharePoint, etc.).

Related Skills

  • content-driven-development: This skill is typically invoked FROM the CDD skill during Phase 1 (Content Model Design)
  • building-blocks: After content modeling is complete, this skill handles implementation
  • block-collection-and-party: Use to find similar blocks and their content models for reference

When to Use This Skill

Use this skill when:

  • Creating new blocks and need to design the author-facing content structure
  • Modifying existing blocks in ways that change what authors work with
  • Reviewing content models for conformance to best practices
  • Migrating or refactoring content models

Note: This skill is usually invoked automatically by the content-driven-development skill at Step 1.2. If you're not already in a CDD workflow and are creating a new block, consider invoking the CDD skill first.

Core Principles

A good content model is:

  • Semantic: Structure carries meaning on its own without decoration
  • Predictable: Authors, developers, and agents all know what to expect
  • Reusable: Works across authoring surfaces and projects

Prerequisites

Before designing a content model, ensure you understand:

  1. Block Purpose: What is this block meant to accomplish?
  2. Content Requirements: What content elements are needed (images, text, links, etc.)?
  3. User Experience: How should this block appear and function on the page?

The Content Modeling Process

Step 1: Identify the Canonical Model Type(s)

AEM Edge Delivery has 4 canonical block models. While these cover the most common cases, sometimes the best approach is to support multiple models for the same block to accommodate different authoring workflows and content complexity.

Review the descriptions in resources/canonical-models.md and identify which model(s) fit best:

  • Standalone: Best for distinct visual or narrative elements (Hero, Blockquote)
  • Collection: Ideal for repeating semi-structured content (Cards, Carousel)
  • Configuration: Use ONLY for API-driven or dynamic content where config controls display (Blog Listing, Search Results)
  • Auto-Blocked: Good for simplifying authoring of complex structures and block nesting (Tabs, YouTube Embed)

Consider these questions as a starting point (note: content modeling is an art, not a science - use these as guidelines, not strict rules):

  • Is this a unique, one-off element? → Often Standalone
  • Is this a repeating list of similar items? → Often Collection
  • Does this pull data from an API or require behavior configuration? → Likely Configuration
  • Does this block require nesting other blocks, or use a complex structure that authors could more easily create as sections or default content that gets transformed into the block? → Consider Auto-Blocked

Important: Consider if multiple models should be supported. For example:

  • Simple cases might work best as Collection
  • Complex cases (with nested blocks) might need Auto-Blocked
  • Both can be equally valid - let decoration code handle the variations

See resources/advanced-scenarios.md for patterns on supporting multiple models for one block.

Step 2: Design the Table Structure

Design your table structure following these key guidelines:

Key Guidelines:

  • Limit to maximum 4 cells per row - group like elements into cells
  • Apply semantic formatting (headings, bold, italic) to define meaning
  • Prefer block variants over config cells
  • Infer from context and use smart defaults to limit what authors must input
  • Follow Postel's Law: "be conservative in what you do, be liberal in what you accept from others"

- Be flexible about the input structure authors provide. For example, in a hero block, all elements could be in one cell, split across 2 cells in one row, or in 2 separate rows - any of these can work with proper decoration code (it's just query selectors) - Don't be overly prescriptive about structure when flexibility makes sense - The goal is to make authoring easier, not to enforce rigid structures for developer convenience

For each canonical model:

Standalone blocks:

  • Use rows or columns as needed for the unique structure
  • Be flexible about how authors organize content - your decoration code can handle variations
  • Use semantic formatting to identify elements (bold for headings, etc.) rather than rigid cell positions
  • Example: Hero block where image and text could be in separate rows, separate columns, or even combined - decoration code uses query selectors to find what it needs

Collection blocks:

  • Each row represents an item
  • Columns define the parts of each item
  • Keep columns consistent across all rows
  • Example: Cards with columns for image, heading, description

Configuration blocks:

  • Two-column key/value pairs for settings or parameters
  • Keys in left column, values in right column
  • Keep configuration minimal - only true behavioral settings
  • Example: Blog Listing with keys like limit | 10, sort | date-desc, tags | technology,news

Auto-Blocked:

  • Design for the simplest possible authoring experience
  • Often uses sections and section metadata to provide context
  • The pattern detection should feel "magical" to authors
  • Example: Tabs block that auto-blocks from a section containing multiple H2 headings with content, using section metadata for styling options

Step 3: Validate Against Best Practices

Use this checklist to validate your content model:

  • Uses the appropriate canonical model type
  • Maximum 4 cells per row
  • Semantic formatting defines meaning (not just visual styling)
  • Model is predictable (clear what goes where)
  • Model is reusable (works across different authoring tools)
  • Smart defaults minimize required author input
  • Avoids configuration cells unless truly needed for dynamic content
  • Cell names/purposes are clear and meaningful
  • Consider edge cases (empty cells, optional content, etc.)

Common Anti-Patterns to Avoid:

  • ❌ Too many columns (>4 per row)
  • ❌ Using Configuration model when Standalone or Collection would work
  • ❌ Non-semantic cell content (e.g., "column1", "column2")
  • ❌ Requiring authors to input data that could be inferred or defaulted
  • ❌ Complex nested structures that confuse authors
  • ❌ Models that only work in one specific authoring tool

Step 4: Document the Content Model

Provide the content model back to the calling skill (or user) in this format:

## Content Model: [Block Name]

### Block Type
[Standalone | Collection | Configuration | Auto-Blocked]

### Table Structure

| Block Name |
|------------|
| [Cell description] |
| [Cell description] | [Cell description] |

### How It Works
[Explain what authors create and how the table structure works. Describe the purpose of each row/column and any semantic formatting used.]

### Key Points
- [Important authoring guidelines]
- [Examples of semantic formatting (e.g., "bold text indicates the heading")]
- [Any flexibility in structure (e.g., "content can be in one cell or split across two")]
- [Common variants if applicable]

Important: This skill focuses on designing the content model. The calling skill (content-driven-development or building-blocks) will handle what to do with it next, such as creating test content or implementing the block.

Resources

  • resources/canonical-models.md - The 4 canonical model types with detailed examples and best practices
  • resources/advanced-scenarios.md - Supporting multiple models, progressive enhancement, and complex patterns

Example Workflow

Scenario: User needs to create a hero block with an image, heading, and call-to-action

Process:

  1. Identify Model Type:

- This is likely a Standalone block (distinct visual element, typically appears once) - Could also work as a simple Collection if multiple heroes are needed, but Standalone is more common

  1. Design Structure:

- Start with a flexible approach that uses semantic formatting - Authors could structure this multiple ways - decoration code will handle variations

  1. Validate:

- ✅ Standalone model (appropriate for hero) - ✅ Semantic formatting will identify elements (H1 for heading, links for CTA) - ✅ Flexible structure - can work with different layouts - ✅ Reusable (works in any authoring tool) - ✅ Under 4 cells per row

  1. Document and Return to Calling Skill: ` ## Content Model: Hero ### Block Type Standalone ### Table Structure | Hero | |------| | [Image] | | [Heading, description, and CTA] | ### How It Works Authors create a hero block using a simple table. The structure is flexible: - Image can be in its own row or column - Text content (heading, description, CTA) can be together or separated - Decoration code uses semantic formatting to identify elements: - H1 or bold text → heading - Regular paragraphs → description - Links → call-to-action ### Key Points - Use H1 or bold formatting for the main heading - Structure is flexible - all content in one row, split across two rows, or in columns all work - Image should be high-resolution (minimum 2000px wide for full-width heroes) - Variants available: Hero (Dark), Hero (Centered), etc. ` *Skill returns this content model to CDD or building-blocks skill for next steps.*

Integration with Other Skills

Called from content-driven-development:

  • CDD invokes this skill at Step 1.2 when new content models are needed
  • After completing this skill, return to CDD to continue with content creation

Calls to other skills:

  • May reference block-collection-and-party to find similar blocks for pattern inspiration
  • Completed models are used by building-blocks during implementation

Key Takeaways

  1. Choose the right canonical model first - this drives everything else
  2. Keep it simple - authors should understand the model intuitively
  3. Use semantic formatting - let the structure carry meaning
  4. Validate ruthlessly - check against all best practices before finalizing
  5. Document clearly - both the structure and the reasoning behind it

Content models are the foundation of author experience. Invest time here to create intuitive, maintainable structures that serve authors well.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.78%
按下载量换算3,095

Claude

28.47%
按下载量换算2,608

Cursor

18.65%
按下载量换算1,709

Gemini CLI

10.3%
按下载量换算944

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills