jira-daily

jira-daily is a skill for Claude Code from mgiovani/cc-arsenal. It costs 113 tokens per session (1,679 once invoked), scanned A, original, MIT.

A workflow that prepares a daily standup report from recent Jira work and Git activity. Jira is a work-tracking system, while Git records code changes.

In plain words
What is it for?
Use it to summarize completed tickets, current work, blockers, and related commits in a brief, Slack-ready, or manager-style update.
Why use it?
It saves time gathering yesterday’s work and avoids inaccurate updates by using only real tickets, statuses, commits, and explicitly recorded blockers.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter; mentions subagents; names the TodoWrite tool.

Part of the cc-arsenal-jira plugin — 3 skills shipped together , and of cc-arsenal

Good fit Use it to summarize completed tickets, current work, blockers, and related commits in a brief, Slack-ready, or manager-style update.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mgiovani/cc-arsenal/jira-daily
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.

Any agent
npx skills add mgiovani/cc-arsenal --skill jira-daily
Clone the repo
git clone --depth 1 https://github.com/mgiovani/cc-arsenal

Made for: Claude Code.

Or install cc-arsenal-jira, the plugin that ships this one along with the rest of its 3 skills.

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-daily

README.md
[![agentmods](https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/jira-daily/github.svg)](https://agentmods.dev/skills/mgiovani/cc-arsenal/jira-daily)
Your own site
<a href="https://agentmods.dev/skills/mgiovani/cc-arsenal/jira-daily"><img src="https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/jira-daily/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-daily

Your own site · 80×15
<a href="https://agentmods.dev/skills/mgiovani/cc-arsenal/jira-daily"><img src="https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/jira-daily.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,679 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.00113 $0.01679
Opus 5 $0.00056 $0.00839
Sonnet 5 $0.00023 $0.00336
Haiku 4.5 $0.00011 $0.00168

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

Security

Grade A, and why

jira-daily 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 11d 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.

skills/jira-daily/SKILL.md · 157 lines

How it starts

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

Jira Daily - Standup Meeting Preparation

Generates a structured standup update from real Jira and git activity. Complements jira-cli (general Jira command reference) and jira-todo (forward-looking planning, this skill looks backward at what was actually done).

Anti-Hallucination Guidelines

A standup report is only useful if every line traces back to a real query result:

  1. Only list tickets that came from actual jira CLI output.
  2. Only mark a ticket "Completed" if its status is Done/Closed/Released.
  3. Use real git log commit counts, never estimate.
  4. Only mention blockers explicitly labeled or discussed in Jira.
  5. Only include a report section if Phase 3 actually gathered data for it. Never fill a section with placeholder text like "[List any risks]" or invented numbers (story points, lines changed, coverage %): omit the section or field entirely instead. If a template field (Next steps, due date) isn't stated in the ticket's own description/comments/due-date field, leave it out rather than guessing.

Workflow

Phase 1: Determine Project Key

Priority order:

  1. Command argument: --project ABC or -p ABC
  2. Jira CLI config: read from ~/.config/.jira/.config.yml
PROJECT_KEY=$(cat ~/.config/.jira/.config.yml 2>/dev/null | grep -A1 "^project:" | grep "key:" | awk '{print $2}')
echo "Detected project: $PROJECT_KEY"

If no project key is found, ask the user to specify --project <KEY> rather than guessing one from repo name or branch.

Phase 2: Calculate Date Range

# Report since yesterday, or since Friday if today is Monday
if [[ $(date +%u) == 1 ]]; then
  SINCE_DATE=$(date -v-3d +%Y-%m-%d 2>/dev/null || date -d "3 days ago" +%Y-%m-%d)
else
  SINCE_DATE=$(date -v-1d +%Y-%m-%d 2>/dev/null || date -d "yesterday" +%Y-%m-%d)
fi
echo "Reporting since: $SINCE_DATE"

--since <date> overrides $SINCE_DATE directly.

Phase 3: Gather Activity Data

Every field that ends up in the report has to come from one of these commands: if a template field in Phase 5 isn't backed by output here, cut the field, not the discipline.

Read the full file on GitHub · 157 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 157 lines · 113 tokens per session scan A 56ff20a7a580

Subscribe to this mod's changes

jira-daily is a skill published in the GitHub repository mgiovani/cc-arsenal (8 stars, last pushed 2d ago), licensed MIT. It adds 113 tokens to every session and 1,679 once invoked, about $0.0006 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

gitlab

Agent-callable GitLab tools — manage issues and merge requests, review diffs, commit files, run pipelines, and search. Use when the user mentions GitLab or wants to review or merge an MR, commit code, run CI, or manage issues — even if they don't name GitLab explicitly.

zapier/connectors · 64 tokens

parallel-work-check

Apply before starting work on an existing branch. Checks for parallel work by other agents or developers that may supersede or conflict with your planned changes. Prevents wasted effort on stale branches.

ZaxbyHub/opencode-swarm · 41 tokens

implement-issue

Take a GitHub issue from planning to PR, resumable across clarification waits.

scharissis/polako · 15 tokens

harvest

Agent-callable Harvest tools — track time (log hours, start/stop timers), and manage the projects, clients, contacts, and tasks time is logged against, plus read invoices and account settings. Use when the user wants to log or edit time, manage Harvest projects/clients/tasks, or check what was billed — even if they…

zapier/connectors · 75 tokens

linear

Agent-callable Linear tools — create, update, find, and comment on issues; manage projects; and resolve teams, states, labels, users, and cycles. Use when the user mentions Linear or wants to track issues, even if they don't name Linear explicitly.

zapier/connectors · 55 tokens

4x-autopilot

An owner-only automation mode for the 4x feature pipeline, which manages tracked development tasks from selection through completion and merging. It runs one feature at a time and reads project settings to determine the repositories and workflow.

ggwhite/4x · 106 tokens