Add jira-dmtools Cursor Agent skill#90
Open
Alex-Tarasevich wants to merge 1 commit into
Open
Conversation
Adds skill for JIRA operations via dmtools CLI: main SKILL.md, readme, verify script, and 14 command-group subskills (search, tickets-read, ticket-create/update/delete, workflow, profile, comments, fix-versions, links-labels-priority, fieldsdata, metadata, attachments, xray, advanced). Made-with: Cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add jira-dmtools skill
Summary
Adds a Cursor Agent skill for performing JIRA operations via the dmtools CLI. The skill guides agents through connection verification, config setup, and running the right dmtools commands for search, read, create, update, workflow, comments, and other JIRA tasks.
What's included
Location:
.cursor/skills/jira-dmtools/SKILL.md– Agent flow (verify → config → run), command index by task, how to invoke dmtools.readme-jira-dmtools.md– Skill and script invocation flow (diagram + examples), full command list by group, config and usage notes.scripts/verify_jira_connection.py– Verifies JIRA connection and creates/refreshes.dmtools/jira.cfgusingdmtools.env(JIRA_BASE_PATH, JIRA_EMAIL, JIRA_API_TOKEN).SKILL.mdper command group undercommands/with exact tools, parameters, and examples:search– jira_search_by_jql, jira_search_by_page, jira_search_with_paginationtickets-read– jira_get_ticket, jira_get_subtasks, jira_get_comments, jira_get_transitionsticket-create– jira_create_ticket_basic, jira_create_ticket_with_json, jira_create_ticket_with_parentticket-update– jira_update_ticket, jira_update_field, jira_update_description, etc.ticket-delete– jira_delete_ticketworkflow– jira_move_to_status, jira_move_to_status_with_resolution, jira_assign_ticket_toprofile– jira_get_account_by_email, jira_get_my_profile, jira_get_user_profilecomments– jira_post_comment, jira_post_comment_if_not_existsfix-versions– jira_get_fix_versions, jira_set_fix_version, jira_add_fix_version, jira_remove_fix_versionlinks-labels-priority– jira_get_issue_link_types, jira_link_issues, jira_add_label, jira_set_priorityfieldsdata– jira_get_fields, jira_get_field_custom_code, jira_get_all_fields_with_namemetadata– jira_get_issue_types, jira_get_project_statuses, jira_get_componentsattachments– jira_attach_file_to_ticket, jira_download_attachmentxray– jira_xray_* (search, get details/steps/preconditions, create precondition, add to test, etc.)advanced– jira_execute_request (custom GET)Invocation flow
python .cursor/skills/jira-dmtools/scripts/verify_jira_connection.py --verify. If it fails (no or invalid.dmtools/jira.cfg), run the same script without--verify(optionally with--project PROJ) to create/refresh config, then retry verify.commands/<folder>/SKILL.md, then rundmtools <tool_name>with positional args or--data '<JSON>'. Output is JSON on stdout.Config is read from dmtools.env (or env):
JIRA_BASE_PATH,JIRA_EMAIL,JIRA_API_TOKEN; optionalJIRA_AUTH_TYPE(defaultbasic).Files
.cursor/skills/jira-dmtools/SKILL.md.cursor/skills/jira-dmtools/readme-jira-dmtools.md.cursor/skills/jira-dmtools/scripts/verify_jira_connection.py.dmtools/jira.cfg.cursor/skills/jira-dmtools/commands/<group>/SKILL.mdDocumentation and scripts only; requires dmtools CLI and JIRA credentials in dmtools.env.