anima-webhooks-events

Featured

Use Figma webhooks to trigger automatic Anima code generation on design changes. Use when building event-driven design-to-code pipelines, auto-generating components when Figma files change, or integrating design updates into CI. Trigger: "anima webhook", "figma webhook", "anima auto-generate on change".

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

# Anima Webhooks & Events ## Overview Anima doesn't have its own webhooks, but you can use **Figma Webhooks** (v2 API) to detect design changes and trigger Anima code generation automatically. This creates an event-driven design-to-code pipeline. ## Instructions ### Step 1: Register Figma Webhook ```bash # Figma Webhooks API (requires team-level access) curl -X POST "https://api.figma.com/v2/webhooks" \ -H "X-Figma-Token: ${FIGMA_TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "event_type": "FILE_VERSION_UPDATE", "team_id": "YOUR_TEAM_ID", "endpoint": "https://your-server.com/webhooks/figma", "passcode": "your-webhook-secret", "description": "Trigger Anima code generation on design changes" }' ``` ### Step 2: Webhook Handler ```typescript // src/webhooks/figma-handler.ts import express from 'express'; import { Anima } from '@animaapp/anima-sdk'; const router = express.Router(); const anima = new Anima({ auth: { token: process.env.ANIMA_TOKEN! } }); interface FigmaWebhookEvent { event_type: 'FILE_VERSION_UPDATE' | 'FILE_UPDATE' | 'FILE_DELETE'; file_key: string; file_name: string; triggered_by: { id: string; handle: string }; timestamp: string; passcode: string; } router.post('/webhooks/figma', express.json(), async (req, res) => { const event = req.body as FigmaWebhookEvent; // Verify passcode if (event.passcode !== process.env.FIGMA_WEBHOOK_SECRET) { return res.status(401).json({ error: 'Invalid passcode' });...

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

figma-webhooks-events

Implement Figma Webhooks V2 for real-time file, comment, and library events. Use when setting up webhook endpoints, handling FILE_UPDATE events, or building event-driven Figma automation. Trigger with phrases like "figma webhook", "figma events", "figma FILE_UPDATE", "figma notifications", "figma real-time".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anima-ci-integration

Configure CI/CD pipeline for automated Figma-to-code generation with Anima. Use when automating design-to-code in GitHub Actions, setting up PR-based component generation, or integrating Anima into design handoff workflows. Trigger: "anima CI", "anima GitHub Actions", "anima automated generation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anima-core-workflow-a

Build automated Figma-to-React pipeline with the Anima SDK. Use when automating design handoff, building CI/CD design-to-code workflows, or creating a design system code generator from Figma components. Trigger: "anima design pipeline", "figma to react pipeline", "automated design handoff", "anima component generator".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anima-install-auth

Install the Anima SDK and configure authentication for Figma-to-code generation. Use when setting up design-to-code automation, configuring Figma token access, or initializing the @animaapp/anima-sdk for server-side code generation. Trigger: "install anima", "setup anima", "anima auth", "anima figma token".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anima-hello-world

Generate React/Vue/HTML code from a Figma design using the Anima SDK. Use when testing design-to-code conversion, learning Anima's code output format, or building your first automated design-to-code pipeline. Trigger: "anima hello world", "anima example", "figma to react", "figma to code", "anima generate code".

2,266 Updated today
jeremylongshore