334
53
Source

Atlassian Jira expert for creating and managing projects, planning, product discovery, JQL queries, workflows, custom fields, automation, reporting, and all Jira features. Use for Jira project setup, configuration, advanced search, dashboard creation, workflow design, and technical Jira operations.

Install

mkdir -p .claude/skills/jira-expert && curl -L -o skill.zip "https://mcp.directory/api/skills/download/258" && unzip -o skill.zip -d .claude/skills/jira-expert && rm skill.zip

Installs to .claude/skills/jira-expert

About this skill

Atlassian Jira Expert

Overview

This skill provides comprehensive Jira expertise for project configuration, workflow design, advanced JQL queries, automation rules, custom fields, dashboards, and reporting. It covers all technical and operational aspects of Jira including Scrum/Kanban board setup, permission schemes, bulk operations, and integration with Confluence and external tools through the Atlassian MCP server.

Target users include Jira administrators, project managers, Scrum Masters, technical leads, and agile coaches who need to configure projects, optimize workflows, create advanced filters and dashboards, or automate Jira operations. This skill is essential for teams setting up new Jira projects, customizing workflows, implementing automation, or generating portfolio-level reports.

Core Value: Reduce project setup time by 60% through templates and automation, improve team productivity by 35% through optimized workflows and JQL filters, and increase reporting efficiency by 70% through custom dashboards and automated data extraction.

Core Capabilities

  • Project Configuration & Workflows - Create and configure Jira projects (Scrum, Kanban, custom) with custom workflows, issue types, fields, screens, and permission schemes
  • JQL Mastery & Advanced Queries - Write complex JQL queries for any use case, build saved filters with multiple conditions, optimize query performance, and create team-specific views
  • Automation & Integration - Design Jira automation rules, configure webhooks, set up email notifications, and integrate with external tools (Confluence, Slack, CI/CD)
  • Dashboards & Reporting - Create custom dashboards with gadgets, build reports for sprint metrics, velocity, burndown, configure portfolio-level reporting, and export data for executive visibility
  • Atlassian MCP Integration - Direct Jira operations via MCP server for project creation, JQL execution, issue updates, sprint management, report generation, and workflow configuration

Quick Start

Common Jira Operations

This skill provides Jira expertise through knowledge frameworks, JQL patterns, and workflow templates. Actual Jira operations are performed through the Atlassian MCP server configured in Claude Code settings.

Access Documentation Resources

  • JQL reference: See JQL Query Building section for operators, functions, and powerful query examples
  • Workflow patterns: See Workflow Design section for workflow configuration and transition setup
  • Automation examples: See Automation Rules section for trigger, condition, and action patterns
  • Dashboard templates: See Dashboard Creation section for gadget configuration and layout patterns

Key Workflows to Start With

  1. Configure New Scrum Project - Set up a new Jira project with workflow, permissions, and board (1.5 hours)
  2. Build Advanced Dashboard for Reporting - Create executive dashboard with key metrics and JQL filters (1 hour)
  3. Create Automation Rules for Team Efficiency - Implement automation to reduce manual work (1 hour)
  4. Master JQL for Complex Queries - Build advanced queries for filtering, reporting, and bulk operations (varies)

Key Workflows

1. Configure New Scrum Project

Time: 1.5 hours

Steps:

  1. Create Jira project - Go to Projects → Create project → Select Scrum template
    • Project key (e.g., "PROJ" - 2-4 uppercase letters)
    • Project name and description
    • Project lead (should be Senior PM)
    • Default assignee preference
  2. Configure issue types - Customize the issue types for your workflow
    • Epic: Large features/initiatives
    • Story: User-facing feature work
    • Task: Non-user-facing work
    • Bug: Defect reports
    • Subtask: Breakdown complex stories
    • Optional: Add custom types (e.g., "Spike" for research)
  3. Create workflow schema - Design workflow states and transitions
    To Do → In Progress → In Review → Done
    - To Do: Initial state for all issues
    - In Progress: Active development
    - In Review: Awaiting code/design review
    - Done: Complete and merged/deployed
    
    • Define who can transition between states
    • Add validators (required fields before transition)
    • Add post-functions (auto-assign, notify watchers)
  4. Set up project permissions - Configure who can browse, create, and manage issues
    • Developers: Create/Edit/Transition issues
    • QA: Create bugs, view all issues
    • PM: Admin access
    • Stakeholders: View-only
  5. Configure board and backlog - Set up Scrum board for sprint management
    • Enable columns for each workflow state
    • Configure backlog visibility
    • Set default issue view
  6. Create board filters and saved searches - Set up standard queries for team use
    • My Issues: assignee = currentUser() AND status != Done
    • Blocked: issuekey in linkedIssues(PROJ, "is blocked by")
    • Ready for Dev: priority >= High AND status = "To Do"

