Component Variant API
Give every component one consistent way to express size, tone, emphasis, and state.
What it adds
A shared variant vocabulary applied across the component set, with stable defaults and impossible combinations refused.
What your agent is told to do
5
What your agent is told to do
5-
1
Inventory how the existing components already express difference — a primary flag on one, a kind string on another, a boolean per style on a third — and collapse them onto one vocabulary of size, tone, emphasis, and state.
-
2
Name variants for their meaning rather than their appearance. A tone called danger survives a redesign; a tone called red does not, and it lies the moment the palette changes or the theme inverts.
-
3
Give every variant prop a default that produces the most common correct result, so a component rendered with no variant props at all is still valid and typical.
-
4
Refuse combinations that cannot be rendered coherently, at development time and with a message naming the conflict. A quiet emphasis with a destructive tone and a loading state may have no sensible appearance, and guessing one produces a control nobody designed.
-
5
Do not add a variant for every one-off design request. Each new value multiplies the combinations that must be checked; if a screen needs something the vocabulary cannot express, that is a design conversation, not a new enum member.
Edge cases it handles
7
Edge cases it handles
7- Conflicting variant combinations must be rejected rather than resolved by precedence. Silently letting one variant win produces a control that looks deliberate but was never designed, and the bug surfaces only when someone screenshots it.
- Defaults must be stable across releases. Changing what an unspecified variant means re-styles every call site that relied on the default, and those call sites are exactly the ones nobody reviews.
- Variant names must be semantic, not visual. Names describing colour, weight, or position break as soon as the theme changes, and they read as lies in a dark theme or a high-contrast mode.
- The variant vocabulary must not defeat static typing or dead-code elimination. Values assembled dynamically from strings cannot be checked at build time and force the whole style surface to ship even when a handful of variants are used.
- State variants such as loading, disabled, and invalid must not be settable in ways that contradict the component's actual behaviour — a control styled disabled while remaining clickable is a trap.
- Every tone must remain legible against every surface it can appear on, including inverted panels and the dark theme, otherwise a valid combination produces unreadable text.
- How a variant value varies across breakpoints belongs to Responsive Prop System; this brief owns the set of allowed values and their meaning, and the two must draw on one shared vocabulary.
Definition of done
9
Definition of done
9- Every component in the set expresses difference through the same variant vocabulary, with no leftover per-component flags.
- Variant names describe meaning rather than appearance.
- A component rendered with no variant props produces a valid, typical result.
- Incoherent variant combinations raise a development-time error naming the conflict.
- Variant values are statically known, so unused styles are eliminated from the build.
- Every tone is legible on every surface it can appear on, in both light and dark themes.
- State variants match the component's real interactive behaviour.
- The feature matches the existing design system.
- No existing functionality is broken.
Related features
Screen Reader Only Utility
Screen Reader Only Utility
One tested way to add text for assistive technology without it appearing on screen.
What it does
A single visually hidden utility used for labels, instructions, and context that assistive technology needs and sighted users do not.
How it works
- 1 Find every place the app currently hides text from sight — off-screen positioning, zero dimensions, transparent colour, tiny font sizes, aria-label strings duplicating nearby copy — and consolidate them onto one utility.
- 2 Build it by clipping the element to nothing while keeping it rendered and in the accessibility tree: it must occupy no visual space and contribute nothing to layout, yet still be read in document order.
- 3 Provide a second variant that becomes visible when it receives focus, and use it for skip links and any other hidden content that is itself focusable.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/screen-reader-only-utility
Avatar Group
Avatar Group
Show who is involved in a compact space without a pile of broken images.
What it does
A stacked set of member avatars with deterministic ordering, an overflow count, and access to the full list.
How it works
- 1 Find the places that show several people at once — assignees, collaborators, workspace members, comment participants — and render them through one grouped component.
- 2 Order the stack deterministically by a stable rule such as role then name, so the same group renders in the same order on every load and every device.
- 3 Cap the number shown and collapse the remainder into a single count that is announced meaningfully, not as a bare number sitting after a row of pictures.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/avatar-group
Progress Indicator System
Progress Indicator System
Tell people how far along the work is, in the same way every time.
What it does
A consistent set of bars, rings, step trackers, and accompanying text for work that takes measurable time.
How it works
- 1 Identify every operation in the app that takes long enough to need feedback — uploads, imports, exports, batch actions, multi-step flows — and decide for each whether its progress is genuinely measurable.
- 2 Use a determinate form only when a real proportion is known. Where the total is unknown, use an indeterminate form and say what is happening in words rather than inventing a percentage.
- 3 Pair every indicator with text that names the operation and its current position, so the information survives for someone who cannot see the graphic.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/progress-indicator-system
How it works
-
1
Copy the link
Grab the Markdown instruction URL for this feature.
-
2
Give it to your AI
Paste it into Claude Code, Cursor, v0, Lovable — whatever you build with.
-
3
It inspects, then implements
Your agent reads your existing app first, then adds the feature to fit it.
Works with your stack
These instructions are written to adapt. They tell the agent to detect your framework, match your existing design system, and reuse what you already have — rather than assuming a particular stack.
Need it tighter than that? Customize the feature and tell it exactly what you're running.