ardot-generate-library

ardot-generate-library is a skill for Claude Code from balabalabalading/huuuuuuho-skills. It costs 107 tokens per session (2,539 once invoked), scanned A, original, MIT.

A workflow for building reusable UI components and design systems in Ardot, a design tool.

In plain words
What is it for?
Use it to create a Components page, define design tokens such as colors, and build reusable buttons, cards, inputs, navigation, or other interface components.
Why use it?
It keeps shared components connected to design variables so colors and other settings can change consistently across themes or modes.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to create a Components page, define design tokens such as colors, and build reusable buttons, cards, inputs, navigation, or other interface components.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/balabalabalading/huuuuuuho-skills/ardot-generate-library
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add balabalabalading/huuuuuuho-skills --skill ardot-generate-library
Clone the repo
git clone --depth 1 https://github.com/balabalabalading/huuuuuuho-skills

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin ardot-generate-library/plugin install ardot-generate-library after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ardot-generate-library

README.md
[![agentmods](https://agentmods.dev/badge/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library/github.svg)](https://agentmods.dev/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library)
Your own site
<a href="https://agentmods.dev/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library"><img src="https://agentmods.dev/badge/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ardot-generate-library

Your own site · 80×15
<a href="https://agentmods.dev/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library"><img src="https://agentmods.dev/badge/skills/balabalabalading/huuuuuuho-skills/ardot-generate-library.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,539 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00107 $0.02539
Opus 5 $0.00053 $0.01269
Sonnet 5 $0.00021 $0.00508
Haiku 4.5 $0.00011 $0.00254

Measured 13d ago against content hash 704d03dd66ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ardot-generate-library scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/Ardot-skills-nonofficial/ardot-generate-library/SKILL.md · 266 lines

How it starts

The opening of the file, as written. The whole thing — 266 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ardot-generate-library — 构建组件库

在 Ardot 中构建可复用组件库和设计系统。组件使用正确的变量绑定创建,以便响应主题/模式变化。

技能边界

  • 构建可复用组件时使用此技能(按钮、卡片、输入框、导航栏等)
  • 创建包含令牌和组件的设计系统时使用此技能
  • 如果构建一次性页面/屏幕,请改用 ardot-generate-design

前置条件

  • ardot-use — 用于 batch_edit DSL 规则、变量绑定、注意事项
  • ardot-create-new-file — 用于创建 Components 页面

阶段一:基础

1a:创建 Components 页面

create_new_page({name: "Components", select: false})
  → 记录 pageId(例如 "3:1672")

1b:创建设计令牌(变量)

使用 apply_variables 创建变量基础。组件将绑定到这些变量。

apply_variables({
  "variables": {
    "Colors": {
      "modes": ["Dark", "Light"],
      "variables": {
        "accent-primary": {
          "type": "COLOR", "scopes": ["ALL_FILLS"],
          "valuesByMode": {
            "Dark": {"r": 0.91, "g": 0.44, "b": 0.29, "a": 1},
            "Light": {"r": 0.83, "g": 0.38, "b": 0.23, "a": 1}
          }
        },
        "accent-primary-text": {
          "type": "COLOR", "scopes": ["TEXT_FILL"],
          "valuesByMode": {
            "Dark": {"r": 1, "g": 1, "b": 1, "a": 1},
            "Light": {"r": 1, "g": 1, "b": 1, "a": 1}
          }
        },
        "bg-secondary": {
          "type": "COLOR", "scopes": ["ALL_FILLS"],
          "valuesByMode": {
            "Dark": {"r": 0.15, "g": 0.15, "b": 0.15, "a": 1},
            "Light": {"r": 0.95, "g": 0.95, "b": 0.95, "a": 1}
          }
        },
        "text-primary": {
          "type": "COLOR", "scopes": ["TEXT_FILL"],
          "valuesByMode": {
            "Dark": {"r": 0.95, "g": 0.95, "b": 0.95, "a": 1},
            "Light": {"r": 0.1, "g": 0.1, "b": 0.1, "a": 1}
          }
        },
        "border-default": {
          "type": "COLOR", "scopes": ["STROKE"],
          "valuesByMode": {
            "Dark": {"r": 0.25, "g": 0.25, "b": 0.25, "a": 1},
            "Light": {"r": 0.85, "g": 0.85, "b": 0.85, "a": 1}
          }
        }
      }
    },
    "Spacing": {
      "modes": ["Dark", "Light"],
      "variables": {
        "spacing-xs": {"type": "FLOAT", "scopes": ["GAP"],
          "valuesByMode": {"Dark": 4, "Light": 4}},
        "spacing-sm": {"type": "FLOAT", "scopes": ["GAP"],
          "valuesByMode": {"Dark": 8, "Light": 8}},
        "spacing-md": {"type": "FLOAT", "scopes": ["GAP"],
          "valuesByMode": {"Dark": 16, "Light": 16}},
        "spacing-lg": {"type": "FLOAT", "scopes": ["GAP"],
          "valuesByMode": {"Dark": 24, "Light": 24}},
        "radius-sm": {"type": "FLOAT", "scopes": ["CORNER_RADIUS"],
          "valuesByMode": {"Dark": 6, "Light": 6}},
        "radius-md": {"type": "FLOAT", "scopes": ["CORNER_RADIUS"],
          "valuesByMode": {"Dark": 8, "Light": 8}},
        "radius-lg": {"type": "FLOAT", "scopes": ["CORNER_RADIUS"],
          "valuesByMode": {"Dark": 12, "Light": 12}}
      }
    }
  }
})

Read the full file on GitHub · 266 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 266 lines · 107 tokens per session scan A 704d03dd66ff

Subscribe to this mod's changes

ardot-generate-library is a skill published in the GitHub repository balabalabalading/huuuuuuho-skills (117 stars, last pushed 4d ago), licensed MIT. It adds 107 tokens to every session and 2,539 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

visual-asset-design

A guide for turning character, scene, and prop ideas into prompts for generating consistent reference images. It covers layouts, camera views, visual identity, and continuity across image variations.

agentscope-ai/QwenPaw · 113 tokens

web-design-engineer

Build or redesign polished browser-rendered visual artifacts with HTML/CSS/JavaScript/React: pages, dashboards, prototypes, slide decks, animations, UI mockups, and data visualizations. Use for visual front-end creation, design-system exploration, design critique, or explicit browser acceptance / QA of a web artifact.…

ConardLi/garden-skills · 96 tokens

winui-design

Use when designing, reviewing, or fixing WinUI 3: sample and control discovery with winapp find-ui, layout planning, control choice, Fluent Design alignment, Light/Dark/High Contrast theming, typography, spacing, brushes, accessibility, and XAML data-binding design. Load before authoring new XAML, reviewing UI PRs…

microsoft/win-dev-skills · 119 tokens

yida-dashboard

A delivery process for Yida dashboards, meaning screens that show business metrics and charts in one place. It covers data, filters, responsive layouts, loading states, insights, screenshots, and sharing.

openyida/openyida · 84 tokens

yida-density

A set of rules for controlling how much information a custom page shows at once, with compact, comfortable, and spacious layouts. It also defines how the layout changes on phones and how spacing and text sizes stay consistent.

openyida/openyida · 58 tokens

yida-nav-group

A tool for organizing the left-hand navigation of 宜搭 applications, Alibaba’s platform for building business apps. It manages navigation groups, pages, forms, and external links.

openyida/openyida · 46 tokens