create-jira-task

create-jira-task is a command for coding agents from jpeseWang/solo-dev-workflow. It costs 0 tokens per session (1,663 once invoked), scanned A, original, MIT.

A command that creates Jira tasks, which are tracked work items in Jira, for a configured project.

In plain words
What is it for?
Creating English Jira tasks with a chosen issue type, active sprint, title, description, and acceptance criteria.
Why use it?
It uses stored project, assignee, authentication, and sprint details so the user does not have to repeat them each time.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/jpesewang/solo-dev-workflow/create-jira-task
Clone the repo
git clone --depth 1 https://github.com/jpeseWang/solo-dev-workflow

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for create-jira-task

README.md
[![agentmods](https://agentmods.dev/badge/commands/jpesewang/solo-dev-workflow/create-jira-task.svg)](https://agentmods.dev/commands/jpesewang/solo-dev-workflow/create-jira-task)
Your own site
<a href="https://agentmods.dev/commands/jpesewang/solo-dev-workflow/create-jira-task"><img src="https://agentmods.dev/badge/commands/jpesewang/solo-dev-workflow/create-jira-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,663 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01663
Opus 5 $0.00000 $0.00831
Sonnet 5 $0.00000 $0.00333
Haiku 4.5 $0.00000 $0.00166

Measured 3d ago against content hash b437603080cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

create-jira-task scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

SPRINT_ID=$(curl -sS -u "$JIRA_EMAIL:$JIRA_TOKEN" \
variants/team-jira/commands/create-jira-task.md · 144 lines

How it starts

The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an assistant that creates Jira tasks for the $PROJECT_NAME project. Do NOT ask again for information the user has already provided.

Defaults (do NOT ask the user — provided once in a previous session)

  • Project key: read from $JIRA_PROJECT_KEYS in config.env. For Acme this is PROJ (single project). If the user mentions a ticket ID in the request, auto-detect the key from it. Only ask if it cannot be detected and $JIRA_PROJECT_KEYS contains multiple values.
  • Assignee: read from $JIRA_ASSIGNEE_ID (accountId) in config.env.
  • Default issue type: Task (only ask if the user specifies otherwise — Story/Bug/Sub-task)
  • Sprint: query the active sprint via the API each time (sprints rotate, do not cache)
  • Content language: English (title, description, AC) — Acme is an international team

Env vars (read from .claude/config.env → fallback ~/.zshrc)

  • $JIRA_BASE_URL — Atlassian base URL (e.g. https://your-company.atlassian.net)
  • $JIRA_EMAIL — basic auth email
  • $JIRA_TOKEN — Atlassian API token

Safe check pattern:

[ -f ".claude/config.env" ] && source .claude/config.env
source ~/.zshrc 2>/dev/null || true
if [ -z "$JIRA_TOKEN" ] || [ -z "$JIRA_EMAIL" ] || [ -z "$JIRA_BASE_URL" ]; then
  echo "[ERROR] Missing JIRA_BASE_URL / JIRA_EMAIL / JIRA_TOKEN. Fill in .claude/config.env or ~/.zshrc."
  exit 1
fi

Process

0. Determine project + board id

# Parse JIRA_PROJECT_KEYS and JIRA_BOARD_IDS from config.env (format: "KEY1,KEY2" and "ID1,ID2")
# If the project key can be detected from a ticket ID the user mentions → use it directly
# If it CANNOT be detected → ASK the user to choose from the $JIRA_PROJECT_KEYS list

IFS=',' read -ra KEYS <<< "$JIRA_PROJECT_KEYS"
IFS=',' read -ra BIDS <<< "$JIRA_BOARD_IDS"
BOARD_ID=""
for i in "${!KEYS[@]}"; do
  if [ "${KEYS[$i]}" = "$JIRA_PROJECT_KEY" ]; then
    BOARD_ID="${BIDS[$i]}"
    break
  fi
done
if [ -z "$BOARD_ID" ]; then
  echo "[ERROR] JIRA_PROJECT_KEY '$JIRA_PROJECT_KEY' not found in JIRA_PROJECT_KEYS ($JIRA_PROJECT_KEYS)"
  exit 1
fi

Read the full file on GitHub · 144 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 144 lines · 0 tokens per session scan A b437603080cc

Subscribe to this mod's changes

create-jira-task is a command published in the GitHub repository jpeseWang/solo-dev-workflow (2 stars, last pushed 14d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,663 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.