From ctx-customer-pack
Search the knowledge graph for entities, documentation, and patterns.
npx claudepluginhub codota/ctx-customer-pack-distributable --plugin ctx-customer-packThis skill is limited to using the following tools:
Search across the full Context Engine knowledge graph for services, teams, ADRs, documentation, and architectural patterns.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Search across the full Context Engine knowledge graph for services, teams, ADRs, documentation, and architectural patterns.
# Free-text search across all knowledge
tabnine-ctx-loader query search "rate limiting"
# Find specific entity types
tabnine-ctx-loader query entities --type service --search "checkout"
# Search with field selection (returns only the specified fields)
tabnine-ctx-loader query search "checkout" --fields entityType,entityName,similarity
Performs a semantic search across all indexed knowledge: ADRs, runbooks, documentation, and incident postmortems.
# Search for documentation on a topic
tabnine-ctx-loader query search "database sharding strategy"
# Find patterns and best practices
tabnine-ctx-loader query search "retry backoff pattern"
# Limit results and select fields
tabnine-ctx-loader query search "caching" --limit 5 --fields entityType,entityName
Locates specific entities in the knowledge graph by name, type, or keyword.
# Find all services matching a keyword
tabnine-ctx-loader query entities --type service --search "payment"
# Find teams
tabnine-ctx-loader query entities --type team --search "platform"
# List all entities of a type
tabnine-ctx-loader query entities --type adr --limit 50