CtrlK
BlogDocsLog inGet started
Tessl Logo

odyssey4me/jira

Search and manage Jira issues using JQL queries, create/update tickets, and manage workflows. Use when asked to find Jira tickets, check the backlog, manage sprints, track bugs, or work with Atlassian project management.

94

Quality

94%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

Overview
Skills
Evals
Files

jql-reference.mdreferences/

JQL Reference

Common JQL queries for use with the Jira skill.

Basic Queries

QueryDescription
project = DEMOIssues in DEMO project
assignee = currentUser()Issues assigned to you
status = "In Progress"Issues in progress
created >= -7dCreated in last 7 days
updated >= startOfDay()Updated today
priority = HighHigh priority issues
labels = "bug"Issues with "bug" label

Combine with AND, OR, and use ORDER BY for sorting.

Status Categories

Jira organizes all statuses into three categories. Use statusCategory for queries that work across projects:

CategoryMeaningExample Statuses
To DoNot startedOpen, Backlog, New
In ProgressBeing worked onIn Development, In Review
DoneCompletedClosed, Resolved, Done

Example: Instead of status = "Open" OR status = "Backlog", use statusCategory = "To Do".

Use $SKILL_DIR/scripts/jira.py statuses --categories to see all status categories in your Jira instance.

Date Functions

FunctionDescription
startOfDay()Start of today
endOfDay()End of today
startOfWeek()Start of current week
startOfMonth()Start of current month
-7dRelative: 7 days ago
-4wRelative: 4 weeks ago

Useful Patterns

# My open issues, highest priority first
assignee = currentUser() AND statusCategory != Done ORDER BY priority DESC

# Recently updated in a project
project = DEMO AND updated >= -7d ORDER BY updated DESC

# Unassigned bugs
project = DEMO AND issuetype = Bug AND assignee is EMPTY

# Issues created this sprint
project = DEMO AND sprint in openSprints()

# High priority items not yet started
priority in (High, Highest) AND statusCategory = "To Do"

Install with Tessl CLI

npx tessl i odyssey4me/jira@0.3.1

references

examples.md

jql-reference.md

permissions.md

scriptrunner.md

SKILL.md

tile.json