From ctx-customer-pack
Architecture tools: get_runbook, get_security_patterns, search_adrs, search_flows, search_incidents
npx claudepluginhub codota/ctx-customer-pack-distributable --plugin ctx-customer-packThis skill is limited to using the following tools:
> Auto-generated from 5 exported tool(s) in the Context Engine.
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.
Auto-generated from 5 exported tool(s) in the Context Engine.
Get a runbook for a specific service or operational scenario. Returns investigation steps, mitigation commands, escalation paths, and related context. PREFER: Use 'incident_response' during incidents - it includes the runbook plus escalation contacts, similar incidents, and ownership in one call. USE THIS WHEN: You need just the runbook steps without the incident context, or when referencing runbooks outside of an active incident.
Call mcp__tabnine-ctx-cloud__get_runbook with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| service | string | Yes | Service name or scenario (e.g., "order-service", "checkout-failures"). |
Get security patterns and anti-patterns learned from past incidents. Returns code examples of what NOT to do and the correct approach. PREFER: Use 'incident_response' during active incidents - includes relevant security patterns plus runbooks, escalation contacts, and similar incidents. USE THIS WHEN: You need to browse security patterns for code review or education, without the context of a specific incident or service.
Call mcp__tabnine-ctx-cloud__get_security_patterns with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | string | No | Security category to search for (e.g., "rate-limiting", "authentication", "injection", "authorization"). Leave empty to get all patterns. |
| query | string | No | Search query - can be a topic or keyword (e.g., "X-Forwarded-For", "JWT"). |
Search Architecture Decision Records (ADRs) by keyword or topic. Finds ADRs that match the query in their title, decision, rationale, or alternatives. Use this to understand why architectural decisions were made or to find relevant context for new decisions. PREFER: Use 'code_migration' when researching ADRs for a specific migration. Use 'understand_flow' when researching ADRs for a specific business flow. USE THIS WHEN: You need to browse ADRs by topic without specific migration or flow context, or when researching architectural patterns broadly.
Call mcp__tabnine-ctx-cloud__search_adrs with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query - can be a keyword (e.g., "RabbitMQ"), topic (e.g., "messaging"), or question (e.g., "why message queue"). Searches title, decision, and rationale. |
| status | string | No | Filter by ADR status: "accepted", "proposed", "deprecated", "superseded". Leave empty to search all statuses. |
Search for documented business flows and workflows by keyword or service. Returns flow details including steps, services involved, and related context. PREFER: Use 'understand_flow' for complete flow analysis including ownership, runbooks, past incidents, and architectural decisions in one call. USE THIS WHEN: You need to search across multiple flows by keyword, or when browsing available flows without full operational context.
Call mcp__tabnine-ctx-cloud__search_flows with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query - can be a flow name (e.g., "checkout"), feature (e.g., "payment"), or service (e.g., "order-service"). Searches title, purpose, and steps. |
Search past incidents by keyword, service, or symptom. Returns incidents with root causes, lessons learned, and affected services. PREFER: Use 'incident_response' during active incidents - it provides escalation contacts, runbooks, and similar incidents for a specific service. USE THIS WHEN: You need to search across all incidents by keyword/symptom, or when researching historical patterns not tied to a specific service.
Call mcp__tabnine-ctx-cloud__search_incidents with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query - can be a keyword (e.g., "timeout"), service (e.g., "checkout"), or symptom (e.g., "5xx errors"). Searches title, root cause, and symptoms. |
| severity | string | No | Filter by severity: "SEV-1", "SEV-2", "SEV-3", "High", "Medium", "Low". Leave empty to search all severities. |
| service | string | No | Filter to incidents affecting a specific service. |