---
description: "Generate a daily summary report from agent usage data, git history, and notes"
role: scribe
argument-hint: "[--date <YYYY-MM-DD>] [--dry-run] [--output <path>] [--no-git] [--no-ccusage]"
allowed-tools: ["Bash", "Read"]
---

# Dev Daily

Runs the daily-summary generator — see [daily-summary/SKILL.md](../skills/daily-summary/SKILL.md) for the authoritative procedure. `sp:daily-summary` is `disable-model-invocation`, so it cannot be fired via the Skill tool; this command runs its script directly.

## Argument Flags

| Flag | Description | Default |
| --- | --- | --- |
| `--date` `<YYYY-MM-DD>` | Report date. | today |
| `--dry-run` | Render without writing files. | off |
| `--output` `<path>` | Output directory for the report. | configured |
| `--no-git` | Skip git-history aggregation. | off |
| `--no-ccusage` | Skip ccusage aggregation. | off |

For shared semantics, see the [flag glossary](../skills/spur-dev/references/flag-glossary.md).

## Usage

/sp:dev-daily [--date <YYYY-MM-DD>] [--dry-run] [--output <path>] [--no-git] [--no-ccusage]

## Implementation

Run the generator per [daily-summary/SKILL.md](../skills/daily-summary/SKILL.md): `node "$(superskill script path sp daily-summary/daily-summary.mjs)" $ARGUMENTS`.