Expected Output: Fully configured Scrum project ready for team to begin working. Team can create stories, manage sprints, and track progress with consistent workflow and permissions.

See Project Configuration section for detailed configuration options.

2. Build Advanced Dashboard for Reporting

Time: 1 hour

Steps:

  1. Create new shared dashboard - Dashboards → Create Dashboard
    • Name: "Team Metrics" or similar
    • Make it shared with team
    • Set default filters if needed
  2. Add sprint burndown gadget - Shows sprint progress week by week
    • Select current sprint
    • Configure to show ideal vs actual burndown
    • Helps identify falling behind early
  3. Add velocity chart gadget - Tracks story points completed per sprint
    • Use last 10 sprints
    • Shows team capacity trends
    • Helps forecast future sprint capacity
  4. Add created vs resolved gadget - Shows issue intake vs completion rate
    • Monitors if backlog is growing/shrinking
    • Use 30-day timeframe
  5. Add filter results gadget - Custom issue list using JQL
    # High priority bugs
    type = Bug AND priority = High AND status != Done
    
    • Add separate gadget for high priority issues
    • Add gadget for overdue issues
  6. Arrange and share dashboard - Position gadgets for readability
    • Executive summary at top
    • Detailed metrics below
    • Share with stakeholders

Expected Output: Live dashboard providing real-time view into team metrics, sprint health, and backlog status. Stakeholders can monitor progress without asking for updates.

See Dashboard Creation section for detailed gadget configuration.

3. Set Up Automation Rules for Common Tasks

Time: 1.5 hours

Steps:

  1. Create automatic status updates - Trigger on field changes
    • When "Fix Version" is set to current sprint → Auto-move story to "In Progress"
    • When all subtasks marked Done → Auto-move parent to "In Review"
    • Reduces manual status updates
  2. Create auto-assignment rules - Route work to appropriate team members
    • When type = Bug and priority = High → Assign to @dev-lead
    • When type = Story and label = "backend" → Assign to backend team
    • Balance work distribution
  3. Create notification automation - Keep stakeholders informed
    • When status changes to "In Review" → Notify assigned reviewer
    • When issue moved to "Done" → Notify watchers with summary
    • When issue created with "Blocker" label → Notify PM
  4. Create linked issue automation - Maintain relationships
    • When Epic moved to "Done" → Auto-close all child stories marked Done
    • When story linked to QA Epic → Add QA label
    • Keep related issues in sync
  5. Test automation with sample data - Create test issues in each scenario
    • Verify rules fire correctly
    • Check notifications arrive
    • Confirm field updates work as expected
  6. Enable and monitor - Turn on automation in production
    • Monitor for 1 week for edge cases
    • Adjust rules if needed
    • Document rules for team reference

Expected Output: Automated Jira workflow handling routine tasks, reducing manual work and keeping team informed. Common patterns (status updates, assignments, notifications) happen automatically.

See Automation Rules section for pattern examples.

4. Execute Bulk Data Cleanup and Migration

Time: 2 hours

Steps:

  1. Identify target issues using JQL - Write query to find all issues needing update
    # Example: All high priority bugs without fix version
    type = Bug AND priority = High AND fixVersion is EMPTY
    
    • Test query to ensure correct scope
    • Check count of affected issues
  2. Create backup report - Export data before making changes
    • Use Issues → Export to Excel
    • Save report with timestamp
    • Document what changes are being made
  3. Perform bulk change operation - Select → Tools → Bulk Change
    • Select target issues from query
    • Choose fields to update (e.g., Fix Version, Epic Link, Labels)
    • Preview changes before executing
    • Execute bulk operation
  4. Verify migration success - Check sample of updated issues
    • Spot check 10-20 updated issues
    • Verify fields updated correctly
    • Check that no data was lost
  5. Update affected reports and dashboards - Refresh any dashboards or filters
    • Rerun velocity reports
    • Update any hardcoded issue lists
    • Notify team of changes
  6. Document changes - Create audit trail
    • Record what was changed
    • Why the change was made
    • Date and who performed it

Expected Output: Data cleanup completed successfully with verified accuracy. Old or incorrect data is corrected, and audit trail is documented for compliance/reference.

See Bulk Operations section for detailed operation procedures.

Python Tools

This skill does not include Python automation tools. Jira operations are performed directly through the Atlass


Content truncated.

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,5791,372

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

1,1201,195

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

1,4201,110

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

1,201751

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,160687

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,331621

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.