Help us improve
Share bugs, ideas, or general feedback.
From ui-color-palette
Entry point for UI Color Palette workflows targeting Penpot. Use to choose between tokens, styles, and board/document preview generation.
npx claudepluginhub a-ng-d/claude-ui-color-paletteHow this skill is triggered — by the user, by Claude, or both
Slash command
/ui-color-palette:ui-color-palette-penpot <tokens|styles|preview><tokens|styles|preview>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this folder as the platform entry point for all **UI Color Palette → Penpot** workflows.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
Use this folder as the platform entry point for all UI Color Palette → Penpot workflows.
SKILL.md at the root is the platform indexreferences/ contains the detailed operational sub-skillsBefore calling any MCP tool, check whether PaletteData is already present in the conversation context.
If it is, use it directly — never call get_palette again. Confirm to the user:
Using the palette already built in this session. Generating Penpot artifacts now.
Only rebuild the palette if the user explicitly asks to change colors, preset, or themes.
This platform skill is primarily a routing and orchestration layer.
The agent should:
references/Do not start from raw API calls. Start from the workflow structure.
references/extract-source-colors.md — extract solid fill colors from the current Penpot selection to seed a palettereferences/extract-styles-colors.md — extract colors from the Penpot local color library to seed a palettereferences/generate-tokens.md — generate or sync Penpot local primitive tokens and themed setsreferences/generate-semantic-tokens.md — generate or sync Penpot semantic token sets from SystemData (reference layer on top of primitives)references/generate-styles.md — generate or sync Penpot local color stylesreferences/generate-preview.md — draw the palette as a swatch board on the Penpot canvas (canvas rendering only, not token/style export)Choose the sub-skill by user intent:
references/extract-source-colors.mdreferences/extract-styles-colors.mdreferences/generate-tokens.mdSystemData present in context → references/generate-semantic-tokens.mdreferences/generate-styles.mdreferences/generate-tokens.md), semantics if SystemData is available (references/generate-semantic-tokens.md), then styles (references/generate-styles.md), then preview (references/generate-preview.md)references/generate-preview.mdWhen routing a SystemData-based workflow to references/generate-semantic-tokens.md, pass SystemData and PaletteData opaquely. The sub-skill:
systemName/themeName (or systemName for no-theme systems)SystemData.tokens, named by joining token.pathNames with .{colorName_snake.shadeName} (resolved via token.refs[themeIndex].shadeId)isExcluded: true) and unbound refs (shadeId: null) are skippedAn agent should think in terms of the Penpot plugin/API surface, not only the plugin wrapper:
Use MCP or direct API calls as the execution layer, not as the skill structure.
The plugin bridge files are reference implementations. If the plugin action is unavailable, the agent should reproduce the same behavior directly through Penpot API requests.
Delegate this skill to palette-transitioner.
The palette-transitioner agent normalizes PaletteData into the correct row model for Penpot (tokenRows, styleRows, previewRows), then routes execution through the appropriate Penpot sub-skill.