.claude-plugin/plugins/redpanda-connect/skills/component-search/SKILL.md
This skill should be used when users need to discover Redpanda Connect components for their streaming pipelines. Trigger when users ask about finding inputs, outputs, processors, or other components, or when they mention specific technologies like "kafka consumer", "postgres output", "http server", or ask "which component should I use for X".
npx skillsauth add redpanda-data/connect component-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Help users discover the right Redpanda Connect components for their streaming pipeline needs.
Find and recommend the most relevant components that match the user's natural language query. Provide enough information for users to understand what each component does, how to configure it, and why it matches their needs.
This skill requires: rpk, rpk connect, python3.
See the SETUP for installation instructions.
Redpanda Connect has 8 types of components:
Lists all available components in a category using rpk.
# Usage:
rpk connect list <category>
# Examples:
rpk connect list inputs
rpk connect list outputs
rpk connect list processors
Retrieves and formats component configuration schemas.
# Usage:
./resources/scripts/format-component-fields.sh <category> <component>
# Examples:
./resources/scripts/format-component-fields.sh outputs redis_hash
./resources/scripts/format-component-fields.sh inputs kafka_franz
./resources/scripts/format-component-fields.sh processors mapping
<required_fields> - Must be configured<optional_fields> - Commonly used settings<advanced_fields> - Less common configuration<secret_fields> - Sensitive credentialssasl.password)array[string])Returns the current Redpanda Connect version in rpk.
# Usage:
./resources/scripts/rpk-version.sh
# Output example: 4.70.0
Links to official documentation for detailed component reference.
# URL pattern:
https://github.com/redpanda-data/connect/blob/v{version}/docs/modules/components/pages/{category}/{component}.adoc
# Examples:
https://github.com/redpanda-data/connect/blob/v4.70.0/docs/modules/components/pages/inputs/kafka_franz.adoc
https://github.com/redpanda-data/connect/blob/v4.70.0/docs/modules/components/pages/outputs/postgres.adoc
{version} - Connect version from rpk-version.sh (e.g., "4.70.0"){category} - Component category (inputs, outputs, processors, etc.){component} - Component name with underscores (e.g., "kafka_franz")Understand the query
Find matching components
Retrieve configuration details
Rank by relevance
Present clearly
development
Code review a pull request for Redpanda Connect, checking Go patterns, tests, component architecture, and commit policy
testing
This skill should be used when users need to create or fix Redpanda Connect pipeline configurations. Trigger when users mention "config", "pipeline", "YAML", "create a config", "fix my config", "validate my pipeline", or describe a streaming pipeline need like "read from Kafka and write to S3".
development
This skill should be used when users need to create or debug Bloblang transformation scripts. Trigger when users ask about transforming data, mapping fields, parsing JSON/CSV/XML, converting timestamps, filtering arrays, or mention "bloblang", "blobl", "mapping processor", or describe any data transformation need like "convert this to that" or "transform my JSON".
testing
Create, edit, improve, or audit AgentSkills. Use when creating a new skill from scratch or when asked to improve, review, audit, tidy up, or clean up an existing skill or SKILL.md file. Also use when editing or restructuring a skill directory (moving files to references/ or scripts/, removing stale content, validating against the AgentSkills spec). Triggers on phrases like "create a skill", "author a skill", "tidy up a skill", "improve this skill", "review the skill", "clean up the skill", "audit the skill".