Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

gigma-design吉玛设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

4,234

周安装

180

GitHub Stars

公开资料未说明

下载量

1,483
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gigma-design(吉玛设计)
来源仓库:https://github.com/snoopyrain/gigma-design
安装命令:
openclaw skills install gigma-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gigma-design

简介

Gigma Design 提供可编辑的 Figma 画布控制,用于界面设计、视觉规范和交互优化。

  • 适合根据产品场景生成 UI 方案、检查视觉一致性或改进组件层级。
  • 使用时需结合品牌系统和用户任务,避免堆砌装饰元素;页面改动后应通过截图检查文本溢出与响应式表现。
  • 安装命令:openclaw skills install gigma-design,适用于 OpenClaw 宿主环境。
  • 注意涉及真实页面修改时,需验证对齐和布局在不同设备下的显示效果。

SKILL.md

name
gigma-design
description
AI-powered design tool — say goodbye to Figma MCP's read-only screenshots. Gigma gives you a real editable canvas with full MCP control. Create, edit, and export social media graphics, thumbnails, banners, cards, and batch designs. 19 MCP tools: add shapes, text, images with masks, layer control, screenshot preview, PNG export up to 3x. Use when the user says 'design an image', 'create a poster', 'make a thumbnail', 'social media graphic', 'batch design', 'create banner', 'Instagram post', 'YouTube thumbnail', or wants to create/edit visual designs programmatically.
version
1.0.0
metadata
openclaw
emoji
🎨
homepage
https://gigma-doc.10xboost.org

Gigma — AI Design Canvas

Say goodbye to Figma MCP's read-only screenshots. Gigma is a cloud design tool built for AI agents — you get a real editable canvas with full MCP control. Create shapes, add text, insert images, arrange layers, preview with screenshots, and export high-res PNGs — all through natural conversation.

Why Gigma over Figma MCP?

| | Figma MCP | Gigma | |--|-----------|-------| | Canvas control | Read-only screenshots | Full read/write | | Create elements | Limited | Shapes, text, images, lines | | Edit elements | No | Update any property | | Image masking | No | Circle, ellipse, rounded rect | | Export | Screenshot only | PNG up to 3x (5760×3240) | | Batch design | No | Clone projects, loop & export | | Setup | Complex OAuth | Paste MCP link, done |

Prerequisites

  1. Sign up at gigma.10xboost.org with Google (free, no credit card)
  2. Get your MCP link: Click the "MCP Link" button in the toolbar → copy the JSON config
  3. Add to Claude: Paste into your MCP settings — no install needed

Setup guide: gigma-doc.10xboost.org

Available Tools (19 total)

Project Management

ToolDescription
list_projectsList all projects with metadata
create_projectCreate new project (supports cloning from existing for templates)
switch_projectSwitch active project

Canvas

ToolDescription
get_canvas_infoGet canvas dimensions, background color, element count
set_canvasSet canvas width, height, background color

Elements (Create, Read, Update, Delete)

ToolDescription
add_elementAdd shapes (rect, circle), text, images, or lines with full styling
add_imageInsert image with masking (circle, ellipse, roundedRect) and stroke
list_elementsList all elements on canvas
get_elementGet full properties of an element
update_elementModify any property of an existing element
delete_elementRemove an element
delete_all_elementsClear the entire canvas

Layer & Selection

ToolDescription
reorder_layerMove element: front, back, forward, backward
select_elementHighlight element in web editor
deselect_allClear all selections

Export & Preview

ToolDescription
get_screenshotPreview canvas as base64 PNG (verify before export)
export_canvasExport to Google Cloud Storage (PNG, 1x/2x/3x scale, 7-day URL)

Design Workflow

Step 1: Set Up Canvas

create_project(name: "Instagram Post")
set_canvas(width: 1080, height: 1080, backgroundColor: "#1a1a2e")

Common canvas sizes:

