report-daily-progress

report-daily-progress is a skill for Claude Code from atman-33/workhub. It costs 62 tokens per session (499 once invoked), scanned A, original, MIT.

A daily project-progress report generator that creates a self-contained HTML page. It combines backlog status, a burndown chart, sprint scope, and that day’s code merges; a burndown chart compares planned remaining work with actual remaining work over time.

In plain words
What is it for?
Use it to create the day’s report with sprint details, item status, point totals, repository activity, scope changes, and progress charts.
Why use it?
It gives a team one stand-up view of delivery progress, remaining work, and recent development activity.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the team-ops plugin — 13 skills shipped together

Good fit Use it to create the day’s report with sprint details, item status, point totals, repository activity, scope changes, and progress charts.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add atman-33/workhub
Claude Code
/plugin install team-ops

Made for: Claude Code.

Or install team-ops, the plugin that ships this one along with the rest of its 13 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 report-daily-progress

README.md
[![agentmods](https://agentmods.dev/badge/skills/atman-33/workhub/report-daily-progress.svg)](https://agentmods.dev/skills/atman-33/workhub/report-daily-progress)
Your own site
<a href="https://agentmods.dev/skills/atman-33/workhub/report-daily-progress"><img src="https://agentmods.dev/badge/skills/atman-33/workhub/report-daily-progress.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 499 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.00062 $0.00499
Opus 5 $0.00031 $0.00249
Sonnet 5 $0.00012 $0.00100
Haiku 4.5 $0.00006 $0.00050

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

Security

Grade A, and why

report-daily-progress 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.

plugins/team-ops/skills/report-daily-progress/SKILL.md · 39 lines

What it actually says

Daily progress report

Produce projects/<p>/reports/daily/<date>.html — the page the team opens at stand-up.

Steps

  1. Ensure fresh data (token-free; run unless already run today):

    node "${CLAUDE_PLUGIN_ROOT}/scripts/sync/sync-project-repos.mjs" <project>
    node "${CLAUDE_PLUGIN_ROOT}/scripts/snapshot/progress-snapshot.mjs" <project>
    
  2. Read the inputs: backlog/progress-history.jsonl (all lines for the current sprint), backlog/items/* frontmatter, the current sprint's scope.json + planning.md (for scope-change notes), and each repo's pbi-activity.json + commits.jsonl tail (today's commits).

  3. Write one self-contained HTML file (inline CSS/SVG, no external assets; text in the team content language):

    • Header: project, date, sprint id + goal, days remaining.
    • Burndown (inline SVG): ideal line from scope.json total points → 0 over the sprint dates vs actual sprintRemainingPoints per day from the history; annotate scope changes.
    • Status board: table of sprint items — id (linked to the item file), title, status, points, assignee, and dev activity (commit count / last merge from pbi-activity.json across repos).
    • Merges of the day: today's dev-main commits per repo, grouped by PBI id (unlinked commits listed under "other").
    • Attention flags: items in doing with no commits for several days, review items waiting, sync errors.
  4. Save to reports/daily/<date>.html (overwrite same-day reruns), append an activity-log line, and give the user the path.

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 · 39 lines · 62 tokens per session scan A 4f8602f657a1

Subscribe to this mod's changes

report-daily-progress is a skill published in the GitHub repository atman-33/workhub (2 stars, last pushed 2d ago), licensed MIT. It adds 62 tokens to every session and 499 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

gonavi-cli

Operate databases through the GoNavi headless CLI — the gonavi executable shipped in verified GitHub Release archives. Covers listing/adding/importing saved connections, running SQL queries against saved connections or ad-hoc connection files, exporting result sets to csv/json/md/html/xlsx, batch-executing SQL files…

Syngnat/GoNavi · 144 tokens

shipyard-executing-plans

Use when you have a written implementation plan to execute, either in the current session with builder/reviewer agents or in a separate session with review checkpoints. Also use when the user says "build this", "implement this", "execute the plan", "run the plan", or when a plan file has been loaded with independent…

lgbarn/shipyard · 78 tokens

shipyard-writing-plans

Use when you have a spec, requirements, or design for a multi-step task — before touching code. Also triggers on "plan this", "break this down", "create tasks", "decompose this feature", or when a task clearly needs more than 2-3 steps to implement. If you're about to start building without a plan, or writing vague…

lgbarn/shipyard · 96 tokens

shipyard-handoff

Captures session context into .shipyard/HANDOFF.md so the next session can resume without losing progress.

lgbarn/shipyard · 27 tokens

tasks

A task-breakdown tool that turns a plan, specification, feature brief, bug report, technical-debt item, or chore into small TASK-NNN work items. Technical debt means postponed cleanup or design work in a codebase.

cryndoc/polisade-orchestrator · 127 tokens

roadmap

An implementation plan made from a technical specification, organized into phases, milestones, and dependencies.

cryndoc/polisade-orchestrator · 109 tokens