figma-ci-integration

Featured

Automate Figma design token sync and asset export in CI/CD pipelines. Use when setting up GitHub Actions for Figma, automating icon exports, or validating design token changes in pull requests. Trigger with phrases like "figma CI", "figma GitHub Actions", "automate figma export", "figma CI pipeline".

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

# Figma CI Integration ## Overview Automate Figma API workflows in CI/CD: sync design tokens on schedule, export assets on PR, and validate design system consistency. ## Prerequisites - GitHub repository with Actions enabled - `FIGMA_PAT` stored as GitHub secret - Design token extraction script (from `figma-core-workflow-a`) ## Instructions ### Step 1: Scheduled Token Sync Workflow ```yaml # .github/workflows/figma-token-sync.yml name: Sync Figma Design Tokens on: schedule: - cron: '0 9 * * 1-5' # Weekdays at 9am UTC workflow_dispatch: # Manual trigger jobs: sync-tokens: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: '20' cache: 'npm' - run: npm ci - name: Extract tokens from Figma env: FIGMA_PAT: ${{ secrets.FIGMA_PAT }} FIGMA_FILE_KEY: ${{ vars.FIGMA_FILE_KEY }} run: node scripts/extract-figma-tokens.mjs - name: Check for changes id: diff run: | git diff --quiet src/styles/tokens.css || echo "changed=true" >> $GITHUB_OUTPUT - name: Create PR with token updates if: steps.diff.outputs.changed == 'true' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | BRANCH="figma/token-sync-$(date +%Y%m%d)" git checkout -b "$BRANCH" git add src/styles/tokens.css git commit -m "chore: sync design ...

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

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 Listed

figma

Integrate with Figma API for design automation and code generation. Use when extracting design tokens, generating React/CSS code from Figma components, syncing design systems, building Figma plugins, or automating design-to-code workflows. Triggers on Figma API, design tokens, Figma plugin, design-to-code, Figma export, Figma component, Dev Mode.

2 Updated today
Makiya1202
AI & Automation Featured

figma-core-workflow-a

Extract design tokens, colors, typography, and spacing from Figma files via REST API. Use when building a design-to-code pipeline, syncing design tokens, or extracting styles from a Figma design system file. Trigger with phrases like "figma design tokens", "extract figma styles", "figma to CSS", "sync figma colors", "figma typography".

2,266 Updated today
jeremylongshore
AI & Automation Solid

figma-api

Direct Figma API interactions for design asset management. Fetch files and components, extract design tokens, export images, manage comments, and access version history.

1,034 Updated today
a5c-ai
AI & Automation Featured

figma-core-workflow-b

Export images, icons, and assets from Figma files via the REST API. Use when building an asset pipeline, exporting icons as SVG/PNG, or rendering frames to images for documentation or previews. Trigger with phrases like "figma export", "figma images", "export figma icons", "figma assets", "figma render".

2,266 Updated today
jeremylongshore