DocsšŸš€ Eden Academy Worktree Quick Reference

šŸš€ Eden Academy Worktree Quick Reference

šŸš€ 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

    AgentWorktreePortStatusCurrent Focus
    Architecture Guardian/architecture3001🟢 ReadyADRs
    Token Economist/token-economics3002🟢 ReadyRevenue calc
    Agent Launcher/agent-launcher3003🟢 ReadyOnboarding UI
    Academy Domain/academy-domain3004🟢 ReadyContent
    Feature Integrator/feature-integrator3005🟢 ReadyCI/CD
    Registry Guardian/registry3006🟢 ReadyData models
    Design Critic/ui-design3007🟢 ReadyUI polish
    Code Reviewer/code-review3008🟢 ReadyReviews

    šŸ’” 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
  • • 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 ``