quarterly-initiative-report
Generate quarterly Jira status reports with RAG assessment, blocker tracking, and next-quarter recommendations. Use when preparing quarterly initiative reviews or tracking epic progress.
What this skill does
# Quarterly Initiative Status Report Generate comprehensive quarterly status reports for Jira initiatives with progress tracking, RAG (Red/Amber/Green) status assessment, blocker identification, and next-quarter priority recommendations. ## Requirements | Tool | Purpose | Check | |---|---|---| | `curl` | Jira REST API calls | `command -v curl` | | `jq` | JSON parsing | `command -v jq` or `brew install jq` | ## Prerequisites This skill requires Jira API credentials configured as environment variables: | Variable | Description | Example | |---|---|---| | `ATLASSIAN_EMAIL` | Your Atlassian account email | `[email protected]` | | `ATLASSIAN_API_TOKEN` | API token from [id.atlassian.com/manage-profile/security/api-tokens](https://id.atlassian.com/manage-profile/security/api-tokens) | `ATATT3xFfGF0...` | | `ATLASSIAN_SITE_URL` | Your Atlassian instance URL | `https://company.atlassian.net` | ### Setting Environment Variables **Option 1: In AI tool settings** (Claude Code settings.json, Cursor config): ```json { "env": { "ATLASSIAN_EMAIL": "[email protected]", "ATLASSIAN_API_TOKEN": "your-token-here", "ATLASSIAN_SITE_URL": "https://your-company.atlassian.net" } } ``` **Option 2: Shell environment**: ```bash export ATLASSIAN_EMAIL="[email protected]" export ATLASSIAN_API_TOKEN="your-token-here" export ATLASSIAN_SITE_URL="https://your-company.atlassian.net" ``` **Verify credentials:** ```bash curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ "$ATLASSIAN_SITE_URL/rest/api/3/myself" | jq '.displayName' ``` ## Usage When invoked, gather from the user: 1. **Jira Project Key** (e.g., "PF" for PatternFly) 2. **Label** identifying the initiative (e.g., "Q1-2026" or "Q12026") Then execute the workflow below to generate the comprehensive report. ## Workflow ### Step 1: Fetch All Epics with the Label ```bash # Search for all epics/initiatives with the label curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ -X POST \ -H "Content-Type: application/json" \ -d '{"jql":"project=PROJECT AND labels=\"LABEL\" AND type IN (Epic, Initiative)","fields":["key","summary","status","assignee","duedate","issuetype","labels"],"maxResults":1000}' \ "$ATLASSIAN_SITE_URL/rest/api/3/search/jql" ``` ### Step 2: For Each Epic, Gather Complete Metrics **Process for EVERY epic (including closed):** 1. **Fetch direct sub-issues:** ```bash curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ -X POST \ -H "Content-Type: application/json" \ -d '{"jql":"parent=EPIC-KEY","fields":["key","summary","status","priority"],"maxResults":1000}' \ "$ATLASSIAN_SITE_URL/rest/api/3/search/jql" | \ jq '{ total: (.issues | length), done: ([.issues[] | select(.fields.status.statusCategory.key == "done")] | length), in_progress: ([.issues[] | select(.fields.status.statusCategory.key == "indeterminate")] | length), todo: ([.issues[] | select(.fields.status.statusCategory.key == "new")] | length), completion_pct: (if (.issues | length) > 0 then (([.issues[] | select(.fields.status.statusCategory.key == "done")] | length) * 100 / (.issues | length) | floor) else 0 end) }' ``` 2. **Check for duplicate links (CRITICAL for all epics):** ```bash # Check EVERY epic for cross-project duplicate links curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ "$ATLASSIAN_SITE_URL/rest/api/3/issue/EPIC-KEY?fields=issuelinks" | \ jq '{ key: .key, duplicates: [.fields.issuelinks[] | select(.type.name == "Duplicate") | { linked_issue: (if .outwardIssue then .outwardIssue.key else .inwardIssue.key end), linked_type: (if .outwardIssue then .outwardIssue.fields.issuetype.name else .inwardIssue.fields.issuetype.name end) }] }' ``` 3. **For each linked epic, fetch its child issues:** ```bash curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ -X POST \ -H "Content-Type: application/json" \ -d '{"jql":"parent=LINKED-EPIC-KEY","fields":["key","summary","status"],"maxResults":1000}' \ "$ATLASSIAN_SITE_URL/rest/api/3/search/jql" | \ jq '{ total: (.issues | length), done: ([.issues[] | select(.fields.status.statusCategory.key == "done")] | length), in_progress: ([.issues[] | select(.fields.status.statusCategory.key == "indeterminate")] | length), todo: ([.issues[] | select(.fields.status.statusCategory.key == "new")] | length) }' ``` **IMPORTANT:** Combine direct children + linked epic children for total metrics. Many cross-project initiatives track significant work via duplicate links (e.g., AAP, MTV, CONSOLE, SAT projects). ### Step 3: Calculate Aggregate Metrics - **Total Issues:** Sum all direct + linked issues across all epics - **Overall Completion:** (Total Done / Total Issues) ร 100 - **Epic Counts:** Closed, In Progress, New - **Cross-Project Work:** Issues tracked via duplicate links ### Step 4: Identify Blockers ```bash # Find high-priority or blocked issues curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \ -H "Accept: application/json" \ -X POST \ -H "Content-Type: application/json" \ -d '{"jql":"project=PROJECT AND labels=\"LABEL\" AND (status=Blocked OR priority=Highest)","fields":["key","summary","status","priority","assignee"],"maxResults":1000}' \ "$ATLASSIAN_SITE_URL/rest/api/3/search/jql" ``` ### Step 5: Determine RAG Status For each epic, evaluate in this order (first match wins): - **๐ด Red (Critical):** <40% complete OR critical blockers OR unassigned near deadline - **๐ก Amber (At Risk):** 40-74% complete OR 1-2 non-critical blockers - **๐ข Green (On Track):** โฅ75% complete OR โฅ50% with no blockers ### Step 6: Generate Report Structure the output markdown report with these sections: ## Report Structure ```markdown # Quarterly Initiative Status Report: [Initiative Name] **Reporting Period:** [Quarter/Year] **Report Date:** [Current Date] **Overall Status:** ๐ข/๐ก/๐ด [RAG] --- ## Executive Summary [2-3 paragraphs: overall health, key achievements, critical concerns] **Key Metrics:** - Overall Completion: X% (Y/Z issues) - Epics Completed: A of B - Critical Blockers: C --- ## Initiative Overview **Initiative:** [Label/Name] **Quarter:** Q# YYYY **Timeline:** [Start] - [End] **Days Remaining:** X days **Goals:** [Extracted from initiative description or inferred] --- ## Epic Status Dashboard | Epic | Owner | Status | Progress | RAG | Notes | |------|-------|--------|----------|-----|-------| | [KEY] [Summary] | [Owner] | In Progress | 75% (15/20) | ๐ข | | | [KEY] [Summary] | [Owner] | In Progress | 45% (9/20) | ๐ก | Has 1 blocker | | [KEY] [Summary] | [Owner] | New | 0% (0/10) | ๐ด | Unassigned | --- ## Detailed Metrics ### Overall Progress - **Total Issues:** X - **Completed:** Y (Z%) - **In Progress:** A (B%) - **To Do:** C (D%) ### Cross-Project Work - **Total Linked Issues:** N (via duplicate epics) - **Projects:** AAP, MTV, CONSOLE, SAT, etc. - **Linked Completion:** P% ### By Epic [For each epic with duplicate links, show:] - **[Epic Key]** - [Summary]: X direct children (Y% complete) - Linked via duplicates: [Linked Epic Key] (Z children, W% complete) - Combined: Total issues, overall % --- ## Blockers and Risks ### Critical Blockers (Immediate Action Required) 1. **[Epic Key]:** [Description] - Impact: High/Medium/Low - Recommendation: [Action] ### Risks (Monitor Closely) 1. **[Risk]:** [Description] - Likelihood: High/Medium/Low - Impact: High/Medium/Low - Mitigation: [Strategy] --- ## Q+1 Priority Recommendations ### Must Complete (Carryover) 1. **[Epic/Task]** - [Reason why critical] ### High Priority (Next Phase) 1. **[Suggested Work]** - [Builds on completed X] --- ## Appendix ### Methodology - Data source: Jira REST API v3 - Reporting period: [Dates] - Status categories: "done", "indeterminate", "new" ### Complete Epic Refe
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts โ single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score โฅ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.