daily-summarylisted
Install: claude install-skill kogakure/skills
# Daily Summary Skill
Produce a short German bullet list of today's work across all Claude Code sessions, grouped by project or repository.
## Step 1: Get today's date
```bash
python3 -c "from datetime import date; print(date.today().isoformat())"
```
## Step 2: Load the memory tools
Use ToolSearch to load the required tool schemas in one call:
ToolSearch with query `select:mcp__plugin_claude-mem_mcp-search__search,mcp__plugin_claude-mem_mcp-search__get_observations`
## Step 3: Fetch today's observations
Call `mcp__plugin_claude-mem_mcp-search__search` with `dateStart` and `dateEnd` both set to today's ISO date (e.g. `2026-06-24`), `limit` 100, `orderBy` `date_asc`. The tool returns a list of observations for the day.
Focus on actionable observation types:
| Symbol | Type | Include? |
| ------ | --------- | ------------------------------------ |
| ✓ | Change | Yes |
| ◆ | Feature | Yes |
| ● | Bug fix | Yes |
| ↻ | Refactor | Yes |
| ⚖ | Decision | Yes if architectural/significant |
| ○ | Discovery | Only if no other entries for project |
| ⚠/⚷ | Security | Yes |
Session entries (prefix `S`) provide the headline title — use these to name the project if content is ambiguous.
## Step 4: Group by project
Map each session/obse