algolia-core-workflow-a

Featured

Implement Algolia search with filters, facets, highlighting, and pagination. The primary money-path workflow: search records, apply filters, display results. Trigger: "algolia search", "search with algolia", "algolia filters", "algolia facets", "algolia search implementation".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Algolia Core Workflow A — Search & Filtering ## Overview Primary Algolia workflow: full-text search with filters, faceted navigation, hit highlighting, and pagination. Uses `searchSingleIndex` (v5) with real Algolia search parameters. ## Prerequisites - Completed `algolia-install-auth` and `algolia-hello-world` setup - Index populated with records (see `algolia-hello-world`) - Index settings configured with `searchableAttributes` and `attributesForFaceting` ## Instructions ### Step 1: Configure Index for Filtering ```typescript import { algoliasearch } from 'algoliasearch'; const client = algoliasearch(process.env.ALGOLIA_APP_ID!, process.env.ALGOLIA_ADMIN_KEY!); await client.setSettings({ indexName: 'products', indexSettings: { // What to search (ordered = priority matters) searchableAttributes: ['name', 'description', 'brand', 'category'], // What to filter/facet on — prefix with filterOnly() if no facet counts needed attributesForFaceting: [ 'searchable(brand)', // Searchable facet: users can search within brand values 'category', // Regular facet: shown in facet panels 'filterOnly(price)', // Filter only: no counts computed, saves CPU 'filterOnly(in_stock)', ], // Custom ranking: tie-breaker after Algolia's relevance ranking customRanking: ['desc(sales_count)', 'desc(rating)'], // What comes back in hits attributesToRetrieve: ['name', 'brand', 'price', 'im...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

algolia-core-workflow-b

Implement Algolia indexing pipeline: data sync, partial updates, synonyms, and rules. The secondary money-path workflow: keep your index in sync with source data. Trigger: "algolia indexing", "sync data to algolia", "algolia synonyms", "algolia rules", "algolia partial update", "algolia reindex".

2,266 Updated today
jeremylongshore
AI & Automation Featured

algolia-hello-world

Create a minimal working Algolia example — index records and search them. Use when starting a new Algolia integration, testing your setup, or learning the saveObjects/searchSingleIndex pattern. Trigger: "algolia hello world", "algolia example", "algolia quick start", "first algolia search".

2,266 Updated today
jeremylongshore
Data & Documents Listed

search-engine-setup

Set up and optimize search engines for applications. Use when someone asks to "add search to my app", "set up Elasticsearch", "configure Algolia", "fix search relevance", "add autocomplete", "fuzzy search", or "faceted filtering". Covers index design, data sync, search API, autocomplete, relevance tuning, and query analysis.

0 Updated 1 months ago
eliferjunior
Data & Documents Solid

search-engine-setup

Set up and optimize search engines for applications. Use when someone asks to "add search to my app", "set up Elasticsearch", "configure Algolia", "fix search relevance", "add autocomplete", "fuzzy search", or "faceted filtering". Covers index design, data sync, search API, autocomplete, relevance tuning, and query analysis.

61 Updated 1 weeks ago
TerminalSkills
AI & Automation Featured

algolia-data-handling

Implement Algolia data handling: record transforms, PII filtering before indexing, data retention, GDPR/CCPA compliance with Algolia's deleteByQuery and Insights deletion. Trigger: "algolia data", "algolia PII", "algolia GDPR", "algolia data retention", "algolia privacy", "algolia CCPA", "algolia data sync".

2,266 Updated today
jeremylongshore