# Maggit Claude Workspace Standup

> Standup Report Generator

- Skill: `tomevault-io/maggit-claude-workspace-standup` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/maggit-claude-workspace-standup`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/maggit-claude-workspace-standup/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/maggit-claude-workspace-standup

---


# Standup Report Generator

Generate a concise standup report from recent git activity.

## Workflow

1. Identify the user:
   - `git config user.name` and `git config user.email`.
2. Determine the time range:
   - Default: since last business day (skip weekends).
   - Monday → since Friday.
   - Other days → since yesterday.
   - Allow user override (e.g., "last 3 days", "this week").
3. Gather activity:
   - Commits: `git log --author="<email>" --since="<date>" --pretty=format:"%h %s (%ar)" --all`
   - Branches touched: `git branch --sort=-committerdate --format="%(refname:short) %(committerdate:relative)" | head -10`
   - If multiple repos, offer to scan them.
4. Summarize into standup format.

## Output Format

```markdown
## Standup — YYYY-MM-DD

### Yesterday
- Worked on <feature/area>: <concise summary of commits>
- Fixed <bug>: <summary>

### Today
- Plan to continue <work in progress>
- [Suggested based on open branches and recent context]

### Blockers
- [Any merge conflicts, failing CI, or stale PRs detected]
```

## Guidelines

- Group related commits into logical work items rather than listing each commit.
- Use natural language, not commit hashes.
- Keep it concise — a real standup is 30 seconds.
- If `gh` CLI is available, include open PRs authored by the user.
- Detect and mention any unfinished work (branches with no PR, uncommitted stashes).

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/maggit) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-15 -->

