| name | recall-changelog |
| description | Show recent changes across all knowledge files. |
/recall-changelog [days]
Show recent knowledge changes.
Arguments
[days]: number of days to look back (default: 7)
Steps
- Resolve project directory.
- Find all knowledge and workflow files modified in the last N days:
find <project>/ -name "*.md" -mtime -<days> -not -path "*/archive/*" | sort -t/ -k3
- For each modified file:
- Show file path (relative to project root), last modified time
- Show a brief summary of content (first heading + first paragraph or list)
- Group by: project-level changes, then per-branch changes.
- Format as a compact changelog.