search

Generate a full-stack search feature with backend API and frontend components.

Updated Apr 16, 2026
One-click install
npx skills add https://github.com/h617265630/Modularity-skill --skill search-h617265630
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: search
Source: https://github.com/h617265630/Modularity-skill/tree/main/.claude/skills/search
Command: npx skills add https://github.com/h617265630/Modularity-skill --skill search-h617265630

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Generates complete search functionality including a backend API and frontend SearchBar and SearchResults components to help users find content quickly.

Core Features & Use Cases

  • Backend search service with methods to search posts and users
  • API route /search for integrated querying and type-based results
  • Frontend components SearchBar and SearchResults to deliver a responsive search experience
  • Database full-text search indexing configuration to support efficient queries
  • Use Case: quickly wire up a site-wide search feature for posts and users

Quick Start

Provide a concise query like "generate a complete search feature for posts and users" to generate the full stack search functionality.

Frequently Asked Questions about search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement full-text search for posts and users across my full stack application?

Full-text search for posts and users is implemented via a backend SearchService querying SQLAlchemy indexed models, an API route for type-based results, and frontend SearchBar and SearchResults components for responsive UI display.

What does a complete site-wide search feature include for finding content quickly?

A complete search feature includes backend query methods for posts and users, API routing for integrated querying, frontend search components, and database full-text search indexing configuration for efficient keyword matching.

Can I generate both the search API and frontend UI components together?

Yes, generating both the backend search API and frontend UI components together is supported, producing a SearchService with query methods, a search API route, and responsive SearchBar and SearchResults components.

Does SQLAlchemy support efficient database full-text search indexing for keyword queries?

SQLAlchemy supports efficient database full-text search indexing through configuration provided by the generated search feature, enabling keyword queries against posts and users to return type-based results quickly.

What is the best way to wire up a search API for querying multiple content types?

The best way to wire up a search API for multiple content types is generating an integrated API route that accepts keyword queries and delegates to a SearchService to return type-based results for posts and users.

How to add a responsive search bar and results display to my frontend?

Adding a responsive search bar and results display involves generating frontend SearchBar and SearchResults components that connect to the backend search API route to fetch and render matching posts and users dynamically.