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 skills/itdove/devaiflow/daf-jira-fieldsnpx skills add itdove/devaiflow --skill daf-jira-fieldsgit clone --depth 1 https://github.com/itdove/devaiflowWrote 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/skills/itdove/devaiflow/daf-jira-fields)<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>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.00019 | $0.01829 |
| Opus 5 | $0.00010 | $0.00915 |
| Sonnet 5 | $0.00004 | $0.00366 |
| Haiku 4.5 | $0.00002 | $0.00183 |
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.
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 IDtype- Field type (string, number, option, array, user, version)required_for- Issue types where field is requiredavailable_for- Issue types where field can be usedallowed_values- Valid values (for select fields)
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.
- 4d ago First seen · 279 lines · 19 tokens per session scan A c12bfc4f7691
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.
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…
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…
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…
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.
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…
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.