FormatSize
Instagram Post1080×1080
Instagram Story1080×1920
Facebook Post1200×630
YouTube Thumbnail1280×720
LinkedIn Post1200×627
Presentation Slide1920×1080

Step 2: Build the Design

Add a background shape:

add_element(type: "rect", x: 0, y: 0, width: 1080, height: 1080, fillColor: "#4A90D9")

Add text:

add_element(type: "text", x: 100, y: 200, width: 880, height: 100, text: "Your Headline Here", fontSize: 64, fontWeight: "bold", fillColor: "#FFFFFF", textAlignment: "center")

Add an image with circular mask:

add_image(url: "https://example.com/photo.jpg", x: 400, y: 400, width: 280, height: 280, maskShape: "circle", strokeColor: "#FFD700", strokeWidth: 6)

Add decorative elements:

add_element(type: "circle", x: -100, y: -100, width: 400, height: 400, fillColor: "#16213e", opacity: 0.5)

Step 3: Arrange Layers

Recommended stacking order (bottom to top):

  1. Background rectangle
  2. Decorative elements (gradients, borders)
  3. Images and icons
  4. Text (topmost for readability)
reorder_layer(elementId: "<text_id>", action: "front")

Step 4: Preview

Always verify before exporting:

get_screenshot()

This returns a base64 PNG — check layout, colors, and text positioning.

Step 5: Export

export_canvas(format: "png", scale: 2)

Scale options:

  • 1x — standard resolution (e.g., 1080×1080)
  • 2x — high-res (e.g., 2160×2160) — recommended
  • 3x — ultra high-res (e.g., 3240×3240)

Returns a signed URL valid for 7 days.

Batch Design Workflow

Create multiple variations from a template:

Step 1: Design the template

create_project(name: "Quote Template")
set_canvas(width: 1080, height: 1080, backgroundColor: "#2C3E50")
add_element(type: "rect", ...)        → save elementId as bg_id
add_element(type: "text", text: "Quote here", ...)  → save as quote_id
add_element(type: "text", text: "— Author", ...)    → save as author_id

Step 2: Loop through data

For each variation:

update_element(elementId: bg_id, fillColor: "#new_color")
update_element(elementId: quote_id, text: "New quote text")
update_element(elementId: author_id, text: "— New Author")
export_canvas(format: "png", scale: 2)

Step 3: Collect export URLs

Each export_canvas returns a unique signed URL — collect all for the user.

Pro tip: Use create_project(cloneFromId: "<template_id>") to clone a template project for non-destructive batch creation.

Element Properties Reference

Shapes (rect, circle)

x, y, width, height, fillColor, strokeColor, strokeWidth, opacity, rotation

Text

x, y, width, height, text, fontSize, fontWeight ("normal"/"bold"), textAlignment ("left"/"center"/"right"), fillColor, opacity, rotation

Image

url/imageUrl, x, y, width, height, maskShape ("circle"/"ellipse"/"roundedRect"), strokeColor, strokeWidth, opacity, rotation

Line

x, y, width, height, strokeColor, strokeWidth, opacity, rotation

Tips

  • Screenshot often — use get_screenshot after every 2-3 elements to catch issues early
  • Update, don't recreate — modify existing elements with update_element instead of delete + add
  • Bold, large text — social media feeds scroll fast, use 48px+ and high contrast
  • 2-3 colors max — clean designs with a restricted palette perform best
  • Track element IDs — save the UUID returned by add_element for later updates/deletes
  • Canvas changes sync to browser — edits appear in the web editor within ~2 seconds

Error Handling

ErrorSolution
Token validation failure (-32001)MCP link invalid — get a new one from gigma.10xboost.org
Element not foundUse list_elements to get current element IDs
Image not loadingEnsure the image URL is publicly accessible (HTTPS)
Export failedCheck canvas has elements; try get_screenshot first

Documentation

Full docs: gigma-doc.10xboost.org

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.04%
按下载量换算1,202

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills