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.
npx agentmods add commands/jpesewang/solo-dev-workflow/create-jira-taskgit clone --depth 1 https://github.com/jpeseWang/solo-dev-workflowWrote 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.
[](https://agentmods.dev/commands/jpesewang/solo-dev-workflow/create-jira-task)<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>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.
| Model | Per session | Once 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 |
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" \ 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_KEYSin config.env. For Acme this isPROJ(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_KEYScontains 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
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.
- 3d ago First seen · 144 lines · 0 tokens per session scan A b437603080cc
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.
Other commands, from other repositories
project-recap
Generate a visual project recap for context switching.
os-meeting
快速创建和管理AI团队会议.
workspace
Testany Workspace, 管理工作空间,成员权限,团队组织.
standup
Show a daily standup summary with completed, in-progress, and blocked tasks across all active epics.
m-task-planner
Target: $ARGUMENTS (Default: requirement document(s) discovered in the project).
triage
Triage ServiceNow incidents — list open incidents, assess priority, investigate a specific INC, or analyze trends.