mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 22:03:44 +00:00
- Rename all package names from companion-* to clanker-* - Update npm scopes from @mariozechner to @harivansh-afk - Rename config directories .companion -> .clanker - Rename environment variables COMPANION_* -> CLANKER_* - Update all documentation, README files, and install scripts - Rename package directories (companion-channels, companion-grind, companion-teams) - Update GitHub URLs to harivansh-afk/clanker-agent - Preserve full git history from companion-cloud monorepo
1.4 KiB
1.4 KiB
Progress Log: Separate Windows Mode Implementation
2026-02-26
Completed
- Researched terminal window title support for iTerm2, WezTerm, tmux, Zellij
- Clarified requirements with user:
- True separate OS windows (not panes/tabs)
- Team lead also gets separate window
- Title format:
team-name: agent-name - iTerm2: use window title property via escape sequences
- Implementation: optional flag + global setting
- Skip tmux and Zellij for now
- Created comprehensive task_plan.md with 10 phases
- Created findings.md with technical research details
Next Steps
- ✅ Phase 1: Update Terminal Adapter Interface - COMPLETE
- ✅ Phase 2: iTerm2 Window Support - COMPLETE
- ✅ Phase 3: WezTerm Window Support - COMPLETE
- ✅ Phase 4: Terminal Registry - COMPLETE
- ✅ Phase 5: Team Configuration - COMPLETE
- ✅ Phase 6: spawn_teammate Tool - COMPLETE
- ✅ Phase 7: spawn_lead_window Tool - COMPLETE
- ✅ Phase 8: Lifecycle Management (killTeammate, check_teammate updated) - COMPLETE
- ✅ Phase 9: Testing - COMPLETE (all 8 tests pass, TypeScript compiles)
- Phase 10: Documentation
Blockers
None
Decisions Made
- Use escape sequences (
\033]2;Title\007) for iTerm2 window titles since AppleScript window.title is read-only - Add new
windowIdfield to Member model instead of reusingtmuxPaneId - Store
separateWindowsglobal setting in TeamConfig - Skip tmux/Zellij entirely (no fallback attempted)