Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
"source": "./plugins/session",
"description": "A plugin for Claude session management and persistence"
},
{
"name": "security",
"source": "./plugins/security",
"description": "CVE analysis and container image vulnerability scanning for Red Hat ecosystem"
},
{
"name": "sosreport",
"source": "./plugins/sosreport",
Expand Down
11 changes: 11 additions & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This document lists all available Claude Code plugins and their commands in the
- [Olm](#olm-plugin)
- [Openshift](#openshift-plugin)
- [Prow Job](#prow-job-plugin)
- [Security](#security-plugin)
- [Session](#session-plugin)
- [Sosreport](#sosreport-plugin)
- [Utils](#utils-plugin)
Expand Down Expand Up @@ -176,6 +177,16 @@ A plugin to analyze and inspect Prow CI job results

See [plugins/prow-job/README.md](plugins/prow-job/README.md) for detailed documentation.

### Security Plugin

Container vulnerability grade reporting using container-grade-reporter tool

**Commands:**
- **`/security:image-grades` `<config.yaml> [--grade <grades>] [--email]`** - Generate container vulnerability grade report using container-grade-reporter
- **`/security:set-image-grade-tool-path` `<path>`** - Configure the path to container-grade-reporter tool

See [plugins/security/README.md](plugins/security/README.md) for detailed documentation.

### Session Plugin

A plugin to save and resume conversation sessions across long time intervals
Expand Down
28 changes: 28 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,34 @@
"hooks": [],
"has_readme": true
},
{
"name": "security",
"description": "CVE analysis and container image vulnerability scanning for Red Hat ecosystem",
"version": "0.1.0",
"commands": [
{
"name": "image-grades",
"description": "Generate container vulnerability grade report using container-grade-reporter",
"synopsis": "/security:image-grades <config.yaml> [--grade <grades>] [--email]",
"argument_hint": "<config.yaml> [--grade <grades>] [--email]"
},
{
"name": "set-image-grade-tool-path",
"description": "Configure the path to container-grade-reporter tool",
"synopsis": "/security:set-image-grade-tool-path <path>",
"argument_hint": "<path>"
}
],
"skills": [
{
"name": "Container Grade Reporter Integration",
"id": "container-grade-reporter",
"description": "Integration guide for using the container-grade-reporter tool to fetch and process container vulnerability grades"
}
],
"hooks": [],
"has_readme": true
},
{
"name": "sosreport",
"description": "Analyze sosreport archives for system diagnostics and troubleshooting",
Expand Down
9 changes: 9 additions & 0 deletions plugins/security/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"_comment": "Generated by Claude",
"name": "security",
"description": "Container vulnerability grade reporting using container-grade-reporter tool",
"version": "0.1.0",
"author": {
"name": "github.com/openshift-eng"
}
}
Loading