Agent skill
digest
Summarize vault learnings and activity for today or a date range.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/digest
SKILL.md
Learning Digest
Summarize vault learnings and activity for a given time period.
Current State
!ls vault/learnings/ 2>/dev/null | wc -l | tr -d ' ' total learning files
!ls vault/learnings/*-$(date +%Y%m%d)-* 2>/dev/null || echo "(none today)"
!cat vault/daily/$(date +%Y-%m-%d).md 2>/dev/null || echo "(no daily digest yet)"
Date Parsing
Parse $ARGUMENTS to determine the date range:
- No args or
today— today's date only YYYY-MM-DD— specific dateYYYY-MM-DD..YYYY-MM-DD— date range (inclusive)
Convert dates to the YYYYMMDD format used in filenames.
Analysis Steps
- Find matching files:
Globforvault/learnings/*-YYYYMMDD-*for each date in range - Read each file: Extract frontmatter (type, status, priority/severity, tags, pattern-key, recurrence-count)
- Aggregate:
- Count by type (LRN/ERR/FEAT)
- Count by status
- Count by area
- List any with recurrence-count >= 2 (approaching promotion)
- List any FEAT entries with status
requested(potential quick wins)
- Check for daily digest: Read
vault/daily/YYYY-MM-DD.mdif it exists - Compile summary
Output Format
## Learning Digest: YYYY-MM-DD
### Activity
- 3 new learnings, 1 error, 0 feature requests
- 2 entries resolved today
- 1 pattern approaching promotion threshold
### New Entries
| ID | Type | Title | Status |
|----|------|-------|--------|
| LRN-20250310-001 | learning | Title here | new |
| ERR-20250310-001 | error | Title here | resolved |
### Patterns to Watch
- **env-var-stripping** (recurrence: 2/3 for promotion) — Claude CLI env issues
- **file-path-quoting** (recurrence: 2/3 for promotion) — Spaces in paths
### Quick Wins
- FEAT-20250310-001: "Add vault search from CLI" (complexity: simple)
### Daily Digest File
<contents of vault/daily/YYYY-MM-DD.md if it exists, or "(not yet generated)">
For date ranges, group entries by date and show per-day breakdowns followed by a range summary.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?