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 @@ -78,6 +78,11 @@
"name": "hcp",
"source": "./plugins/hcp",
"description": "Generate HyperShift cluster creation commands via hcp CLI from natural language descriptions"
},
{
"name": "testing",
"source": "./plugins/testing",
"description": "Comprehensive test case generation and QA automation tools"
}
]
}
10 changes: 10 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
- [Openshift](#openshift-plugin)
- [Prow Job](#prow-job-plugin)
- [Session](#session-plugin)
- [Testing](#testing-plugin)
- [Utils](#utils-plugin)
- [Yaml](#yaml-plugin)

Expand Down Expand Up @@ -172,6 +173,15 @@ A plugin to save and resume conversation sessions across long time intervals

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

### Testing Plugin

Comprehensive test case generation and QA automation tools

**Commands:**
- **`/testing:generate-test-case-doc` `<feature_name> [--priority high|medium|low] [--component name] [--format markdown|docx]`** - Generate comprehensive test cases for a feature with priority filtering and multiple output formats

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

### Utils Plugin

A generic utilities plugin serving as a catch-all for various helper commands and agents
Expand Down
21 changes: 21 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,27 @@
}
],
"has_readme": true
},
{
"name": "testing",
"description": "Comprehensive test case generation and QA automation tools",
"version": "0.0.1",
"commands": [
{
"name": "generate-test-case-doc",
"description": "Generate comprehensive test cases for a feature with priority filtering and multiple output formats",
"synopsis": "/testing:generate-test-case-doc <feature_name> [--priority high|medium|low] [--component name] [--format markdown|docx]",
"argument_hint": "<feature_name> [--priority high|medium|low] [--component name] [--format markdown|docx]"
}
],
"skills": [
{
"name": "Test Case Document Generator",
"id": "testcase-doc-generator",
"description": "Generate comprehensive test case documents with DOCX export capability"
}
],
"has_readme": true
}
]
}
8 changes: 8 additions & 0 deletions plugins/testing/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "testing",
"description": "Comprehensive test case generation and QA automation tools",
"version": "0.0.1",
"author": {
"name": "github.com/openshift-eng"
}
}
Loading