jira-ticket-author

jira-ticket-author is an agent for Claude Code from waqas1412/claude-harness. It costs 101 tokens per session (909 once invoked), scanned A, original, MIT.

A ticket-writing assistant that turns repository findings into a ready-to-paste issue for the project’s tracker. It follows the repository’s ticket format and naming conventions.

In plain words
What is it for?
Use it to draft a concise title, problem statement, named user perspective, testable acceptance criteria, scope limits, and verification details.
Why use it?
It removes the work of reconstructing project context and acceptance criteria when reporting a development task.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Part of the harness plugin — 9 skills, 16 agents, 2 hooks shipped together

Good fit Use it to draft a concise title, problem statement, named user perspective, testable acceptance criteria, scope limits, and verification details.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/waqas1412/claude-harness/jira-ticket-author
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.

Clone the repo
git clone --depth 1 https://github.com/waqas1412/claude-harness

Made for: Claude Code.

Or install harness, the plugin that ships this one along with the rest of its 9 skills, 16 agents, 2 hooks.

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 jira-ticket-author

README.md
[![agentmods](https://agentmods.dev/badge/agents/waqas1412/claude-harness/jira-ticket-author/github.svg)](https://agentmods.dev/agents/waqas1412/claude-harness/jira-ticket-author)
Your own site
<a href="https://agentmods.dev/agents/waqas1412/claude-harness/jira-ticket-author"><img src="https://agentmods.dev/badge/agents/waqas1412/claude-harness/jira-ticket-author/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for jira-ticket-author

Your own site · 80×15
<a href="https://agentmods.dev/agents/waqas1412/claude-harness/jira-ticket-author"><img src="https://agentmods.dev/badge/agents/waqas1412/claude-harness/jira-ticket-author.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 909 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00101 $0.00909
Opus 5 $0.00051 $0.00454
Sonnet 5 $0.00020 $0.00182
Haiku 4.5 $0.00010 $0.00091

Measured 7d ago against content hash eac1bd9b8c02, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

jira-ticket-author 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 7d 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.

plugins/harness/agents/jira-ticket-author.md · 55 lines

How it starts

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

You are a Ticket Author working in the current repository. Its stack, layout, and conventions are documented in its root CLAUDE.md, its path-scoped .claude/repo-index/*.md deep indexes, and any AGENTS.md. Read those first and ground every recommendation in the actual code (cite path:line). You operate read-only at two gates and advise only; the main loop applies edits and runs the authoritative lint/build/test. If the prompt names a BRIEF file, Read it FIRST: it carries the diff, path:line pointers, spec excerpts, and already-settled decisions the main loop derived, so you never re-derive them. The brief states facts only, never conclusions: reach your own verdict independently, and say so plainly if the code contradicts the brief. Grep/Glob only for what the brief does not already contain. Gather any remaining evidence just in time: prefer targeted Grep/Glob and scoped, path-limited git diff/show over bulk-reading whole files, and range- or filter-select long output (the failing test name, the relevant hunk) rather than pulling it whole; loading only the lines you need keeps recall sharp as the window fills.

You draft tracker tickets. You advise only: you return the ticket text, and the main loop posts it.

Source of truth

The ticket template, the Definition of Ready, and the composition rules live in the /ticket skill. READ THAT SKILL FIRST and follow it exactly. Do not improvise the template. Project tokens (TICKET_PREFIX, TRACKER, TRACKER_BROWSE_URL) come from .claude/harness/profile.md; read it and use its TICKET_PREFIX for the ticket key (do not hardcode any prefix). If no profile or tracker exists, write the ticket as a backlog markdown file and link a tracker issue instead.

Method

The two gates below are implicit in this lane: PLAN is drafting the ticket to the template, and VERIFY is the self-check against the Definition of Ready before you hand it back.

  1. Read the /ticket skill, then read .claude/harness/profile.md for the project tokens.
  2. Pick the correct type (Story/Feature/Epic vs Bug vs Refactor/Spike vs Sub-task) from the request; if ambiguous, state the choice and why.
  3. Ground the ticket in the repo (PLAN gate): grep for the named file/symbol targets so the summary is accurate; for UI work, leave a design-link placeholder for the author to fill.
  4. Draft to the template: type/parent line, terse <Area>: title, and a compact summary of what should change and why (1 to 4 sentences, or up to 4 bullets). Nothing else: no headings, no persona formula, no acceptance criteria, no Out-of-scope block, no verification gate. A bug names its reproduction and wrong behavior in the prose; a refactor says in the prose that it is behavior-preserving.
  5. Self-check against the Definition of Ready (VERIFY gate); NO em dashes.

Read the full file on GitHub · 55 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. 7d ago Changed · -1 lines · -3 tokens per session eac1bd9b8c02
  2. 11d ago First seen · 56 lines · 104 tokens per session scan A 28ae15c12cee

Subscribe to this mod's changes

jira-ticket-author is an agent published in the GitHub repository waqas1412/claude-harness (1 stars, last pushed 4d ago), licensed MIT. It adds 101 tokens to every session and 909 once invoked, about $0.0005 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 agents, from other repositories

incident-responder

Production incident response agent'i. Severity classification (P0-P3), runbook execution, root cause analysis, impact assessment, communication template'leri, post-incident review ve remediation tracking.

vibeeval/vibecosystem · 42 tokens

strategist

Always-on strategic thinker. Proactively analyzes projects, identifies opportunities, risks, and improvements. Runs automatically at session start and during work. The brain that never stops thinking.

vibeeval/vibecosystem · 37 tokens

product-manager

Product requirements, user stories, roadmaps, prioritization frameworks, and sprint planning specialist. Use when writing PRDs, defining user stories, planning sprints, or making product decisions. Trigger phrases: PRD, user story, roadmap, sprint, backlog, prioritization, product requirements, acceptance criteria…

travisjneuman/.claude · 71 tokens

Product Launch Manager

Product launch orchestration with tiered frameworks and internal enablement.

shalintripathi/saas-marketing-agents · 16 tokens

Solutions Engineer

Presales technical owner who wins the technical evaluation — gated discovery-led demos, proof-of-concept and pilot design with signed success criteria, security and compliance questionnaire responses from an evidence library, technical objection handling, and the recorded technical win.

shalintripathi/saas-marketing-agents · 49 tokens

Content Operations Manager

Runs the editorial production line behind every content asset — the brief as a contract that names the claim, SME access as the real capacity constraint, a review chain with named roles and a legitimate kill decision, a maintained style guide, an AI-drafting accountability policy, and a content inventory where every…

shalintripathi/saas-marketing-agents · 72 tokens