standup

standup is a skill for Claude Code from drn/dots. It costs 38 tokens per session (635 once invoked), scanned A, original, MIT.

A summary of recent Git work, pull requests, branches, and unfinished changes for a daily team update.

In plain words
What is it for?
Use it to prepare personal or team standup reports over a chosen time period.
Why use it?
It saves time spent gathering scattered development activity before a standup meeting.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to prepare personal or team standup reports over a chosen time period.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/drn/dots/standup
View source ↗ drn/dots
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 drn/dots --skill standup
Clone the repo
git clone --depth 1 https://github.com/drn/dots

Made for: Claude Code.

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 standup

README.md
[![agentmods](https://agentmods.dev/badge/skills/drn/dots/standup.svg)](https://agentmods.dev/skills/drn/dots/standup)
Your own site
<a href="https://agentmods.dev/skills/drn/dots/standup"><img src="https://agentmods.dev/badge/skills/drn/dots/standup.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 635 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00038 $0.00635
Opus 5 $0.00019 $0.00318
Sonnet 5 $0.00008 $0.00127
Haiku 4.5 $0.00004 $0.00064

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

Security

Grade A, and why

standup 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 4d 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.

agents/skills/standup/SKILL.md · 77 lines

How it starts

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

Daily Standup

Generate a quick summary of recent work for standups or status updates.

Arguments

  • $ARGUMENTS - Optional: --team to include all authors, or a custom time range (e.g., "3 days")

Context

  • Current branch: !git branch --show-current
  • Git user email: !git config user.email 2>/dev/null | head -1
  • Git user name: !git config user.name 2>/dev/null | head -1
  • Commits since yesterday: !git log --all --oneline --since="yesterday" 2>/dev/null | head -30
  • Open PRs: !gh pr list --author @me --state open 2>/dev/null | head -20
  • Uncommitted changes: !git status --short 2>/dev/null | head -10
  • Recent branches: !git branch --sort=-committerdate --format='%(refname:short) %(committerdate:relative)' 2>/dev/null | head -10

Instructions

Step 1: Determine scope

  • If --team is in $ARGUMENTS, include all authors. Otherwise filter to the current user (match against the git user email and name from context).
  • If a custom time range is provided, use it instead of "since yesterday".

Step 2: Gather activity

Run git log filtered to the appropriate author and time range:

git log --all --oneline --author="<email>" --since="<range>"

Also check for any PRs merged in the time range:

gh pr list --author @me --state merged --limit 10

Step 3: Format the standup

Print in this format:

## Standup — <date>

### Yesterday
- <commit summary grouped by branch/feature>
- <PRs merged>

### Today
- <inferred from current branch name and uncommitted changes>
- <open PRs that need attention>

### Open PRs
- #<number>: <title> (<status/checks>)

If there is no activity for "Yesterday", say "No commits found" rather than omitting the section.

For "Today", infer from:

  • The current branch name (what feature/fix is in progress)
  • Any uncommitted changes (what is being worked on now)
  • Open PRs awaiting review

Step 4: Offer actions

After presenting the standup, offer to:

  1. Copy to clipboard (pbcopy)
  2. Adjust the time range and regenerate

Read the full file on GitHub · 77 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. 4d ago First seen · 77 lines · 38 tokens per session scan A 8ca156e5a796

Subscribe to this mod's changes

standup is a skill published in the GitHub repository drn/dots (23 stars, last pushed 3d ago), licensed MIT. It adds 38 tokens to every session and 635 once invoked, about $0.0002 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-09-03.