š Eden Academy Worktree Quick Reference
Current Status
ā
8 worktrees created for parallel development
ā
Documentation viewer working at http://localhost:3000/admin/docs
ā
Agent cheatsheet accessible at http://localhost:3000/admin/docs/agents
šÆ Immediate Actions for Each Agent
1. Architecture Guardian (/architecture)
``
bash
cd /Users/seth/eden-worktrees/architecture
npm install
npm run dev -- --port 3001
`
Current Task: Create ADRs for worktree strategy and parallel development
2. Token Economist (
/token-economics
)
`
bash
cd /Users/seth/eden-worktrees/token-economics
npm install
npm run dev -- --port 3002
`
Current Task: Implement revenue calculator for agent economics
3. Agent Launcher (
/agent-launcher
)
`
bash
cd /Users/seth/eden-worktrees/agent-launcher
npm install
npm run dev -- --port 3003
`
Current Task: Build agent onboarding flow UI
4. Academy Domain Expert (
/academy-domain
)
`
bash
cd /Users/seth/eden-worktrees/academy-domain
npm install
npm run dev -- --port 3004
`
Current Task: Refine agent cheatsheet content and documentation
5. Feature Integrator (
/feature-integrator
)
`
bash
cd /Users/seth/eden-worktrees/feature-integrator
npm install
npm run dev -- --port 3005
`
Current Task: Set up CI/CD for worktree integration
6. Registry Guardian (
/registry
)
`
bash
cd /Users/seth/eden-worktrees/registry
npm install
npm run dev -- --port 3006
`
Current Task: Standardize data models across all features
7. Design Critic (
/ui-design
)
`
bash
cd /Users/seth/eden-worktrees/ui-design
npm install
npm run dev -- --port 3007
`
Current Task: Improve documentation viewer UI/UX
8. Code Reviewer (
/code-review
)
`
bash
cd /Users/seth/eden-worktrees/code-review
npm install
npm run dev -- --port 3008
`
Current Task: Review and prepare merges from other worktrees
š Daily Workflow
Morning Sync (Each Agent)
`
bash
In your worktree
git fetch origin main
git rebase origin/main
`
During Development
`
bash
Make changes
git add .
git commit -m "feat(your-area): Description"
git push origin feature/your-branch
`
End of Day
`
bash
Push your changes
git push origin feature/your-branch
Create PR if ready
gh pr create --title "Your feature" --body "Description"
`
š Integration Schedule
Daily Merges (5 PM)
Registry changes (data models)
Architecture changes (system design)
UI improvements (design system)
Weekly Integration (Fridays)
⢠Token economics updates
⢠Agent onboarding features
⢠Content updates
⢠Production deployments
šØ Conflict Prevention
Each agent owns their domain - Don't edit files outside your area
Coordinate through PRs - Review each other's changes
Use the cheatsheet - Reference at /admin/docs/agents
Communicate in comments - Document your decisions
š Live Worktree Status
| Agent | Worktree | Port | Status | Current Focus |
| Architecture Guardian | /architecture | 3001 | š¢ Ready | ADRs |
| Token Economist | /token-economics | 3002 | š¢ Ready | Revenue calc |
| Agent Launcher | /agent-launcher | 3003 | š¢ Ready | Onboarding UI |
| Academy Domain | /academy-domain | 3004 | š¢ Ready | Content |
| Feature Integrator | /feature-integrator | 3005 | š¢ Ready | CI/CD |
| Registry Guardian | /registry | 3006 | š¢ Ready | Data models |
| Design Critic | /ui-design | 3007 | š¢ Ready | UI polish |
| Code Reviewer | /code-review | 3008 | š¢ Ready | Reviews |
š” Pro Tips
Open multiple terminals - One per agent/worktree
Use VSCode workspaces - Open each worktree in separate window
Monitor all dev servers - Keep logs visible
Check the cheatsheet - http://localhost:3000/admin/docs/agents
Commit frequently - Small, atomic commits
šÆ Today's Priorities
ā
Worktrees created
ā
Documentation viewer deployed
ā³ Each agent: Install dependencies in your worktree
ā³ Each agent: Start your dev server on assigned port
ā³ Begin feature development in parallel
š Quick Links
⢠Agent Cheatsheet: http://localhost:3000/admin/docs/agents
⢠Documentation Hub: http://localhost:3000/admin/docs
⢠Site Map: http://localhost:3000/admin/docs/sitemap
⢠All Docs: http://localhost:3000/admin/docs/all
ā” Emergency Commands
Remove a worktree
`
bash
git worktree remove /Users/seth/eden-worktrees/
`
Reset a worktree
`
bash
cd /Users/seth/eden-worktrees/
git reset --hard origin/main
`
List all worktrees
`
bash
git worktree list
`
Clean up
`
bash
git worktree prune
``