gh-daily

gh-daily is a skill for Claude Code from mgiovani/cc-arsenal. It costs 105 tokens per session (2,021 once invoked), scanned A, original, MIT.

A standup-report workflow based on GitHub activity. A standup report is a short account of recent work, such as issues, pull requests, reviews, notifications, and commits.

In plain words
What is it for?
Use it to prepare a daily update, report what you did recently, or summarize assigned issues, pull requests, review requests, and commit history.
Why use it?
It replaces memory-based status updates with information taken from the repository and GitHub. It avoids presenting unverified work or blockers as facts.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions subagents; names the TodoWrite tool.

Part of the cc-arsenal-git plugin — 7 skills shipped together , and of cc-arsenal

Good fit Use it to prepare a daily update, report what you did recently, or summarize assigned issues, pull requests, review requests, and commit history.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mgiovani/cc-arsenal/gh-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 gh-daily
Clone the repo
git clone --depth 1 https://github.com/mgiovani/cc-arsenal

Made for: Claude Code.

Or install cc-arsenal-git, the plugin that ships this one along with the rest of its 7 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 gh-daily

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/mgiovani/cc-arsenal/gh-daily"><img src="https://agentmods.dev/badge/skills/mgiovani/cc-arsenal/gh-daily.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,021 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.00105 $0.02021
Opus 5 $0.00053 $0.01010
Sonnet 5 $0.00021 $0.00404
Haiku 4.5 $0.00011 $0.00202

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

Security

Grade A, and why

gh-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 10d 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/gh-daily/SKILL.md · 145 lines

How it starts

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

GitHub Daily - Standup Meeting Preparation

Generates a standup report from GitHub Issues, PRs, notifications, and git history.

Anti-Hallucination Guidelines

Standup reports must reflect actual work done, not guesses:

  1. Only list issues/PRs that came back from gh CLI output.
  2. Only mark "Completed" if state is closed or PR is merged.
  3. Use real git log counts, never estimate.
  4. Only mention blockers that are explicitly labeled or commented in GitHub.
  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]": omit the section entirely instead.

Phase 1: Determine Repository and User

Detect context in order of priority: --repo owner/repo argument, current git remote, then gh CLI default.

REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null)
if [ -z "$REPO" ]; then
  echo "ERROR: Not in a GitHub repository. Use --repo owner/repo to specify."
fi
echo "Detected repo: $REPO"

GH_USER=$(gh api user -q .login 2>/dev/null)
echo "Authenticated as: $GH_USER"

If no repo is detected and none provided, ask the user to specify with --repo owner/repo.

If --all-repos is passed, skip the single-repo detection above and instead collect the repo list to scan:

REPOS=$(gh search issues --assignee @me --state open --limit 20 --json repository --jq '[.[].repository.nameWithOwner] | unique | .[]')

Run Phase 3 once per repo in $REPOS, passing each as --repo in turn, and concatenate the results before Phase 4. Without --all-repos, $REPO is a single value and every Phase 3 command below must pass --repo "$REPO".

Phase 2: Calculate Date Range

# Report from Friday if today is Monday, otherwise from yesterday
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"

Read the full file on GitHub · 145 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. 10d ago First seen · 145 lines · 105 tokens per session scan A 9770b60fa08a

Subscribe to this mod's changes

gh-daily is a skill published in the GitHub repository mgiovani/cc-arsenal (8 stars, last pushed yesterday), licensed MIT. It adds 105 tokens to every session and 2,021 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 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