andreadellacorte/groove

groove-utilities-memory-log-git

Record git activity summary in memory log.

First seen Mar 3, 2026

Installation

$ npx skills add andreadellacorte/groove --skill groove-utilities-memory-log-git

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from andreadellacorte/groove · top by installs.

npx skills add andreadellacorte/groove

Browse all from andreadellacorte/groove

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Allowed toolsRead Write Edit Glob Grep Bash(git:*) AskUserQuestion
More metadata
author
andreadellacorte

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,287 B
  • docs SUMMARY.md 78 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 532 installs

SKILL.md

groove-utilities-memory-log-git

Outcome

.groove/memory/git/YYYY-MM-DD-GIT-N.md is created with a git summary for the current session. N is auto-incremented based on existing files for that date.

Acceptance Criteria

  • File created at .groove/memory/git/YYYY-MM-DD-GIT-N.md with correct N
  • Content includes commits since midnight, git status, and diff stats
  • N does not collide with existing files for the same date
  • File is suitable for inclusion in the same commit it describes

Constraints

  • Memory path is always .groove/memory/
  • Always list existing files in .groove/memory/git/ before writing to determine correct N
  • N starts at 1 for the first file of the day, increments for subsequent
  • Git data to include:

- git log --since=midnight --oneline for commits - git status --short for current state - git diff --stat HEAD for changed files summary

  • Use template at skills/groove-utilities-memory-log-git/templates/git.md for file structure
  • If no git changes since midnight, still write the file noting no changes