Skip to main content
Databasemelodic-software

model-content

Design content type schema with fields, validation, and relationships. Use for content modeling workshops or quick schema design.

Stars
74
Source
melodic-software/claude-code-plugins
Updated
2026-04-07
Slug
melodic-software--claude-code-plugins--model-content
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/melodic-software/claude-code-plugins/HEAD/plugins/content-management-system/skills/model-content/SKILL.md -o .claude/skills/model-content.md

Drops the SKILL.md into .claude/skills/model-content.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Model Content Command

Design a content type schema with parts, fields, and validation rules.

Usage

/cms:model-content Article --mode guided
/cms:model-content Product --mode quick --format csharp
/cms:model-content Event --mode full

Modes

  • full: Complete workshop with stakeholder questions
  • quick: Fast schema generation with sensible defaults
  • guided: Interactive step-by-step field definition

Workflow

Step 1: Parse Arguments

Extract content type name and options from the command.

Step 2: Execute Based on Mode

Full Mode:

  • Invoke cms-facilitator content-modeling agent for workshop
  • Gather requirements through stakeholder questions
  • Generate comprehensive schema with rationale

Quick Mode:

  • Invoke content-type-modeling skill
  • Generate schema with common patterns for the content type
  • Use industry-standard fields

Guided Mode:

  • Use AskUserQuestion for field-by-field definition
  • Ask about each field's type, validation, and purpose
  • Build schema incrementally

Step 3: Generate Output

Generate content type definition in requested format:

  • yaml: Human-readable specification
  • json: API-compatible schema
  • csharp: EF Core entity model

Step 4: Validate Schema

  • Verify required fields are present
  • Check field type consistency
  • Validate relationship references
  • Ensure naming conventions followed

Output Example

content_type:
  name: Article
  display_name: Article
  description: Blog articles and news posts
  stereotype: Document

  parts:
    - name: TitlePart
      built_in: true
    - name: AutoroutePart
      built_in: true
    - name: ArticlePart
      custom: true

  fields:
    - name: Body
      type: HtmlField
      required: true
      editor: wysiwyg

    - name: Excerpt
      type: TextField
      required: false
      hint: Short summary for listings

    - name: FeaturedImage
      type: MediaField
      required: false
      allowed_types: [image/*]

    - name: Categories
      type: TaxonomyField
      taxonomy: categories
      required: true
      min: 1

    - name: Tags
      type: TaxonomyField
      taxonomy: tags
      required: false

    - name: Author
      type: ContentPickerField
      content_types: [Author]
      required: true

  settings:
    creatable: true
    listable: true
    draftable: true
    versionable: true

Related Skills

  • content-type-modeling - Content type patterns
  • dynamic-schema-design - EF Core JSON columns
  • content-relationships - Field relationships