cms-collection-setup
npx skills add https://github.com/webflow/webflow-skills --skill cms-collection-setup
Agent 安装分布
Skill 文档
CMS Collection Setup
Create a new CMS collection with custom fields, relationships, and proper configuration.
Important Note
ALWAYS use Webflow MCP tools for all operations:
- Use Webflow MCP’s
webflow_guide_toolto get best practices before starting - Use Webflow MCP’s
data_sites_toolwith actionlist_sitesto identify available sites - Use Webflow MCP’s
data_sites_toolwith actionget_siteto retrieve site details and plan limits - Use Webflow MCP’s
data_cms_toolwith actionget_collection_listto check for naming conflicts - Use Webflow MCP’s
data_cms_toolwith actioncreate_collectionto create the collection - Use Webflow MCP’s
data_cms_toolwith actioncreate_collection_static_fieldto create static fields - Use Webflow MCP’s
data_cms_toolwith actioncreate_collection_option_fieldto create option fields - Use Webflow MCP’s
data_cms_toolwith actioncreate_collection_reference_fieldto create reference/multi-reference fields - Use Webflow MCP’s
data_cms_toolwith actionget_collection_detailsto verify collection was created correctly - DO NOT use any other tools or methods for Webflow operations
- All tool calls must include the required
contextparameter (15-25 words, third-person perspective)
Instructions
Phase 1: Site Selection & Discovery
- Get site information: Use Webflow MCP’s
data_sites_toolwith actionlist_sitesto identify target site - Confirm site: Ask user to select site if multiple available
- Check plan limits: Use Webflow MCP’s
data_sites_toolwith actionget_siteto verify collection limits - List existing collections: Use Webflow MCP’s
data_cms_toolwith actionget_collection_listto check for conflicts - Validate naming: Ensure new collection name doesn’t conflict with existing
Phase 2: Requirements Gathering
- Get collection details: Ask user for:
- Collection display name (e.g., “Blog Posts”)
- Singular name (e.g., “Blog Post”)
- Optional: Custom slug (default: auto-generated from display name)
- Get field definitions: For each field, gather:
- Field name (e.g., “Author Name”, “Publish Date”)
- Field type (Text, Rich Text, Image, Option, Reference, etc.)
- Required vs optional
- Any validation rules or help text
- Identify relationships: Determine if collection needs:
- Reference fields (one-to-many relationships)
- Multi-reference fields (many-to-many relationships)
- Option fields (controlled vocabulary)
Phase 3: Schema Validation & Planning
- Validate field types: Check all field types are supported
- Check field limits: Ensure within Webflow limits:
- Max fields per collection: varies by plan
- Max 5 multi-reference fields per collection
- Plan creation order: Organize fields by dependency:
- Create collections in order if references exist
- Create referenced collections first
- Create option fields before reference fields
- Generate preview: Show complete schema with all fields
Phase 4: User Approval
- Show complete preview: Display:
- Collection name and slug
- All fields with types and properties
- Any relationships to other collections
- Plan limit verification
- Validate schema: Check for common issues:
- Missing required fields (name, slug always required)
- Invalid field types
- Reference to non-existent collections
- Exceeding plan limits
- Request confirmation: Wait for explicit “create” approval
Phase 5: Collection Creation
- Create collection: Use Webflow MCP’s
data_cms_toolwith actioncreate_collectionwith:- Display name
- Singular name
- Optional slug
- Capture collection ID: Save for field creation
- Show progress: Report collection created successfully
Phase 6: Field Creation
- Create fields in order: For each field:
- Use appropriate creation tool based on type
- Static fields:
data_cms_toolwith actioncreate_collection_static_field - Option fields:
data_cms_toolwith actioncreate_collection_option_field - Reference fields:
data_cms_toolwith actioncreate_collection_reference_field
- Set field properties:
- Display name
- Required flag
- Help text (if provided)
- Validation rules (if applicable)
- Show progress: Report each field created
- Handle errors: If field creation fails, report and continue
Phase 7: Verification & Reporting
- Verify collection: Use Webflow MCP’s
data_cms_toolwith actionget_collection_detailsto retrieve full schema - Confirm all fields: Check that all requested fields were created
- Generate report: Show:
- Collection ID
- Collection name and slug
- All fields created with IDs
- Any failures or warnings
- Provide next steps: Suggest:
- Use bulk-cms-update to add initial items
- Create collection pages in Designer
- Set up relationships if applicable
Field Type Reference
Static Field Types
PlainText – Short text (max 256 chars) or long text
- Use for: Titles, names, descriptions, excerpts
- Properties: maxLength validation (256 for short)
- Example: “Title”, “Author Name”, “Excerpt”
RichText – Formatted text with HTML
- Use for: Blog content, bios, articles, long descriptions
- Properties: No length limit
- Example: “Post Content”, “Bio”, “Description”
Email – Email address
- Use for: Contact emails, author emails
- Properties: Email format validation
- Example: “Contact Email”, “Author Email”
Phone – Phone number
- Use for: Contact numbers
- Properties: E.164 format
- Example: “Phone Number”, “Mobile”
Link – External URL or internal link
- Use for: Website links, social media, external resources
- Properties: URL validation
- Example: “Website”, “LinkedIn Profile”
Number – Numeric values
- Use for: Prices, ratings, counts, order numbers
- Properties: Integer or decimal
- Example: “Price”, “Rating”, “Order”
Image – Single image
- Use for: Featured images, photos, thumbnails
- Properties: Max 4MB per image
- Example: “Featured Image”, “Photo”, “Thumbnail”
MultiImage – Multiple images (up to 25)
- Use for: Galleries, product photos
- Properties: Max 25 images, 4MB each
- Example: “Gallery”, “Product Photos”
File – File upload
- Use for: PDFs, documents, downloads
- Properties: Max 4MB per file
- Example: “Resume PDF”, “Brochure”, “Manual”
Video – Video embed (YouTube/Vimeo)
- Use for: Video content
- Properties: Embed URL
- Example: “Tutorial Video”, “Demo”
DateTime – Date and/or time
- Use for: Publish dates, event dates, deadlines
- Properties: ISO 8601 format
- Example: “Publish Date”, “Event Date”
Switch – Boolean (true/false)
- Use for: Featured flags, visibility toggles
- Properties: Boolean value
- Example: “Featured”, “Published”, “Active”
Color – Color value
- Use for: Theme colors, accents, brand colors
- Properties: Hex format
- Example: “Brand Color”, “Accent Color”
Option Field Type
Option – Single choice from predefined list
- Use for: Status, category, type, priority
- Properties: List of option names
- Example: “Status” (Draft, Review, Published)
- Creation: Use
data_cms_toolwith actioncreate_collection_option_fieldwith options array
Example:
{
"type": "Option",
"displayName": "Status",
"metadata": {
"options": [
{"name": "Draft"},
{"name": "In Review"},
{"name": "Published"}
]
}
}
Reference Field Types
Reference – Link to one item in another collection (one-to-many)
- Use for: Author â Post, Category â Post, Brand â Product
- Properties: Collection ID of referenced collection
- Example: “Author” (reference to Authors collection)
- Creation: Use
data_cms_toolwith actioncreate_collection_reference_fieldwith collectionId
MultiReference – Link to multiple items in another collection (many-to-many)
- Use for: Post â Tags, Product â Features, Project â Technologies
- Properties: Collection ID of referenced collection
- Limit: Max 5 multi-reference fields per collection
- Example: “Tags” (reference to Tags collection)
- Creation: Use
data_cms_toolwith actioncreate_collection_reference_fieldwith collectionId
Reference Field Example:
{
"type": "Reference",
"displayName": "Author",
"metadata": {
"collectionId": "abc123..."
}
}
Multi-Reference Field Example:
{
"type": "MultiReference",
"displayName": "Tags",
"metadata": {
"collectionId": "xyz789..."
}
}
Examples
Example 1: Simple Blog Collection
User prompt:
Create a Blog Posts collection with title, content, author, and publish date
Step 1: Discovery
ð CMS Collection Setup
Available sites:
1. Company Website
2. Blog Site
Which site? (1/2)
Step 2: After User Selects Site
ð Existing Collections on Company Website:
Currently: 0 collections
Plan limit: 20 collections (CMS Plan)
â
You have capacity to create new collections.
---
ð Collection Requirements
Display Name: Blog Posts
Singular Name: Blog Post
Slug: blog-posts (auto-generated)
Fields to create:
1. Title - Text (required)
2. Content - Rich Text (required)
3. Author - Text
4. Publish Date - Date/Time (required)
Is this correct? (yes/no)
If you want to add/modify fields, describe the changes.
Step 3: Preview
ð Preview: Create "Blog Posts" Collection
Collection:
âââ Display Name: Blog Posts
âââ Singular Name: Blog Post
âââ Slug: blog-posts
âââ Site: Company Website
Fields (6 total):
âââ name (PlainText, required) â Auto-created
âââ slug (PlainText, required) â Auto-created
âââ title (PlainText, required)
âââ content (RichText, required)
âââ author (PlainText)
âââ publish-date (DateTime, required)
â
Validation Passed:
- Collection name available
- Within plan limits (0/20 collections)
- All field types valid
- No dependency issues
â ï¸ Type "create" to proceed.
Step 4: Creation
ð Creating Collection...
â
Collection created: Blog Posts (ID: 64f1a2b3...)
Adding fields...
âââ â
title (PlainText)
âââ â
content (RichText)
âââ â
author (PlainText)
âââ â
publish-date (DateTime)
Progress: ââââââââââââââââââââ 100% (4/4 fields)
ð Collection Setup Complete!
Collection: Blog Posts
ID: 64f1a2b3...
Fields: 6 (2 auto-created + 4 custom)
---
ð¡ Next Steps:
1. Use bulk-cms-update to add initial blog posts
2. Create collection template page in Designer
3. Set up collection list page for blog index
4. Configure SEO settings for dynamic pages
Example 2: Collection with Relationships
User prompt:
Create a Products collection with name, price, description, images, brand, and tags
Step 1: After Initial Gathering
ð Collection Analysis
I see you want:
- Brand: This should be a reference field
- Tags: This should be a multi-reference field
This requires creating additional collections first:
1. Brands collection
2. Tags collection
Then we can create Products with references to them.
Would you like me to:
A) Create all three collections (Brands, Tags, Products)
B) Just create Products (you'll add relationships later)
C) Modify the requirements
Your choice? (A/B/C)
Step 2: After User Selects “A”
ð Preview: Create 3 Collections
---
### 1. Brands Collection
Fields (4 total):
âââ name (PlainText, required) â Auto
âââ slug (PlainText, required) â Auto
âââ logo (Image)
âââ description (PlainText)
---
### 2. Tags Collection
Fields (3 total):
âââ name (PlainText, required) â Auto
âââ slug (PlainText, required) â Auto
âââ color (Color)
---
### 3. Products Collection
Fields (9 total):
âââ name (PlainText, required) â Auto
âââ slug (PlainText, required) â Auto
âââ price (Number, required)
âââ description (RichText)
âââ images (MultiImage)
âââ brand (Reference â Brands)
âââ tags (MultiReference â Tags)
---
Creation Order:
1. Brands (no dependencies)
2. Tags (no dependencies)
3. Products (references 1 & 2)
â
Validation:
- All collections available
- Within plan limits (0/20 collections)
- Multi-reference limit: 1/5 â
- All dependencies resolvable
â ï¸ Type "create" to proceed with all 3 collections.
Step 3: Creation
ð Creating Collections...
[1/3] Creating Brands...
â
Brands collection created (ID: abc123...)
âââ â
logo (Image)
âââ â
description (PlainText)
[2/3] Creating Tags...
â
Tags collection created (ID: def456...)
âââ â
color (Color)
[3/3] Creating Products...
â
Products collection created (ID: ghi789...)
âââ â
price (Number)
âââ â
description (RichText)
âââ â
images (MultiImage)
âââ â
brand (Reference â Brands)
âââ â
tags (MultiReference â Tags)
Progress: ââââââââââââââââââââ 100% (3/3 collections)
ð All Collections Created!
Summary:
âââ Brands (ID: abc123...)
âââ Tags (ID: def456...)
âââ Products (ID: ghi789...)
---
ð¡ Next Steps:
1. Add brand items first (use bulk-cms-update)
2. Add tag items (use bulk-cms-update)
3. Then add products with brand/tag references
4. Create collection pages in Designer
Example 3: Team Members with Option Field
User prompt:
Create a Team Members collection with name, role (dropdown: Designer, Developer, Manager), bio, photo, email
Step 1: Preview
ð Preview: Create "Team Members" Collection
Collection:
âââ Display Name: Team Members
âââ Singular Name: Team Member
âââ Slug: team-members
Fields (7 total):
âââ name (PlainText, required) â Auto
âââ slug (PlainText, required) â Auto
âââ role (Option, required)
â Options:
â âââ Designer
â âââ Developer
â âââ Manager
âââ bio (RichText)
âââ photo (Image)
âââ email (Email)
â
Validation Passed
â ï¸ Type "create" to proceed.
Step 2: Creation
ð Creating Collection...
â
Collection created: Team Members (ID: jkl012...)
Adding fields...
âââ â
role (Option: 3 options)
âââ â
bio (RichText)
âââ â
photo (Image)
âââ â
email (Email)
Progress: ââââââââââââââââââââ 100% (4/4 fields)
ð Collection Setup Complete!
Collection: Team Members
Fields: 6 (2 auto + 4 custom)
Field Details:
- role: Option field with 3 choices
⢠Designer
⢠Developer
⢠Manager
---
ð¡ Next Steps:
1. Add team member items
2. Create team page in Designer
3. Consider adding:
- LinkedIn profile (Link field)
- Years of experience (Number field)
- Specializations (MultiReference to Skills collection)
Example 4: Complex E-commerce Setup
User prompt:
Create an e-commerce setup with Products, Categories, Brands, and Features
Step 1: Requirements Clarification
ð E-commerce Collection Planning
I'll create 4 collections:
1. **Categories** - Product categories
2. **Brands** - Product brands
3. **Features** - Product features (e.g., "Waterproof", "Wireless")
4. **Products** - Main product catalog
Relationships:
- Product â Category (Reference)
- Product â Brand (Reference)
- Product â Features (MultiReference)
Fields per collection:
**Categories:**
- Name, Slug (auto)
- Description
- Parent Category (self-reference for hierarchy)
- Icon
**Brands:**
- Name, Slug (auto)
- Logo
- Description
**Features:**
- Name, Slug (auto)
- Icon
- Description
**Products:**
- Name, Slug (auto)
- Price
- Sale Price
- Description
- Images (MultiImage)
- Category (Reference â Categories)
- Brand (Reference â Brands)
- Features (MultiReference â Features)
- In Stock (Switch)
- SKU (PlainText)
Is this structure good? (yes/modify/cancel)
Step 2: Preview (User says “yes”)
ð Preview: Create E-commerce Collections
---
### Collection 1: Categories
Fields (5 total):
âââ name (PlainText, required)
âââ slug (PlainText, required)
âââ description (PlainText)
âââ parent-category (Reference â Categories) â Self-reference
âââ icon (Image)
---
### Collection 2: Brands
Fields (4 total):
âââ name (PlainText, required)
âââ slug (PlainText, required)
âââ logo (Image)
âââ description (PlainText)
---
### Collection 3: Features
Fields (4 total):
âââ name (PlainText, required)
âââ slug (PlainText, required)
âââ icon (Image)
âââ description (PlainText)
---
### Collection 4: Products
Fields (12 total):
âââ name (PlainText, required)
âââ slug (PlainText, required)
âââ price (Number, required)
âââ sale-price (Number)
âââ description (RichText)
âââ images (MultiImage)
âââ category (Reference â Categories)
âââ brand (Reference â Brands)
âââ features (MultiReference â Features)
âââ in-stock (Switch)
âââ sku (PlainText)
---
Creation Order:
1. Categories (self-reference OK)
2. Brands (no dependencies)
3. Features (no dependencies)
4. Products (references 1, 2, 3)
â
Validation:
- Within plan limits (0/20 collections)
- Multi-reference count: 1/5 â
- All field types valid
- Self-reference supported
â ï¸ Type "create" to proceed with all 4 collections.
Step 3: Creation with Progress
ð Creating E-commerce Collections...
[1/4] Creating Categories...
â
Categories created (ID: aaa111...)
Progress: ââââââââââââââââââââ 25%
[2/4] Creating Brands...
â
Brands created (ID: bbb222...)
Progress: ââââââââââââââââââââ 50%
[3/4] Creating Features...
â
Features created (ID: ccc333...)
Progress: ââââââââââââââââââââ 75%
[4/4] Creating Products...
â
Products created (ID: ddd444...)
Progress: ââââââââââââââââââââ 100%
---
ð E-commerce Setup Complete!
Collections Created (4):
âââ Categories (ID: aaa111..., 5 fields)
âââ Brands (ID: bbb222..., 4 fields)
âââ Features (ID: ccc333..., 4 fields)
âââ Products (ID: ddd444..., 12 fields)
Relationships Configured:
- Products â Categories (one-to-many)
- Products â Brands (one-to-many)
- Products â Features (many-to-many)
- Categories â Parent Category (self-reference)
---
ð¡ Recommended Content Order:
1. Add categories first (including parent relationships)
2. Add brands
3. Add features
4. Finally add products (with all references)
ð¡ Next Steps:
1. Use bulk-cms-update for initial data
2. Create product template page
3. Create product listing page with filters
4. Set up category landing pages
5. Configure e-commerce integration
Guidelines
Phase 1: Discovery Best Practices
Site Selection:
- Always use
sites_listto get available sites - Never assume site ID
- Verify user has correct site selected
Plan Limit Checking:
Check limits before creation:
- Starter: 1 collection, 50 items
- Basic: 2 collections, 200 items
- CMS: 20 collections, 2,000 items
- Business: 40 collections, 10,000 items
- Enterprise: Custom
Warn user if approaching limits.
Naming Conflict Prevention:
- Check existing collection names
- Suggest alternative names if conflict
- Validate slug availability
Phase 2: Requirements Gathering Best Practices
Display Name vs Singular Name:
Display Name: Plural form shown in CMS
Singular Name: Singular form for individual items
Examples:
- Display: "Blog Posts" â Singular: "Blog Post"
- Display: "Team Members" â Singular: "Team Member"
- Display: "Products" â Singular: "Product"
- Display: "Categories" â Singular: "Category"
Field Naming Conventions:
â
Good names:
- author-name (descriptive, hyphenated)
- publish-date (clear purpose)
- featured-image (specifies which)
- main-content (explains use)
â Bad names:
- text1 (meaningless)
- field (too generic)
- data (unclear)
- img (which image?)
Detecting Relationships:
If user says:
"... with author" â Likely reference field
"... with tags" â Likely multi-reference field
"... with category" â Likely reference field
"... with related products" â Likely multi-reference field
Ask clarifying questions:
- Is [author] the same across items? â Reference
- Can items have multiple [tags]? â Multi-reference
- Do you have a [Categories] collection? â Check existence
Phase 3: Schema Validation Best Practices
Field Type Validation:
Common field type mappings:
User says... â Field type:
"title", "name" â PlainText
"description", "summary" â PlainText (long)
"content", "bio", "article" â RichText
"photo", "image", "thumbnail" â Image
"gallery", "photos" â MultiImage
"document", "PDF", "file" â File
"video" â Video
"link", "URL", "website" â Link
"email" â Email
"phone", "mobile" â Phone
"price", "cost", "amount" â Number
"date", "published", "deadline" â DateTime
"featured", "active", "published" â Switch
"status", "type", "category" â Option (if fixed choices)
"color", "theme" â Color
Multi-Reference Limit Check:
Count multi-reference fields requested:
If > 5:
â ï¸ Warning: Collection Limit Exceeded
Webflow allows max 5 multi-reference fields per collection.
You requested: 7 multi-reference fields
Options:
1. Choose 5 most important relationships
2. Convert some to reference fields (one-to-many)
3. Create bridging collections
4. Use option fields for simple categorization
Which would you prefer?
Dependency Resolution:
For reference fields:
1. Check if referenced collection exists
2. If not, add to creation queue
3. Create in correct order
Example:
Products needs:
- Categories collection (create first)
- Brands collection (create first)
Then create Products
Phase 4: Preview Best Practices
Complete Preview Format:
ð Preview: Create "[Collection Name]"
Collection Details:
âââ Display Name: [Name]
âââ Singular Name: [Singular]
âââ Slug: [slug]
âââ Site: [Site Name]
Fields ([X] total):
âââ name (PlainText, required) â Auto-created
âââ slug (PlainText, required) â Auto-created
âââ [field-1] ([Type], [required/optional])
âââ [field-2] ([Type], [required/optional])
â [Additional info if Option or Reference]
âââ [field-n] ([Type], [required/optional])
Relationships:
âââ [field] â [Collection] (Reference)
âââ [field] â [Collection] (MultiReference)
â
Validation Results:
- Collection name available: Yes
- Within plan limits: X/Y collections
- Multi-reference count: X/5
- All field types valid: Yes
- Dependencies resolved: Yes
â ï¸ Type "create" to proceed.
Validation Checks:
Before showing preview:
1. â
Collection name available
2. â
Within plan collection limit
3. â
All field types supported
4. â
Multi-reference limit ⤠5
5. â
Referenced collections exist or queued
6. â
No circular dependencies
7. â
Field names follow conventions
Phase 5: Creation Best Practices
Collection Creation:
Required fields:
- displayName (required)
- singularName (required)
- slug (optional, auto-generated if omitted)
Always include both names for clarity:
â
{"displayName": "Blog Posts", "singularName": "Blog Post"}
â {"displayName": "Blog Posts"} (missing singular)
Error Handling:
If collection creation fails:
â Collection Creation Failed
Error: [Error message from API]
Common causes:
- Collection name already exists
- Invalid characters in name/slug
- Plan limit reached
- API authentication issue
Would you like to:
1. Try a different collection name
2. Check existing collections
3. Upgrade plan
4. Cancel operation
Phase 6: Field Creation Best Practices
Field Creation Order:
Create fields in this order:
1. Static fields (Text, Rich Text, Number, etc.)
2. Option fields (with options defined)
3. Reference fields (after referenced collections exist)
For each field:
- Set displayName
- Set isRequired flag
- Add helpText if provided by user
- Set validation rules if applicable
Field Creation Tools:
Field Type â Tool to use:
PlainText, RichText, Email, Phone, Link, Number,
Image, MultiImage, File, Video, DateTime, Switch, Color
â collection_fields_create_static
Option
â collection_fields_create_option
(requires metadata.options array)
Reference, MultiReference
â collection_fields_create_reference
(requires metadata.collectionId)
Progress Reporting:
For each field created:
â
[field-name] ([FieldType])
If field fails:
â [field-name] - [Error message]
Continue with remaining fields even if one fails.
Report all failures at end.
Option Field Creation:
{
"type": "Option",
"displayName": "Status",
"isRequired": false,
"metadata": {
"options": [
{"name": "Draft"},
{"name": "Published"},
{"name": "Archived"}
]
}
}
Notes:
- Options have name property
- Options cannot have ID (auto-generated)
- Minimum 2 options required
- Maximum: unlimited
Reference Field Creation:
{
"type": "Reference",
"displayName": "Author",
"isRequired": true,
"metadata": {
"collectionId": "abc123..."
}
}
For MultiReference:
{
"type": "MultiReference",
"displayName": "Tags",
"metadata": {
"collectionId": "def456..."
}
}
Notes:
- Must provide collectionId of referenced collection
- Referenced collection must already exist
- Max 5 MultiReference fields per collection
Phase 7: Verification Best Practices
Post-Creation Verification:
After creating collection and fields:
1. Call data_cms_tool with action get_collection_details with collection ID
2. Verify all fields present
3. Check field properties match request
4. Confirm relationships configured correctly
Final Report Format:
ð Collection Setup Complete!
Collection: [Name]
ID: [collection-id]
Slug: [slug]
Fields Created ([X]):
âââ name (PlainText, required) â Auto
âââ slug (PlainText, required) â Auto
âââ [field-1] ([Type])
âââ [field-2] ([Type])
âââ [field-n] ([Type])
[If relationships exist]
Relationships:
âââ [field] â [Collection]
âââ [field] â [Collection]
[If any failures]
â ï¸ Failed Fields ([Y]):
âââ [field]: [error]
âââ [field]: [error]
---
ð¡ Next Steps:
[Relevant suggestions based on collection type]
Next Steps Suggestions:
For any collection:
1. Use bulk-cms-update to add initial items
2. Create collection template page in Designer
3. Create collection list page
4. Configure SEO settings
For collections with relationships:
5. Create referenced collections first
6. Add items in dependency order
7. Test relationship displays
For e-commerce:
5. Set up payment integration
6. Configure inventory management
7. Create checkout flow
Phase 8: Error Handling
Common Errors:
1. Collection Name Conflict:
â Collection Already Exists
A collection named "Blog Posts" already exists on this site.
Existing collection:
- Name: Blog Posts
- ID: xyz789...
- Created: 2025-12-15
Would you like to:
1. Choose a different name
2. View existing collection
3. Add fields to existing collection
4. Cancel
2. Plan Limit Reached:
â Plan Limit Reached
Cannot create collection. You've reached your plan limit.
Current: 20/20 collections (CMS Plan)
Options:
1. Upgrade to Business Plan (40 collections)
2. Delete unused collections
3. Contact Webflow support
Would you like me to show your existing collections?
3. Invalid Field Type:
â Invalid Field Type
Field type "dropdown" is not supported by Webflow.
Did you mean:
- "Option" - Single choice from list
- "Reference" - Link to another collection
- "MultiReference" - Link to multiple items
Which would you like to use?
4. Referenced Collection Not Found:
â Referenced Collection Not Found
Cannot create reference field to "Authors" collection.
Issue: "Authors" collection doesn't exist yet.
Solutions:
1. Create "Authors" collection first
2. Remove reference field for now
3. Let me create both collections in order
Your choice? (1/2/3)
5. Multi-Reference Limit Exceeded:
â Too Many Multi-Reference Fields
You requested 6 multi-reference fields.
Webflow limit: 5 per collection
Requested:
1. Tags
2. Categories
3. Related Products
4. Features
5. Certifications
6. Compatible Products â Exceeds limit
Choose 5 to keep, or convert one to Reference field.
Phase 9: Advanced Scenarios
Self-Referencing Collections:
Example: Categories with parent categories
Collection: Categories
Fields:
âââ name (PlainText, required)
âââ slug (PlainText, required)
âââ parent-category (Reference â Categories)
âââ level (Number) - 1, 2, 3 for hierarchy
Implementation:
{
"type": "Reference",
"displayName": "Parent Category",
"isRequired": false,
"metadata": {
"collectionId": "[same-collection-id]"
}
}
Note: Must create collection first, then add self-reference field
Multi-Collection Setup:
When creating multiple related collections:
1. Identify dependencies:
- Which collections reference others?
- What's the creation order?
2. Create in order:
- Independent collections first
- Dependent collections after
3. Show overall progress:
[1/4] Creating Categories...
[2/4] Creating Brands...
[3/4] Creating Tags...
[4/4] Creating Products...
4. Report collectively:
All 4 collections created successfully!
Complex Option Fields:
For complex dropdowns:
User: "Create status field with Draft, In Review, Approved, Published, Archived"
Option field with 5 choices:
{
"type": "Option",
"displayName": "Status",
"isRequired": true,
"metadata": {
"options": [
{"name": "Draft"},
{"name": "In Review"},
{"name": "Approved"},
{"name": "Published"},
{"name": "Archived"}
]
}
}
Tip: Use workflow order for options
Production Checklist
Before considering collection setup complete:
â Discovery
- Site selected and confirmed
- Plan limits checked
- Existing collections listed
- No naming conflicts
- User has appropriate permissions
â Requirements
- Display name gathered
- Singular name gathered
- All fields defined with types
- Required vs optional specified
- Relationships identified
â Validation
- All field types valid
- Multi-reference count ⤠5
- Referenced collections exist or queued
- No circular dependencies
- Field names follow conventions
- Within plan limits
â Preview
- Complete schema shown
- All fields listed with properties
- Relationships displayed
- Validation results shown
- User confirmation obtained
â Creation
- Collection created successfully
- Collection ID captured
- All fields created
- Field creation errors handled
- Progress shown to user
â Verification
- Collection retrieved and verified
- All fields present
- Field properties correct
- Relationships configured
- Any errors reported
â Reporting
- Final summary provided
- Collection ID shared
- Fields listed
- Failures reported (if any)
- Next steps suggested
â Error Handling
- Collection conflicts handled
- Plan limits checked
- Invalid field types caught
- Missing references detected
- Partial failures reported