You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/jira/README.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ Comprehensive Jira integration for Claude Code, providing AI-powered tools to an
8
8
- 📊 **Status Rollups** - Generate comprehensive status rollup comments for any Jira issue given a date range
9
9
- 📋 **Backlog Grooming** - Analyze new bugs and cards for grooming meetings
10
10
- 🧪 **Test Generation** - Generate comprehensive test steps for JIRA issues by analyzing related PRs
11
+
- ✨ **Issue Creation** - Create well-formed stories, epics, features, tasks, and bugs with guided workflows
11
12
- 🤖 **Automated Workflows** - From issue analysis to PR creation, fully automated
12
13
- 💬 **Smart Comment Analysis** - Extracts blockers, risks, and key insights from comments
13
14
@@ -151,6 +152,63 @@ Generate comprehensive test steps for a JIRA issue by analyzing related pull req
151
152
152
153
See [commands/generate-test-plan.md](commands/generate-test-plan.md) for full documentation.
153
154
155
+
---
156
+
157
+
### `/jira:create` - Create Jira Issues
158
+
159
+
Create well-formed Jira issues (stories, epics, features, tasks, bugs) with intelligent defaults, interactive guidance, and validation. The command applies project-specific conventions, suggests components based on context, and provides templates for consistent issue creation.
160
+
161
+
**Usage:**
162
+
```bash
163
+
# Create a story
164
+
/jira:create story MYPROJECT "Add user dashboard"
165
+
166
+
# Create a story with options
167
+
/jira:create story MYPROJECT "Add search functionality" --component "Frontend" --version "2.5.0"
-**Universal requirements** - All tickets MUST include Security Level: Red Hat Employee and label: ai-generated-jira
187
+
-**Smart defaults** - Project and team-specific conventions applied automatically
188
+
-**Interactive templates** - Guides you through user story format, acceptance criteria, bug templates
189
+
-**Security validation** - Scans for credentials and secrets before submission
190
+
-**Extensible** - Supports project-specific and team-specific skills for custom workflows
191
+
-**Hybrid workflow** - Required fields as arguments, optional fields as interactive prompts
192
+
193
+
**Supported Issue Types:**
194
+
-`story` - User stories with acceptance criteria
195
+
-`epic` - Epics with parent feature linking
196
+
-`feature` - Strategic features with market problem analysis
197
+
-`task` - Technical tasks and operational work
198
+
-`bug` - Bug reports with structured templates
199
+
200
+
**Project-Specific Conventions:**
201
+
202
+
Different projects may have different conventions (security levels, labels, versions, components, etc.). The command automatically detects your project and applies the appropriate conventions via project-specific skills.
203
+
204
+
**Team-Specific Conventions:**
205
+
206
+
Teams may have additional conventions layered on top of project conventions (component selection, custom fields, workflows, etc.). The command automatically detects team context and applies team-specific skills.
207
+
208
+
See [commands/create.md](commands/create.md) for full documentation.
0 commit comments