standup

standup is a skill for Claude Code, Codex from Jakeintech/waybill. It costs 145 tokens per session (1,030 once invoked), scanned A, original, MIT.

A skill for creating short work summaries from a ledger. A ledger is a record of work and its supporting items, such as shipped changes or tickets.

In plain words
What is it for?
Preparing daily standup notes, weekly digests, and summaries of what was shipped or worked on during a selected period.
Why use it?
It replaces memory-based standup preparation with a summary grounded in recorded work. It can cover yesterday, a named date, or a multi-day window.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the waybill plugin — 12 skills, 2 hooks, 2 MCP servers shipped together

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.

agentmods
npx agentmods add skills/jakeintech/waybill/standup
Any agent
npx skills add Jakeintech/waybill --skill standup
Clone the repo
git clone --depth 1 https://github.com/Jakeintech/waybill

Made for: Claude Code, Codex.

Or install waybill, the plugin that ships this one along with the rest of its 12 skills, 2 hooks, 2 MCP servers.

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/jakeintech/waybill/standup.svg)](https://agentmods.dev/skills/jakeintech/waybill/standup)
Your own site
<a href="https://agentmods.dev/skills/jakeintech/waybill/standup"><img src="https://agentmods.dev/badge/skills/jakeintech/waybill/standup.svg" alt="Measured on agentmods" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,030 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00145 $0.01030
Opus 5 $0.00072 $0.00515
Sonnet 5 $0.00029 $0.00206
Haiku 4.5 $0.00015 $0.00103

Measured 4d ago against content hash 9825ed05bfc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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.

skills/standup/SKILL.md · 86 lines

How it starts

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

Standup

Answer "what did I do" from the ledger instead of memory. The engine returns the facts for the window; render them as bullets a person would actually read out in standup — short, concrete, artifact-linked.

"${CLAUDE_PLUGIN_ROOT}/bin/waybill" mine --all      # catch-up metering first, always
"${CLAUDE_PLUGIN_ROOT}/bin/waybill" query standup [--date yesterday|today|YYYY-MM-DD] \
    [--days <n>] [--from <iso> --to <iso>]

Resolve the window

  • Default (no window words): --date yesterday.
  • Monday standup: "yesterday" would miss the weekend. --days <n> covers the last n days ending today, so use --days 4 (Friday through today) — or explicit --from <Friday> --to <Sunday> to exclude today. Always say which days the digest covers, from the returned .data.window.
  • "this week" / "weekly digest": --days 7.
  • A named day ("what did I do Tuesday"): --date <YYYY-MM-DD>.
  • Day math is local-calendar (the engine's --date/--days handle it); pass explicit --from/--to only for odd ranges.

Render (bullets, in this order)

Work from the returned .data:

  1. Shipped (.data.shipped) — one bullet per item: KEY — title (points, PR links). These are the strongest lines; lead with them.
  2. In progress (.data.progressed) — items with metered spend that did not ship in the window: KEY — title (n sessions). Rows with shipped_earlier: true are follow-up on an already-shipped item — say "follow-up on KEY", not "in progress". Mention token counts only if the user asks or the audience is themselves — teammates want the work, not the meter.
  3. Started (.data.opened) — newly opened entries, with "estimate pre-registered" noted where true.
  4. Blockers / attention — only from .data.attention: open attribution-inbox items or a notable unattributed share are ledger blockers; real work blockers the user must add themselves (ask if a "blockers" line is wanted, don't invent one).

Read the full file on GitHub · 86 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 · 86 lines · 145 tokens per session scan A 9825ed05bfc2

Subscribe to this mod's changes

standup is a skill published in the GitHub repository Jakeintech/waybill (1 stars, last pushed 11d ago), licensed MIT. It adds 145 tokens to every session and 1,030 once invoked, about $0.0007 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

specify-meta

Scaffold, status-check, and manage specification directories. Use when creating a new spec, reading spec status, transitioning between phases, or logging decisions on a spec in .start/specs/.

rsmdt/the-startup · 42 tokens

feature-prioritization

RICE, MoSCoW, Kano, and value-effort prioritization frameworks with scoring methodologies and decision documentation. Use when prioritizing features, evaluating competing initiatives, creating roadmaps, or making build vs defer decisions.

rsmdt/the-startup · 51 tokens

jira-bug-reporter

Create detailed bug reports from session evidence — auto-populate Jira tickets with session URLs, error messages, device info, and reproduction steps. Use when the user wants to file a bug from a Fullstory session.

reatlat/fullstory-claude-plugin · 48 tokens

cf-calendar

Plan a 30/60/90-day content production calendar — works backward from publish dates to schedule production windows, balances team assignments, detects deadline conflicts, renders a text Gantt-chart timeline, and optionally creates Google Calendar milestone events when that MCP is connected. Triggers on…

indranilbanerjee/contentforge · 158 tokens

triage

Apply a formal state machine to issues — assign category (bug/enhancement/question/spike) and state (needs-triage → needs-info → ready-for-agent → ready-for-human → wontfix). Issues marked ready-for-agent become inputs to supergraph:plan. Use when processing a backlog, reviewing new issues, or preparing work for…

datit309/supergraph · 73 tokens

user-story-generator

Transforms requirements into user stories with Given/When/Then acceptance criteria ready for sprint planning and Jira. Use when user needs to write user stories, create Jira tickets, define acceptance criteria, or says "user stories", "acceptance criteria", "sprint backlog", "Jira tickets", "as a user I want"…

lenar-amirov/product-pipeline-public · 76 tokens