Overview
Weekly Team Digest consolidates the entire team's work for a week into one report. Unlike individual summaries, it aggregates contributions from all members in the project to give a team-level perspective. Run /weekly-digest in Claude Code: the MCP tool fetches the week's data, the LLM writes a Markdown report, and the result is saved on the server — it appears in the project console's Weekly Digest list immediately, without a separate publishing step.
DEV / PM Modes
The same week's data can be summarized through two lenses, chosen by the first command argument (`dev` or `pm`). When omitted, the mode defaults to DEV.
Keeps technical vocabulary intact — commit hashes, file paths, class and function names — and reports per-member work, tag distribution, and core design decisions. Designed for code reviews, team retros, and engineer 1:1s.
Drops technical jargon entirely and re-narrates the week's work in product-facing terms ('checkout screen', 'admin page') framed around business impact. Suited for manager reports, internal weekly updates, and stakeholder syncs.
Report Structure
Section layout and vocabulary differ by mode. Every section is rendered even when data is sparse — empty sections are replaced with copy like 'limited activity this week' rather than omitted, so the structure stays consistent.
DEV mode's Key Decisions section captures intent, alternatives, and trade-offs — it is intentionally the longest and most detailed part of the report, and is the value AIFlare adds on top of a plain git log.
PM mode deliberately omits commit hashes, file paths, class/function names, and jargon such as 'refactoring', 'migration', 'endpoint', 'query', 'schema', 'DI', 'JPA'. The LLM is also explicitly blocked from inventing facts that aren't in the data (meetings, customer feedback, schedules, etc.).
Usage Guide
Command Syntax
Type the command below in the Claude Code conversation window. Both arguments are optional — when the mode is omitted, dev is used; when the week is omitted, the current ISO week is used.
/weekly-digest [dev|pm] [week?]Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| audience | dev | pm | Optional | dev | Target reader for the report — dev or pm (case-insensitive). Defaults to dev when omitted. |
| week | string | Optional | current week | Target ISO 8601 week in YYYY-Www format (e.g. 2026-W15). Defaults to the current week when omitted. |
Argument order: audience → week. Example: /weekly-digest pm 2026-W15. When the mode is omitted, the first argument is interpreted as week.
Execution Flow
Error Reference
aiflare.yml is missing from the project root or api_key is empty. See the Getting Started guide to place it.
No entries were captured for the specified week. Verify that an AI agent actually committed during that week.
The report has already been printed in the conversation. If only the save step failed, copy the printed content for use elsewhere.