Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
558ce72
Add jira:backlog command to find suitable tickets from backlog
ehearne-redhat Oct 29, 2025
2c9b5b8
Merge remote-tracking branch 'upstream/main' into jira-backlog-command
ehearne-redhat Nov 1, 2025
91f3701
Update generated documentation for jira:backlog command
ehearne-redhat Nov 1, 2025
4462593
feat(docs): add search autocomplete and README links to plugin modals
stbenjam Oct 31, 2025
601c3c2
docs: add guidance around use of identities in AI plugin development
stbenjam Oct 30, 2025
931b4a3
feat(must-gather): add OVN database analysis with ovsdb-tool
kyrtapz Oct 30, 2025
6996e4f
Add /ci:add-debug-wait command for debugging CI workflows
Oct 31, 2025
6e3f7f7
Add cluster-health-check command to openshift plugin
Oct 31, 2025
8ad0f06
add deps
Oct 31, 2025
8c2a781
feat(jira): add create-release-note command
bryan-cox Oct 30, 2025
dae905f
feat(jira): add create-release-note skill
bryan-cox Oct 30, 2025
464194e
docs(jira): document create-release-note command
bryan-cox Oct 30, 2025
8dfff1b
chore: regenerate plugin documentation
bryan-cox Oct 30, 2025
f4926e3
fix(jira): improve PR discovery in create-release-note command
bryan-cox Oct 31, 2025
8ac8ed0
Bootstrap a coderabbit config
stbenjam Nov 3, 2025
53d703b
Correct coderabbit config
stbenjam Nov 3, 2025
19edfbe
updating plugin
gangwgr Oct 30, 2025
e601e9e
updating plugin
gangwgr Oct 30, 2025
5f7ac8a
add plugin /test-result-sipp to query test result
Xia-Zhao-rh Nov 3, 2025
dbfb6bb
Add claude interactive google service account creation
ngopalak-redhat Oct 31, 2025
83287ee
feat(ci): add timeout parameter to add-debug-wait command
LiangquanLi930 Nov 5, 2025
a310149
Update generated documentation for jira:backlog command
ehearne-redhat Nov 1, 2025
fa7d3ab
chore: regenerate plugin documentation
bryan-cox Oct 30, 2025
b00cdbf
Update generated documentation for jira:backlog command
ehearne-redhat Nov 1, 2025
7e0f820
chore: regenerate plugin documentation
bryan-cox Oct 30, 2025
930ca04
Update generated documentation for jira:backlog command
ehearne-redhat Nov 1, 2025
9894458
Merge branch 'main' into jira-backlog-command
ehearne-redhat Nov 6, 2025
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
1 change: 1 addition & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ See [plugins/hello-world/README.md](plugins/hello-world/README.md) for detailed
A plugin to automate tasks with Jira

**Commands:**
- **`/jira:backlog` `[project-key] [--assignee username] [--days-inactive N]`** - Find suitable JIRA tickets from the backlog to work on based on priority and activity
- **`/jira:create-release-note` `<issue-key>`** - Generate bug fix release notes from Jira tickets and linked GitHub PRs
- **`/jira:create` `<type> [project-key] <summary> [--component <name>] [--version <version>] [--parent <key>]`** - Create Jira issues (story, epic, feature, task, bug) with proper formatting
- **`/jira:generate-test-plan` `[JIRA issue key] [GitHub PR URLs]`** - Generate test steps for a JIRA issue
Expand Down
12 changes: 12 additions & 0 deletions docs/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@
"description": "A plugin to automate tasks with Jira",
"version": "0.0.1",
"commands": [
{
"name": "create-release-note",
"description": "Generate bug fix release notes from Jira tickets and linked GitHub PRs",
"synopsis": "/jira:create-release-note <issue-key>",
"argument_hint": "<issue-key>"
},
{
"name": "backlog",
"description": "Find suitable JIRA tickets from the backlog to work on based on priority and activity",
"synopsis": "/jira:backlog [project-key] [--assignee username] [--days-inactive N]",
"argument_hint": "[project-key] [--assignee username] [--days-inactive N]"
},
{
"name": "create-release-note",
"description": "Generate bug fix release notes from Jira tickets and linked GitHub PRs",
Expand Down
Loading
Loading