Global Search
One search box that finds anything in your app.
What it adds
Search across every meaningful entity in the application from a single input.
What your agent is told to do
4
What your agent is told to do
4-
1
Identify every entity worth searching, and report them before building.
-
2
Use the database's own search capability first (for example Postgres full-text search). Do not add Elasticsearch or a search SaaS unless the project already has one.
-
3
Return results grouped by entity type, strongest match first.
-
4
Debounce input and cancel in-flight requests, so results never arrive out of order.
Edge cases it handles
5
Edge cases it handles
5- Results MUST be scoped to what the user is permitted to see. This is the most common security bug in search — verify it explicitly by searching as a low-privilege user.
- An empty query must not trigger a full table scan.
- Out-of-order responses must not overwrite newer results.
- Handle typos gracefully, or at least fail to a useful empty state.
- Very large result sets must be paginated or capped.
Definition of done
8
Definition of done
8- One input searches every relevant entity.
- Results are grouped and ranked sensibly.
- Results only ever include records the current user may see.
- Fast typing never produces stale or flickering results.
- The empty state suggests what to do next.
- Search is fully keyboard-navigable.
- The feature matches the existing design system.
- No existing functionality is broken.
Related features
Voice Search
Voice Search
Let people speak a search query instead of typing it, and still edit what was heard.
What it does
A microphone control on the app's existing search field that turns speech into a query the user can correct before it runs.
How it works
- 1 Add the microphone to the search input the app already has. Do not build a separate voice search screen or a second results page; the spoken query must go through the same search, the same filters, and the same ranking as a typed one.
- 2 Show words as they are recognised, in the search field itself, so the user can see the microphone is working before the final result arrives.
- 3 Leave the recognised text in the field as ordinary editable text once recognition finishes. The single most common repair is the user fixing one wrong word and pressing enter.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/voice-search
Saved Filters
Saved Filters
Let people keep the views they build.
What it does
Save a filter combination as a named view the user can return to.
How it works
- 1 Let a user name and save the current filter state, and list their saved views.
- 2 Store the filter definition, not the matching row IDs — a saved view must stay live as data changes.
- 3 Allow editing, renaming, and deleting saved views.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/saved-filters
No-Results Recovery
No-Results Recovery
Turn an empty search into a next step instead of a dead end.
What it does
A zero-result search state that says which part of the query is at fault and offers a concrete way to get results.
How it works
- 1 Separate the causes: no matches, a failed request, and results filtered away by permissions all look identical to the user and need different copy.
- 2 When filters are active, list them and let the user drop them individually — and name the one that eliminated the most results.
- 3 Rerun the query in a relaxed form behind the scenes (fewer terms, or without the narrowest filter) and offer that as a suggestion with its real count.
Copy the prompt
No account needed
Add this feature to my app:
https://addthisfeature.com/x/no-results-recovery
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.