framer-install-auth

Featured

Install and configure Framer SDK/CLI authentication. Use when setting up a new Framer integration, configuring API keys, or initializing Framer in your project. Trigger with phrases like "install framer", "setup framer", "framer auth", "configure framer API key".

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 Install & Auth ## Overview Set up the Framer Plugin SDK for building editor plugins, or the `framer-api` package for Server API access. Framer has two developer surfaces: **Plugins** (run inside the Framer editor UI) and **Server API** (run from any Node.js server via WebSocket). ## Prerequisites - Node.js 18+ - Framer account (free or paid) - For Server API: API key from site settings ## Instructions ### Step 1: Choose Your Integration Type | Type | Package | Use Case | |------|---------|----------| | Plugin | `framer-plugin` | UI that runs inside Framer editor | | Server API | `framer-api` | Headless CMS sync, CI/CD publishing | | Code Components | React in Framer | Custom components on the canvas | | Code Overrides | React in Framer | Modify existing component behavior | ### Step 2: Set Up a Framer Plugin ```bash # Scaffold a new plugin project npx create-framer-plugin@latest my-plugin cd my-plugin npm install npm run dev ``` This creates a Vite + React project with the `framer-plugin` package pre-configured. The plugin runs inside Framer's editor iframe. ### Step 3: Set Up the Server API (Headless Access) ```bash npm install framer-api ``` ```typescript // server.ts — Server API connection import { framer } from 'framer-api'; const client = await framer.connect({ apiKey: process.env.FRAMER_API_KEY!, // From site settings siteId: process.env.FRAMER_SITE_ID!, }); // List all CMS collections const collections = await client.getCollections(); conso...

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 Solid

framer-security-basics

Apply Framer security best practices for secrets and access control. Use when securing API keys, implementing least privilege access, or auditing Framer security configuration. Trigger with phrases like "framer security", "framer secrets", "secure framer", "framer API key security".

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-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
AI & Automation Featured

framer-deploy-integration

Deploy Framer integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Framer-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy framer", "framer Vercel", "framer production deploy", "framer Cloud Run", "framer Fly.io".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-common-errors

Diagnose and fix Framer common errors and exceptions. Use when encountering Framer errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "framer error", "fix framer", "framer not working", "debug framer".

2,266 Updated today
jeremylongshore