groove-daily-end

groove-daily-end is a skill for Claude Code from andreadellacorte/groove. It costs 28 tokens per session (976 once invoked), scanned A, original, MIT.

An end-of-day workflow that records code changes, tasks, and work notes in dated memory files.

In plain words
What is it for?
Use it when wrapping up work to create Git, daily, weekly, or monthly summaries and run the configured end hook.
Why use it?
It preserves what happened during the day and carries useful context into later work sessions.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Good fit Use it when wrapping up work to create Git, daily, weekly, or monthly summaries and run the configured end hook.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andreadellacorte/groove/groove-daily-end
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add andreadellacorte/groove --skill groove-daily-end
Clone the repo
git clone --depth 1 https://github.com/andreadellacorte/groove

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for groove-daily-end

README.md
[![agentmods](https://agentmods.dev/badge/skills/andreadellacorte/groove/groove-daily-end/github.svg)](https://agentmods.dev/skills/andreadellacorte/groove/groove-daily-end)
Your own site
<a href="https://agentmods.dev/skills/andreadellacorte/groove/groove-daily-end"><img src="https://agentmods.dev/badge/skills/andreadellacorte/groove/groove-daily-end/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for groove-daily-end

Your own site · 80×15
<a href="https://agentmods.dev/skills/andreadellacorte/groove/groove-daily-end"><img src="https://agentmods.dev/badge/skills/andreadellacorte/groove/groove-daily-end.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 976 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk pass 10 Mar 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.00976
Opus 5 $0.00014 $0.00488
Sonnet 5 $0.00006 $0.00195
Haiku 4.5 $0.00003 $0.00098

Measured 11d ago against content hash 6a3891adcac8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

groove-daily-end scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/groove-daily-end/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

groove-daily-end

Outcome

The workday is wrapped up: git changes are analysed, memory files are written in order, tasks are analysed, and the end hook is executed if present.

Acceptance Criteria

  • Git memory file written at .groove/memory/git/YYYY-MM-DD-GIT-N.md
  • Daily memory file written at .groove/memory/daily/YYYY-MM-DD.md
  • Weekly memory file written if today is the last weekday of the week
  • Monthly memory file written if today is the last weekday of the month
  • Tasks are analysed and summary is included in daily memory

Constraints

  • Read .groove/index.md for tasks.backend and git.* config; memory path is always .groove/memory/
  • Call /groove-utilities-task-analyse to get task summary for daily memory population
  • Memory population order (must follow this sequence):
    1. /groove-utilities-memory-log-git
    2. /groove-utilities-memory-log-daily
    3. /groove-utilities-memory-log-weekly (only if last weekday of week, or explicit request)
    4. /groove-utilities-memory-log-monthly (only if last weekday of month, or explicit request)
  • Last weekday detection: use local calendar date; handle gracefully if run on weekend
  • Do NOT modify tasks during end
  • Spec health check: after all memory steps and before the end hook, check the specs directory at .groove/memory/specs/:
    • Glob all *.md files in the specs directory (including subdirectories)
    • For each spec file, check if it has been modified in the last 30 days: run find .groove/memory/specs/ -name "*.md" -mtime +30 — any files returned are stale candidates
    • If stale specs found: report as a brief advisory (do not block):
      ⚠ Stale spec(s) — not modified in 30+ days:
        - <filename> (last modified: <date>)
        ...
      Consider archiving, updating, or deleting specs that are no longer active.
      
    • If no stale specs or specs directory is empty: skip silently
  • After the spec health check, prompt for a session rating (optional):
    • Ask: "Rate today's session (1–5) — how well did the compound loop serve you? (press enter to skip)"
    • If the user provides a rating (1–5): append a line to .groove/memory/learned/signals.md in format:
      | YYYY-MM-DD | <rating>/5 | <one-sentence note if user adds one, otherwise blank> |
      
      If signals.md does not exist, create it first:
      # Session Signals
      
      | Date | Rating | Note |
      |---|---|---|
      
    • If the user presses enter or provides no rating: skip silently
  • After the session rating, prompt for workflow insights (optional):
    • Ask: "Any workflow insights from today to capture in learned memory? Name a topic (e.g. patterns, tools) or press enter to skip."
    • If the user provides a topic and content: append to .groove/memory/learned/<topic>.md under a ## YYYY-MM-DD heading; create the file with a # <Topic> heading if it does not exist; create the dated heading if not already present
    • If the user presses enter or provides no content: skip silently — do not nag
  • If today is Friday (last working day of week) or the last weekday of the month: after the workflow insights prompt, print a one-line suggestion (do not block or prompt further):
    💡 End of week — consider running /groove-utilities-memory-retrospective week for a trend summary.
    
    (Substitute month and "End of month" on the last weekday of the month.)
  • After all standard steps: check if .groove/hooks/end.md exists
    • If it exists: read the ## Actions section and execute each item in order; report completion per item
    • If it does not exist: skip silently

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 72 lines · 28 tokens per session scan A 6a3891adcac8

Subscribe to this mod's changes

groove-daily-end is a skill published in the GitHub repository andreadellacorte/groove (5 stars, last pushed 1mo ago), licensed MIT. It adds 28 tokens to every session and 976 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

Cortex

Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…

danielmiessler/LifeOS · 196 tokens

Migrate

Intakes external content, classifies chunks against LifeOS taxonomy, commits with provenance. Sources: .md/.txt, stdin, LifeOS dirs, CLAUDE.md/Cursor/OpenAI Custom Instructions, Obsidian/Notion/Apple Notes exports. MigrateScan classifies → routing table. MigrateApprove with…

danielmiessler/LifeOS · 158 tokens

daily-briefing

Proactive daily briefing that fires on a recurring schedule, pulls recent memory and workspace context, composes a structured summary (action items, progress, radar, next steps), and delivers it to all active channels. Enable with a time like "set up my daily briefing at 9am". Disable, reschedule, or check status at…

vellum-ai/vellum-assistant · 75 tokens

company-brain

Your team's shared, AI-ready knowledge base — people, companies, meetings, SOPs, and decisions structured so Claude can answer questions on your team's behalf. Team-scope sibling to second-brain (which is personal-scope). Seven modes — capture (drop something into the right structured dir), compile (process into wiki…

coreyhaines31/makerskills · 322 tokens

email-assistant

Read, search, draft, and send emails via Himalaya CLI or Python IMAP/SMTP. Requires email account configuration.

fuyuxiang/echo-agent · 29 tokens

calendar

Manage calendar events via CalDAV (Google/iCloud/Nextcloud) or local ICS files. View, create, and query events.

fuyuxiang/echo-agent · 29 tokens