with one click
new-task
Create a new Jira task with proper wiki markup formatting
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a new Jira task with proper wiki markup formatting
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Marks Jira tickets as Done when their commits have been merged into the current branch. Use whenever the user wants to sync Jira with merged commits — e.g. "mark done", "close tickets from commits", "sync Jira with merged PRs", "any Jira tickets to close?", or after a batch of PRs lands. Works with any Jira project key.
Set up shared Git hooks using gabyx/Githooks (not standard git hooks). Use when a user asks to set up githooks, apply shared hooks, or configure hook repositories in a project.
Generate GitHub Actions CI workflows that call Makefile targets for consistent local and CI behavior. Use when a user asks about CI setup, GitHub Actions, continuous integration, or CI/CD pipelines.
Expert knowledge for Protocol Buffer development. Includes style guidelines, backward compatibility, design patterns, and build system detection (buf, Bazel). Use when creating, modifying, or reviewing .proto files or proto build rules.
Edit JIRA issue descriptions using the jira CLI tool. Use when the user asks to update, modify, or edit a JIRA issue description, or when creating detailed documentation for JIRA tickets.
Create a new Jira bug report with proper wiki markup formatting
| name | new-task |
| description | Create a new Jira task with proper wiki markup formatting |
| argument-hint | <PROJECT or EPIC-123> |
Create Jira task with the following steps
First, write the task description content in a temporary file:
\n escape sequences and backslash escapes.edit-description skill for
detailed formatting rules).{code:language}...{code} syntaxCreate a task using jira command:
jira issue create -tTask -s"Summary Text" -b"$(cat description.txt)" -p$ARGUMENTS.jira issue create -tTask -s"Summary Text" -b"$(cat description.txt)" -P$ARGUMENTS
to create a task under the given Epic.jira me to set the assignee:
-a"$(jira me --raw | jq -r '.emailAddress')".