today

Summarizes today's commits, completed tasks, and pending work from git and sprint files.

1|Updated Jun 29, 2026
One-click install
npx skills add https://github.com/natthasath/natthasath-marketplace --skill today-natthasath
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: today
Source: https://github.com/natthasath/natthasath-marketplace/tree/main/plugins/projects/skills/today
Command: npx skills add https://github.com/natthasath/natthasath-marketplace --skill today-natthasath

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? At the end of a workday it is hard to recall everything you accomplished. This Skill compiles a daily work summary automatically by reading your git history and task tracking files, so you get an accurate recap without digging through logs manually. ## Core Features & Use Cases - Daily Commit Collection: Runs git log filtered to commits since midnight by the current user. - Task Status Review: Reads current_sprint.md for in-progress work and archive.md for tasks completed today. - Structured Summary Output: Produces a 3-5 bullet summary grouped into done, in-progress, and carry-over items. - Use Case: Before a standup meeting or when logging off, ask for a summary of today's work and receive a concise recap of commits, finished tasks, and what remains for tomorrow. ## Quick Start Ask the assistant to summarize what you worked on today, and it will gather your commits and task files into a short daily report.

Frequently Asked Questions about today

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I summarize my git commits from today?▼

Run git log --oneline --since="midnight" --author with your git user name to list only today's commits. This Skill automates that command and combines the results with your task files into a short bullet summary.

How to generate a daily standup report from task files?▼

Read your current sprint file for in-progress items and your completed archive for entries marked with today's date. Group the results into done, in-progress, and carry-over bullets for a standup-ready recap.

What files does the daily summary skill need to work?▼

It expects a git repository plus two markdown files: context/tasks/in_progress/current_sprint.md for pending work and context/tasks/completed/archive.md with Completed date entries. Missing files mean that section of the summary will be empty.

Why does the daily summary show no commits?▼

No commits appear if you have not committed since midnight or if the git user name filter does not match your config. Check git config user.name and verify commits exist with git log --since="midnight".

Can I use this for weekly or monthly summaries?▼

This Skill is scoped to a single day using the midnight filter. For longer periods you would adjust the git log --since parameter and widen the date filter on archived task entries.