framer-core-workflow-a

Featured

Execute Framer primary workflow: Core Workflow A. Use when implementing primary use case, building main features, or core integration tasks. Trigger with phrases like "framer main workflow", "primary task with framer".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Framer CMS Plugin — Managed Collections ## Overview Build a Framer plugin that syncs external data into CMS Managed Collections. Managed Collections are plugin-controlled — your plugin creates the schema and populates items. This is the primary integration pattern for connecting Framer to external CMSes, databases, or APIs. ## Prerequisites - Completed `framer-install-auth` setup - Plugin dev server running - Understanding of Framer CMS concepts ## Instructions ### Step 1: Create a Managed Collection ```tsx // src/App.tsx — CMS sync plugin import { framer } from 'framer-plugin'; import { useState } from 'react'; framer.showUI({ width: 340, height: 400, title: 'Content Sync' }); export function App() { const [status, setStatus] = useState(''); const syncCollection = async () => { setStatus('Fetching data...'); const response = await fetch('https://jsonplaceholder.typicode.com/posts'); const posts = await response.json(); setStatus('Creating collection...'); const collection = await framer.createManagedCollection({ name: 'Blog Posts', fields: [ { id: 'title', name: 'Title', type: 'string' }, { id: 'body', name: 'Body', type: 'formattedText' }, { id: 'author', name: 'Author', type: 'string' }, { id: 'slug', name: 'Slug', type: 'slug', userEditable: false }, ], }); setStatus(`Syncing ${posts.length} items...`); const items = posts.slice(0, 20).map((post: any) => ({ fieldData:...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

framer-core-workflow-b

Execute Framer secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "framer secondary workflow", "secondary task with framer".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-ci-integration

Configure Framer CI/CD integration with GitHub Actions and testing. Use when setting up automated testing, configuring CI pipelines, or integrating Framer tests into your build process. Trigger with phrases like "framer CI", "framer GitHub Actions", "framer automated tests", "CI framer".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-sdk-patterns

Apply production-ready Framer SDK patterns for TypeScript and Python. Use when implementing Framer integrations, refactoring SDK usage, or establishing team coding standards for Framer. Trigger with phrases like "framer SDK patterns", "framer best practices", "framer code patterns", "idiomatic framer".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-core-workflow-a

Execute the primary Webflow workflow — CMS content management: list collections, CRUD items, publish items, and manage content lifecycle via the Data API v2. Use when working with Webflow CMS collections and items, managing blog posts, team members, or any dynamic content. Trigger with phrases like "webflow CMS", "webflow collections", "webflow items", "create webflow content", "manage webflow CMS", "webflow content management".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-reference-architecture

Implement Framer reference architecture with best-practice project layout. Use when designing new Framer integrations, reviewing project structure, or establishing architecture standards for Framer applications. Trigger with phrases like "framer architecture", "framer best practices", "framer project structure", "how to organize framer", "framer layout".

2,266 Updated today
jeremylongshore