Update CLAUDE.md and add GitHub automation workflows

- Restructure CLAUDE.md with project leadership and clearer organization
- Add GitHub workflows for daily summaries and lead notifications
- Add issue template for rebase reminders
- Add hooks README for future git hook documentation

Closes #17

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
dlond 2025-08-20 20:16:35 +12:00 committed by Daniel Lond
parent 9c70d9a98f
commit ac77be6ede
5 changed files with 316 additions and 46 deletions

View file

@ -0,0 +1,33 @@
---
name: Rebase Reminder
about: Automated reminder to rebase active worktrees
title: '⚠️ Rebase Reminder: [PR NUMBER]'
labels: rebase-reminder, automated
assignees: ''
---
## Action Required
PR #[NUMBER] has been merged to main. Active worktrees should be rebased.
## Steps to Rebase
```bash
# Update main
cd ~/dev/projects/[PROJECT]
git fetch origin main
git pull origin main
# For each active worktree
cd ~/dev/worktrees/[PROJECT]/[WORKTREE]
git rebase origin/main
git push --force-with-lease
```
## Checklist
- [ ] Main branch updated
- [ ] Active worktrees identified
- [ ] Each worktree rebased
- [ ] Changes pushed with --force-with-lease
---
*This is an automated reminder. Close this issue once all worktrees are rebased.*