Skip to main content
The @guildai-services/guildai~figma package provides agents with access to the Figma REST API through Guild’s OAuth integration.

Authentication

  • Type: OAuth 2.0

Setup

1

Open Credentials

Go to Credentials in Guild.
2

Connect Figma

Click Figma and authorize Guild to access your account.

Usage

import { figmaTools } from "@guildai-services/guildai~figma"
import { llmAgent } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that works with Figma designs",
  tools: { ...figmaTools },
})