Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ Loaded automatically as `okf@skills-dir` on session start — no install step.
Current plugins:

- `okf` — OKF skill + SessionEnd hook that distills memsearch journals into the `~/wiki` OKF bundle
- `daily-summary` — standup digest skill that groups the day's memsearch activity log by repository

## License

Expand Down
38 changes: 38 additions & 0 deletions chezmoi/private_dot_agents/skills/daily-summary/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: daily-summary
description: Daily standup digest from memsearch activity logs, grouped by repo.
disable-model-invocation: true
argument-hint: "[YYYY-MM-DD]"
---

# Daily Summary

Produce a **standup** from the memsearch memory log for the requested date.

## Steps

1. **Date** — use `$ARGUMENTS` if non-empty; default to yesterday. Validate
`YYYY-MM-DD`; reject with an error message on malformed input.

2. **Load** — read `~/.memsearch/memory/<date>.md`. Stop and tell the user if the file is missing.

3. **Map** — assign each task to the repo where the change happened. Tasks
with no repo go under `Other`.

4. **Output** the standup in a fenced code block. No preamble. One bullet per
task, ≤12 words. Under each task, nest sub-tasks one level deep only when
they are genuinely distinct steps, not elaborations. Skip sessions with only
exploration and no resulting change or decision.

````text
```
- `<repo-path>`
- <task>
- <sub-task if distinct>
- <task>
- `<repo-path-2>`
- <task>
- Other
- <task not tied to a repo>
```
````
1 change: 1 addition & 0 deletions chezmoi/private_dot_claude/skills/symlink_daily-summary
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
../../.agents/skills/daily-summary
Loading