From automation
Complete guide to adding pagination, search, sorting, filtering, and grouping to an InteractiveList built with @finstreet/ui. Use when implementing or modifying list actions in the finstreet context.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin finstreet-fe-claude-pluginsThis skill uses the workspace's default tool permissions.
This skill covers adding pagination and related features (search, sort, filter, group) to an `InteractiveList` component.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
This skill covers adding pagination and related features (search, sort, filter, group) to an InteractiveList component.
Before creating any files, invoke the automation:path-resolver skill with your input parameters (featureName, subFeatureName, featureType=interactiveList, product, role) to resolve the correct paths. Use the returned Feature Path as {featurePath}. For {requestPath}, take the base feature path (without the interactiveLists segment) and append /backend.
{featurePath}/
├── {listName}SearchParams.ts
├── {listName}GroupConfigs.ts ← only for grouping
├── {ListName}PresentationList.tsx ← update existing file
├── index.tsx ← container component
├── use{ListName}RenderActions.tsx ← only for sort/group
├── use{ListName}SortByItems.ts ← only for sorting
└── use{ListName}GroupByItems.ts ← only for grouping
{requestPath}/
└── get{ListName}List.ts
get{ListName}List.ts), see creating-the-request.mdindex.tsx), see implementing-the-container.mdif-else block and pre-initialized listItemsnuqs for URL-based state (no client-side state for pagination/sort/filter)