40 lines
No EOL
945 B
Markdown
40 lines
No EOL
945 B
Markdown
# Daily Log — Agent Collaboration Guide
|
||
|
||
## Purpose
|
||
Store short daily observations, tasks completed, blockers, and ideas that don’t warrant a full research note.
|
||
|
||
## File Naming
|
||
`YYYY-MM-DD-log.md` (e.g., `2026-06-11-log.md`)
|
||
|
||
## Required Front-Matter
|
||
```yaml
|
||
---
|
||
title: "YYYY-MM-DD Daily Log"
|
||
date: YYYY-MM-DD
|
||
tags: ["#daily-log"]
|
||
status: published
|
||
---
|
||
```
|
||
|
||
## Structure
|
||
- **Tasks Done** – bullet list of completed items
|
||
- **Notes** – any insights, links, or observations
|
||
- **Blockers** – what prevented progress and possible solutions
|
||
- **Next Actions** – prioritized list for tomorrow
|
||
|
||
## Example
|
||
```markdown
|
||
## Tasks Done
|
||
- Cloned morpheus-brain repo
|
||
- Added Forgejo URL migration study
|
||
|
||
## Notes
|
||
- Other agents may be working on the same repo; always `git pull` before editing.
|
||
|
||
## Blockers
|
||
- Need to confirm CI hook for push validation.
|
||
|
||
## Next Actions
|
||
- Create the `ci-pre-push.sh` script
|
||
- Add `knowledge-base/AGENTS.md`
|
||
``` |