daf-jira-fields

daf-jira-fields is a skill for Claude Code, Codex from itdove/devaiflow. It costs 19 tokens per session (1,829 once invoked), scanned A, original, Apache-2.0.

A set of rules for matching JIRA fields to DevAIFlow commands. JIRA is a system for tracking software work through issues, and fields store details such as priority, labels, or organization-specific values.

In plain words
What is it for?
Use it when creating or updating JIRA issues, especially when setting components, labels, assignees, versions, or custom fields.
Why use it?
It prevents commands from putting standard fields in the wrong place and helps users discover the correct names and IDs for custom fields.

Skill for Claude CodeCodex

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 skills/itdove/devaiflow/daf-jira-fields
Any agent
npx skills add itdove/devaiflow --skill daf-jira-fields
Clone the repo
git clone --depth 1 https://github.com/itdove/devaiflow

Made for: Claude Code, Codex.

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 daf-jira-fields

README.md
[![agentmods](https://agentmods.dev/badge/skills/itdove/devaiflow/daf-jira-fields.svg)](https://agentmods.dev/skills/itdove/devaiflow/daf-jira-fields)
Your own site
<a href="https://agentmods.dev/skills/itdove/devaiflow/daf-jira-fields"><img src="https://agentmods.dev/badge/skills/itdove/devaiflow/daf-jira-fields.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,829 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00019 $0.01829
Opus 5 $0.00010 $0.00915
Sonnet 5 $0.00004 $0.00366
Haiku 4.5 $0.00002 $0.00183

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

Security

Grade A, and why

daf-jira-fields scanned grade A with 0 findings 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

devflow/cli_skills/daf-jira-fields/SKILL.md · 279 lines

How it starts

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

JIRA Field Intelligence for DevAIFlow

Understanding JIRA field mappings, validation rules, and defaults for creating/updating JIRA issues.

Quick Discovery

# Discover YOUR JIRA's custom fields
daf config show --fields

# Refresh from JIRA API
daf config refresh-jira-fields

# View merged config
daf config show

System vs Custom Fields (CRITICAL)

System Fields

Standard JIRA fields with dedicated CLI options:

Fields: components, labels, assignee, reporter, priority, security-level, fixVersions, affectedVersions

Usage:

# ✅ CORRECT
daf jira create bug --components backend --labels urgent --assignee jdoe

# ❌ WRONG - Will error
daf jira create bug --field components=backend  # Error: Use --components option

Array syntax: Comma-separated values

--components backend,frontend,api
--labels urgent,production

Custom Fields

Organization-specific fields with IDs like customfield_12345. Use --field with mapped names.

Discovery:

daf config show --fields

Usage:

# Use YOUR organization's field names (not generic examples)
daf jira create story \
  --summary "Feature" \
  --parent PROJ-1234 \
  --field <your_field_name>=<value>

Never use customfield IDs directly:

# ❌ WRONG
--field customfield_12345=value

# ✅ CORRECT - Use mapped name
--field team_assignment=value

Field Mapping Structure

Location: $DEVAIFLOW_HOME/backends/jira.json

Structure:

{
  "field_mappings": {
    "<field_name>": {
      "id": "customfield_XXXXX",
      "name": "Display Name",
      "type": "option|string|number|array|user|version",
      "required_for": ["Story", "Task"],
      "available_for": ["Story", "Task", "Epic"],
      "allowed_values": ["Value1", "Value2"]
    }
  }
}

Attributes:

  • id - JIRA customfield ID
  • type - Field type (string, number, option, array, user, version)
  • required_for - Issue types where field is required
  • available_for - Issue types where field can be used
  • allowed_values - Valid values (for select fields)

Read the full file on GitHub · 279 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. 4d ago First seen · 279 lines · 19 tokens per session scan A c12bfc4f7691

Subscribe to this mod's changes

daf-jira-fields is a skill published in the GitHub repository itdove/devaiflow (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 19 tokens to every session and 1,829 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

pir-action-tracker

Parses Post-Incident Review (PIR) pages in a Confluence space, fetches live status from referenced Jira tickets, updates action item tables with current status and due dates, marks completed PIRs with a visual closure panel, and surfaces any overdue actions for follow-up. Designed for Customer Success, Support, and…

Perseus-Computing-LLC/perseus · 78 tokens

workingon

Record the work done in this Claude Code session in the configured ticketing tool (Jira, Linear, GitHub Issues, Trello or Vikunja), creating the ticket, adding a short progress comment, linking an existing one or closing it. Use it when the [workingon] hook reports unrecorded work, when the user types /workingon, and…

oliverjueguen/workingon-claude-skill · 92 tokens

workingon

Record the work done in this Claude Code session in the configured ticketing tool (Jira, Linear, GitHub Issues, Trello or Vikunja), creating the ticket, adding a short progress comment, linking an existing one or closing it. Use it when the [workingon] hook reports unrecorded work, when the user types /workingon, and…

oliverjueguen/workingon-claude-skill · 92 tokens

bump-dependency

Bumps a Python package dependency across Home Assistant Core integrations, regenerates core requirement files, runs verification tests and prek lint, and prepares a pull request with proper release/compare links.

home-assistant/core · 42 tokens

mem0-vercel-ai-sdk

Mem0 provider for Vercel AI SDK (@mem0/vercel-ai-provider). TRIGGER when: user mentions "vercel ai sdk", "@mem0/vercel-ai-provider", "createMem0", "retrieveMemories", "addMemories", "getMemories", "searchMemories", "mem0 vercel", "AI SDK provider", "AI SDK memory", or is using generateText/streamText with mem0. Also…

mem0ai/mem0 · 146 tokens

schema-exploration

Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.

langchain-ai/deepagents · 57 tokens