What problem does it solve?
This skill provides an end-to-end approach to adding fast, PostgreSQL-backed full-text search to a Spring Boot membership application. It eliminates manual wiring for search indexes, queries, and UI, offering a cohesive workflow from migrations to UI search results.
Core Features & Use Cases
- Integrates PostgreSQL tsvector/tsquery-based full-text search across core modules (members, content, announcements) with optional module support.
- Generates migrations to add search vectors, GIN indexes, and triggers; updates JPA entities and repositories; and exposes a centralized SearchService plus a REST/Thymeleaf UI.
- Provides a header search bar and a dedicated /search page with results grouped by entity type and a typeahead API for autocomplete.
- Handles CJK considerations with pg_trgm guidance and language-specific tokenization notes to maintain search quality.
- Configurable through the existing Spring config and supports secure access rules for admin vs. user results.
Quick Start
Install Claude Code and run the springboot-search skill to scaffold PostgreSQL full-text search in your Spring Boot app.