jira-daily-pm-radar

jira-daily-pm-radar is a skill for Claude Code, Codex from letya999/jira-daily-pm-radar. It costs 57 tokens per session (1,238 once invoked), scanned C, original, MIT.

A skill that creates daily project-management reports from Jira, a tool for tracking software issues and sprints. It compares recent changes, finds stalled or poorly prepared work, and produces an HTML report.

In plain words
What is it for?
Checking what changed since yesterday, finding blocked sprint work, reviewing backlog quality, identifying issues needing grooming, and generating Jira reports.
Why use it?
It turns scattered Jira updates into a focused list of risks and actions for the day.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Checking what changed since yesterday, finding blocked sprint work, reviewing backlog quality, identifying issues needing grooming, and generating Jira reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/letya999/jira-daily-pm-radar/jira-daily-pm-radar
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 letya999/jira-daily-pm-radar --skill jira-daily-pm-radar
Clone the repo
git clone --depth 1 https://github.com/letya999/jira-daily-pm-radar

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 jira-daily-pm-radar

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/letya999/jira-daily-pm-radar/jira-daily-pm-radar"><img src="https://agentmods.dev/badge/skills/letya999/jira-daily-pm-radar/jira-daily-pm-radar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,238 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00057 $0.01238
Opus 5 $0.00028 $0.00619
Sonnet 5 $0.00011 $0.00248
Haiku 4.5 $0.00006 $0.00124

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

Security

Grade C, and why

jira-daily-pm-radar scanned grade C with 2 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 12d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- Linux/macOS: `curl -LsSf https://astral.sh/uv/install.sh | sh`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Linux/macOS: `curl -LsSf https://astral.sh/uv/install.sh | sh`
skills/jira-daily-pm-radar/SKILL.md · 150 lines

How it starts

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

Jira Daily PM Radar

This skill answers daily PM questions:

  1. What changed since yesterday?
  2. Where is the current sprint stuck?
  3. Who may have forgotten to move/update issues?
  4. What in the next sprint is not ready?
  5. What in the backlog smells?
  6. What should the PM do today?

Prerequisites

Only uv is required. Install it once:

  • Linux/macOS: curl -LsSf https://astral.sh/uv/install.sh | sh
  • Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Verify: uv --version

Running CLI

Run directly via uvx - no clone needed:

# Daily report (mock mode, no real Jira needed)
uvx --from git+https://github.com/letya999/jira-daily-pm-radar.git \
  jira-radar daily --project DEMO --mock --out reports/

# Daily report (real Jira)
uvx --from git+https://github.com/letya999/jira-daily-pm-radar.git \
  jira-radar daily --project PROJ --board-id 123 --since yesterday --out reports/

# Check connectivity
uvx --from git+https://github.com/letya999/jira-daily-pm-radar.git \
  jira-radar doctor

Environment variables (set before calling or pass via shell):

MCP client config

{
  "mcpServers": {
    "jira-daily-pm-radar": {
      "command": "uvx",
      "args": [
        "--from", "git+https://github.com/letya999/jira-daily-pm-radar.git[mcp]",
        "jira-radar-mcp"
      ],
      "env": {
        "JIRA_BASE_URL": "<YOUR_JIRA_URL>",
        "JIRA_EMAIL": "<YOUR_JIRA_EMAIL>",
        "JIRA_API_TOKEN": "<YOUR_JIRA_API_TOKEN>"
      }
    }
  }
}

First run downloads and caches the package. Subsequent runs use the cache.

Installing this skill

npx skills add -g letya999/jira-daily-pm-radar

After install, ensure uv is available (see Prerequisites). No other setup required.

  1. daily_report(...) to generate a batch report and get the summary.
  2. sprint_report(...) or backlog_report(...) for focused checks.
  3. issue_context(...) to drill down into a specific issue's history and comments.
  4. search_issues(...) for custom JQL queries if standard reports are insufficient.

Read the full file on GitHub · 150 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. 12d ago First seen · 150 lines · 57 tokens per session scan C c2a868fc1766

Subscribe to this mod's changes

jira-daily-pm-radar is a skill published in the GitHub repository letya999/jira-daily-pm-radar (0 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 1,238 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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

c-jira

Manage Jira issues using jira (jira-cli). List and filter issues, create new tickets, transition issue status, manage sprints, and add comments — all from the terminal without opening a browser.

daxaur/openpaw · 45 tokens

meegle

A guide and command-line interface for managing Feishu/Lark Meego project data, including work items, workflow steps, views, personal tasks, and schedules. Feishu/Lark is a collaboration platform, while Meego is its project-management system.

larksuite/meegle-cli · 126 tokens

project-ops

Use when an operator wants to run a small or mid-sized project from a flat file instead of standing up Jira or Asana — dated milestones each with one named owner and a binary done-test, rule-driven RAG status, a RAID log, slippage detection, and a two-minute weekly status report. NOT sequencing the engineering work…

ericrisco/rsc-harness · 80 tokens

stale-ticket-triage

Replace the weekly "look at every ticket older than X days" meeting with a scheduled AI scan that picks close / snooze / keep per ticket plus a one-sentence reason, so a PM can bulk-approve in 90 seconds Monday morning.

aozyildirim/Agena · 57 tokens

jjj

Use when working in Jujutsu repositories for problem tracking, solution management, and code review — implements Popperian epistemology (problems → solutions → critiques) directly in version control.

doug/jjj · 40 tokens

metagit-projects

Ongoing workspace and project management for OpenClaw and Hermes agents. Use when starting work, organizing repos, or before creating a new project folder so existing metagit projects are reused instead of duplicated.

metagit-ai/metagit-cli · 45 tokens