Loading...
Loading...
Daily/weekly/monthly/git log population and session context management. Use when: (1) writing daily closeout log; (2) rolling up weekly/monthly memory; (3) recording git summary; (4) starting/ending sessions; (5) creating specs or docs. NOT for: task management (use task); compound loop (use work).
npx skill4agent add andreadellacorte/groove memorygit rev-parse --show-toplevelmemory:| Command | Description |
|---|---|
| Write daily closeout log to |
| Roll up weekly memory from daily files |
| Roll up monthly memory from daily files |
| Write git summary to |
| Command | Description |
|---|---|
| Start a new named session |
| Resume an existing active session |
| End a session and capture work done |
| Create an outcome spec |
| Create documentation |
| Review current work |
| Command | Description |
|---|---|
| Install configured sessions backend |
| $ARGUMENTS | Action |
|---|---|
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| → |
| (empty) | → |
.groove/index.mdskills/groove/templates/index.mdmemory:mkdir -p <memory>/daily <memory>/weekly <memory>/monthly <memory>/git<memory>/ # default: .groove/memory/
├── daily/
│ └── YYYY-MM-DD.md
├── weekly/
│ └── YYYY-Www.md
├── monthly/
│ └── YYYY-MM.md
└── git/
└── YYYY-MM-DD-GIT-N.md
skills/memory/
├── SKILL.md
├── commands/
│ ├── log/
│ │ ├── daily.md
│ │ ├── weekly.md
│ │ ├── monthly.md
│ │ └── git.md
│ ├── session/
│ │ ├── start.md
│ │ ├── resume.md
│ │ ├── end.md
│ │ ├── spec.md
│ │ ├── doc.md
│ │ └── review.md
│ └── install.md
└── templates/
└── log/
├── daily.md
├── weekly.md
├── monthly.md
└── git.md