kafka
Installation
SKILL.md
Apache Kafka
Manage topics, consumer groups, and messages via the Confluent REST Proxy.
List topics
curl -s "http://localhost:8082/topics" | jq '.[]'
Get topic details
curl -s "http://localhost:8082/topics/TOPIC_NAME" | jq '{name, partitions: (.partitions | length), configs}'