Personal productivity system using git worktrees to manage multiple projects with AI-powered assistance.
Calen is a multi-project management system that uses git worktrees to maintain separate contexts for each project. Each worktree has its own CLAUDE.md (context for Claude Code), README.md, and daily-log.md.
| Project | Description | Status |
|---|---|---|
| Vlaid | Healthcare data API ("Plaid for Healthcare") | Production |
| Willow & Co | Dog park management SaaS | Active (Apple approval) |
| CMS Star Ratings | Healthcare provider ratings API | Production |
| SportsMarkets | AI sports predictions for X | Active |
| Project | Description | Status |
|---|---|---|
| Maturi | Brazilian tropical syrup brand | Market expansion |
| Graphene | B2B industrial nanomaterials | Established |
| Project | Description | Status |
|---|---|---|
| Verzi | Company operations | Active |
| Diathrive | Client - healthcare data schemas | Complete |
| Project | Description | Status |
|---|---|---|
| ExecWatchDog | CEO compensation analysis | Paused |
| Retro Cash Rush | Multiplayer cash prize game | Paused |
| MomentBeheld | Historical visual stories | Dormant |
| Project | Description | Status |
|---|---|---|
| Network | Professional relationships | Active |
| Personal | Family & life | Active |
# Jump to any worktree
cd ~/projects/Calen/worktrees/vlaid
cd ~/projects/Calen/worktrees/willow-co
cd ~/projects/Calen/worktrees/network
# ... etc
# List all worktrees
git worktree list- Morning: Check Slack for daily briefs
- Work: Open relevant worktree in terminal, run
claude - Throughout Day: Update via Slack or direct commits
- Evening: Brain dump in Slack, system auto-commits
- GitHub: Worktree storage and version control
- Slack: Communication interface (one channel per project)
- Linear: Task management
- Gmail/Calendar: Auto-sync for context
- Railway: Backend automation services
Calen/
├── README.md # This file
├── CLAUDE.md # Main branch context
├── backend/ # Railway deployment
└── worktrees/
├── vlaid/
├── willow-co/
├── verzi/
├── diathrive/
├── maturi/
├── graphene/
├── cms-star-ratings/
├── sportsmarkets/
├── execwatchdog/
├── retrocashrush/
├── momentbeheld/
├── network/
└── personal/
Each worktree is independent. To work on a specific project:
- Navigate to the worktree:
cd worktrees/vlaid - Start Claude Code:
claude - Claude will read the CLAUDE.md for context
- Work on your project
- Commit and push when done