Component Deprecation Path
Retire old components and props gradually instead of breaking every screen at once.
What it adds
A defined route from marking a component or prop as obsolete to removing it, with warnings, replacements, and a dated milestone.
What your agent is told to do
5
What your agent is told to do
5-
1
Mark the deprecation in all three places a developer might look: the static type layer, the component's documentation, and a development-time warning at the call site. A note in one place only will be missed by whoever is not reading that place.
-
2
Never deprecate without naming the replacement. State which component or prop takes over, and where the mapping is not mechanical, describe what the caller has to decide.
-
3
Where the change is mechanical, supply an automated rewrite so the migration is a single reviewed change rather than months of incidental edits. Where it is not, say so plainly rather than shipping a rewrite that produces plausible but wrong output.
-
4
Count remaining usages continuously and make the number visible, drawing on the record built by Component Inventory rather than maintaining a second list. Inventory owns the counting; this feature owns the lifecycle state attached to each entry.
-
5
Do not leave a deprecation open-ended. Attach a removal milestone at the moment of marking, because a deprecation with no end date is a permanent second implementation that everyone still copies from.
Edge cases it handles
7
Edge cases it handles
7- The deprecation must appear in the types, the documentation, and a runtime warning together. A deprecated prop that only warns at runtime is invisible to anyone reading the documentation before they write the call.
- A replacement has to be named and a rewrite supplied where the mapping is mechanical. Telling callers a component is deprecated without saying what to use instead guarantees they keep using it.
- Remaining usage must be tracked as a live number rather than counted by hand at removal time, or the removal lands on a screen nobody knew still depended on it.
- A removal milestone must be a real date on a real release, and the deprecation must be reviewed when it arrives. Deprecations that slip indefinitely train everyone to ignore the warnings.
- Deprecation warnings must not fire in production for end users, and must not be so noisy in development that they drown the diagnostics developers actually need.
- Something consumed outside this codebase — an embed, a published package, a template — cannot be removed on the same schedule as an internal component, and needs its own longer window.
- The replacement must be in place and stable before the warning goes out, otherwise callers migrate onto something that is itself about to change.
Definition of done
8
Definition of done
8- Every deprecated component or prop is marked in the type layer, the documentation, and a development-time warning.
- Each deprecation names its replacement and provides an automated rewrite where the mapping is mechanical.
- Remaining usage counts are derived from the component inventory rather than a separate hand-maintained list.
- Each deprecation carries a removal milestone that is reviewed when it falls due.
- Deprecation warnings are absent from production builds and deduplicated in development.
- No component is removed while its usage count is above zero.
- 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.