A Claude Code plugin marketplace hosting enterprise tool integrations.
| Plugin | Description |
|---|---|
| rh-case | Red Hat support case management — list, show, search, analyze, and comment on cases |
| jira | Jira integration — pick tickets, track time, post work logs, and update status |
| slack | Read and search Slack messages — search conversations, read channels, follow threads |
Add this marketplace to Claude Code:
/plugin marketplace add borball/cc-plugins
Then install individual plugins:
/plugin install rh-case@cc-plugins
/plugin install jira@cc-plugins
/plugin install slack@cc-plugins
- Claude Code CLI
curlandjqavailable on your system- Credentials for the respective services (Red Hat Portal, Jira, Slack)
Manage Red Hat support cases via the Customer Portal API. Commands: /rh-case:init, /rh-case:list, /rh-case:show, /rh-case:search, /rh-case:analyze, /rh-case:comment, /rh-case:export, /rh-case:status.
See plugins/rh-case/README.md for details.
Jira task tracking with automatic time logging. Commands: /jira init, /jira start, /jira status, /jira log, /jira done.
See plugins/jira/README.md for details.
Read and search Slack messages from your terminal. Commands: /slack init, /slack status, /slack search, /slack read, /slack channels.
See plugins/slack/README.md for details.
cc-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── plugins/
│ ├── rh-case/ # Red Hat support case plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── commands/
│ │ ├── skills/
│ │ └── scripts/
│ ├── jira/ # Jira integration plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── skills/
│ │ ├── scripts/
│ │ ├── hooks/
│ │ └── templates/
│ └── slack/ # Slack messaging plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── skills/
│ └── scripts/
└── README.md