- scripts/make-icon.py: generates a 1024x1024 source.png — dark rounded square + 2x2 tile grid with one active-blue tile and one broadcast-orange tile (matches the in-app accent colors). Regenerated all desktop icon sizes via 'pnpm tauri icon'; pruned iOS/Android/UWP outputs. - Version bump 0.0.1 -> 0.1.0 across package.json, Cargo.toml, tauri.conf.json. First real release. - scripts/release.sh: takes vX.Y.Z, sanity-checks (clean tree, on main, in sync, tag matches package.json, installer exists, tag not already present), tags + pushes, uploads NSIS .exe to Forgejo via tea releases create --asset. - README rewritten: Install section pointing at Forgejo releases, Using-it cheatsheet for all M2-M4 features (splits, broadcast, palette, etc.), Develop/Test/Release triplet for the WSL<->Windows workflow, icon regen instructions. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 KiB
15 KiB
memory — tiletopia
Durable memory for this project. Read at session start, update before session end. Date format: YYYY-MM-DD.
Decisions & rationale
- Stack: Tauri 2 + Svelte 5 + TypeScript + Vite + pnpm + xterm.js +
portable-pty. Mirrorsclaude-usage-widgetso we reuse a known-good Windows-targeting toolchain (MSVC + WebView2 + NSIS installer). No new technology bets stacked on top of the new product bet. - Layout model: binary tree of splits, NOT free-form rectangles. Same as i3 / tmux / Zellij. Each internal node is HSplit/VSplit + ratio; each leaf is a terminal. Dragging a gutter mutates one parent ratio; both sibling subtrees reflow; descendants get
resize. Adaptive resize falls out automatically with no constraint solver. Preset layouts ("3 columns", "2×2") are pre-built trees. - PTY backend:
portable-pty(same crate WezTerm uses). Spawnswsl.exe -d <distro> --cd <path>on Windows. Manager is aMutex<HashMap<PaneId, PaneHandle>>in Rust; each pane has a background reader thread that emitspane://{id}/dataevents. - Wire format: base64-encoded byte chunks via Tauri events. xterm.js's
onDataemits strings; we UTF-8 encode then base64. Slower than a typed-array payload but trivially correct. Revisit if throughput matters. - Source on Windows-native disk (
D:\dev\tiletopia\), symlinked into WSL. Same pattern asrimlike(D:\godot\rimlike) andtavernkeep. Forced by pnpm 11.x'sisDriveExFatcrashing on\\wsl.localhost\...UNC paths. - Don't commit
node_modules,src-tauri/target, or.pnpm-store. DO commitCargo.lock(binary project, reproducible builds). - Session awareness without an in-pane agent. Plan: poll
/proc/<pid>/cwdof the shell's child + foreground process every ~2s. Sufficient to detectcdand whetherclaudeis running. - State propagation in the layout tree: hybrid mutable + replace. The root tree is
$state(...)at App level. Direct mutation (e.g.node.ratio = Xduring gutter drag) is reactive via Svelte 5's deep proxy. Structural changes (split/close) go through pure helpers intree.tsthat return a new root, which App reassigns. Drag stays fast (no tree walk); structural changes stay simple.{#key leaf.id}aroundLeafPaneensures swapping a leaf in/out cleanly unmounts XtermPane (which kills the PTY on destroy). - Layout persistence:
%APPDATA%/com.megaproxy.tiletopia/workspace.jsonvia two Tauri commands (save_workspace,load_workspace). Atomic write (tmp + rename) so a crash mid-save can't leave a partial file. Path comes from Tauri'sapp.path().app_config_dir()— no separatedirscrate needed. M2's localStorage path is checked once at boot as a one-time migration source, then cleared. - Auto-save is debounced 500ms. Every tree mutation kicks the
$effect; it resets a timeout and only writes after 500ms of quiet. Cheap enough to never need throttling on UI mutations; matters because each gutter-drag step would otherwise hit disk dozens of times per second. - Pane operations bundled into a
PaneOpsinterface inlib/layout/ops.ts. Pane and SplitNode just passopsthrough; LeafPane consumes it. Replaces M2's per-callback prop drilling (would have been split + close + setDistro + setLabel + distros = 5 separate props). Easier to grow as M4 adds broadcast / palette ops. - Per-pane distro change forces a remount via id swap.
changeDistrointree.tsassigns a new id to the leaf;Pane.svelte's{#key leaf.id}unmounts XtermPane (which kills the old PTY) and mounts a fresh one with the new distro. Same mechanism we already use for split/close. - Split inherits parent's distro AND cwd (not label — label is a per-pane name, not a hierarchy thing). So "split right" while in a project keeps both panes in that project.
- Broadcast input is frontend-routed, not a backend command. Each LeafPane reports its backend
PaneIdto App viaops.registerPaneId. When a broadcasting pane'sXtermPane.onInputfires, App'sbroadcastFromwalks all other leaves withbroadcast === trueand callswriteToPane(theirPaneId, b64). No Rust changes needed; the existing per-pane write path does the work N times. Origin pane writes to its own PTY normally — broadcast is purely about mirroring to others. - Idle detection lives in LeafPane. Each pane tracks
lastDataTime(reset on everyXtermPane.onDataReceived) and asetIntervalthat firesops.notifyafterIDLE_THRESHOLD_MS(5000ms) of silence, once per idle cycle. No backend involvement — purely observes the existing PTY data stream. The "is foreground process claude" filter is deferred (would need a Rust-side foreground-process probe); for now every pane notifies after 5s of quiet. - In-app toasts (top-right stack), 5s auto-dismiss. Lives in
Notifications.svelte; App owns the array + auto-dismiss timer. Not native OS notifications — defertauri-plugin-notificationif/when we want desktop alerts that work when the app is backgrounded. - Ctrl+K palette: modal overlay with text filter on
label | distro | cwd, arrow-key nav, Enter to focus. Activating a pane setsactiveLeafId;LeafPanehas a$derivedactive = ops.activeLeafId === leaf.idand a$effectthat bumps afocusTriggercounter when active flips true;XtermPanewatchesfocusTriggerand callsterm.focus(). Active pane gets a blue 1px border; broadcasting pane gets orange.
Open questions / TODOs
M2 — splits-tree layout component. Two panes side by side, draggable divider, both panes alive. Save/restore layout as JSON.Done 2026-05-22.M3 — workspace persistence + preset layouts + per-pane distro + pane labels.Done 2026-05-22.M4 — orchestration. Broadcast input, idle notifications, Ctrl+K palette.Done 2026-05-22.Auto-save debouncing.500ms timer inApp.svelte$effect.HMR distro picker reset.No longer an issue — per-pane distro selection.- Idle detection: filter by "claude is foreground." Currently every pane notifies after 5s silence, which fires too eagerly when the user is reading a
clauderesponse. Want to detect thatclaude(or any user-specified process) is actually running in the pane's shell before notifying. Needs a Rust-side probe over WSL:wsl.exe -d <distro> ps --ppid <shell_pid> -o comm=. Defer to a future polish pass. - Native OS notifications. Right now toasts only show while the app is focused.
tauri-plugin-notificationwould push to Windows Action Center; useful for "claude finished" when the app is minimized. Worth adding if/when the user actually backgrounds the app while waiting for sessions. - Configurable idle threshold. Hardcoded 5000ms in
LeafPane.svelte. Should move into a settings panel; M5 territory. Logic tests forVitest, 43 cases, runs viatree.ts.pnpm test. Done 2026-05-22.- Component-level tests (vitest + jsdom + @testing-library/svelte) — would have caught the M4 active-border reactivity bug. Useful when the Svelte component surface stops being trivial; defer until/unless something else goes sideways.
- Multi-workspace tabs. Several independent layouts the user can switch between. Saved as
workspaces.jsonwith{ current: id, list: [{ id, name, tree }] }. Not on the M0–M5 critical path; either bolt on after M5 ship or fold into a "tabs" minor milestone. M5 — Ship infrastructure.Custom icon, version bumped to 0.1.0,scripts/release.shfor one-shot tag+upload, README install section. Done 2026-05-22. Next step (user action): runpnpm tauri buildon Windows thenscripts/release.sh v0.1.0from WSL to cut the actual release.- Native Windows shells (cmd / pwsh)?
portable-ptysupports them for free; keep the option open. Decide whether to expose in UI at M3. - Persistent scrollback across app restarts. Would need an out-of-process mux daemon. Big scope creep; explicitly deferred past v1.
- Keybinding philosophy. Copy tmux, copy WezTerm, or invent? Decide at M3.
Session log
2026-05-22 — M5 ship infrastructure
- New icon:
scripts/make-icon.py(Pillow) draws a 1024×1024 dark rounded square with a 2×2 grid — one tile in the active-blue, one in the broadcast-orange, two muted. Mirrors the in-app.leaf.active/.leaf.broadcastingcolors so the brand is consistent end-to-end. - Generated the full icon set via
pnpm tauri icon src-tauri/icons/source.png. Pruned the iOS/Android/UWP outputs Tauri also emits — kept only32x32.png,128x128.png,128x128@2x.png,icon.icns,icon.ico,source.png(mirrors widget's slim set). - Version bump 0.0.1 → 0.1.0 across
package.json,src-tauri/Cargo.toml,src-tauri/tauri.conf.json. First "real" release. scripts/release.sh: takesvX.Y.Z, sanity-checks (clean tree, on main, in sync with origin, package.json version matches tag, installer exists, tag doesn't already exist), tags + pushes, thentea releases create --asset <installer>to attach the NSIS .exe.- README rewritten with
Installsection pointing at Forgejo releases,Using itcheatsheet for all the M2-M4 features, and aDevelop/Test/Releasetriplet that documents the WSL↔Windows split.
2026-05-22 — Tests: vitest on tree.ts
- Added vitest 2.x as a devDep;
pnpm test/pnpm test:watchscripts. - Extended
vite.config.tswith atest:block (node environment,src/**/*.test.ts) usingvitest/config-flavored defineConfig. - New
src/lib/layout/tree.test.ts: 43 cases covering newLeaf/newSplit (defaults + props), replaceById (immutability + sibling preservation), splitLeaf (inheritance + no-op on miss), closeLeaf (root/sibling-collapse/nested), findLeaf, leafCount, walkLeaves (left-to-right order), changeDistro (MUST swap id), changeLabel (MUST NOT swap id, trim/clear), toggleBroadcast (MUST NOT swap id), all 5 presets (shape + distro propagation + fresh ids), serialize/deserialize roundtrip + invalid-input rejection. - Notable invariants the tests pin down:
changeDistroswaps the leaf id (we rely on{#key}to remount XtermPane → kill the old PTY → spawn a fresh one);changeLabelandtoggleBroadcastkeep the same id (metadata-only, no respawn). Regressing either of those silently would break the UX in subtle ways — tests catch it.
2026-05-22 — M4 orchestration (broadcast + notifications + palette)
tree.ts: addedbroadcast?: booleanto LeafNode;walkLeavesgenerator;toggleBroadcasthelper (metadata-only, no id swap).ops.ts: extendedPaneOpswithtoggleBroadcast,broadcastFrom,setActivePane,registerPaneId,notify, plusactiveLeafIddata field.XtermPane.svelte: added optional callbacksonSpawn,onInput(called after each writeToPane on user keypress),onDataReceived(called per PTY output chunk), and afocusTriggerprop (counter; bumping it refocuses the terminal). All optional; pre-M4 callers untouched.LeafPane.svelte: 📡 broadcast toggle in toolbar; idle detection (5s threshold, 1s polling, fires once per idle cycle); active/broadcasting border colors; click anywhere on the leaf sets it active; on active=true bumps focusTrigger so XtermPane refocuses.- New
Notifications.svelte: top-right toast stack, slide-in animation, 5s auto-dismiss + manual ×. - New
Palette.svelte: modal overlay with backdrop, autofocused text input, filtered list (label/distro/cwd substring), ↑/↓ navigation, Enter/click to pick, Escape to close. App.svelte: paneIdByLeaf Map (non-reactive lookup); notifications $state with auto-dismiss; activeLeafId; paletteOpen with global Ctrl+K listener; broadcastFrom routes via walkLeaves + writeToPane; ⌘K button in titlebar.pnpm checkclean (111 files).
2026-05-22 — M3 persistence + presets + per-pane distro/label
- Backend: added
save_workspace(json)andload_workspace()Tauri commands. Atomic write via tmp + rename. Path resolved fromapp.path().app_config_dir(). - Frontend ipc:
saveWorkspace/loadWorkspacewrappers. tree.ts: addedchangeDistro(with id swap to force XtermPane remount),changeLabel, and 5 preset trees (single, 2H, 3H, 2V, 2×2).- New
lib/layout/ops.tswithPaneOpsinterface; refactoredPane.svelte/SplitNode.svelte/LeafPane.svelteto takeopsinstead of individual callbacks. LeafPane.svelte: in-toolbar pane-label editor (click to rename, Enter saves, Esc cancels) and distro chip with click-popover. Picking a different distro in the popover respawns the pane.App.svelte: migrated to APPDATA persistence with 500ms debounce. One-time localStorage→APPDATA migration on boot. Split inherits parent's distro+cwd viafindLeaf. Titlebar preset buttons (1 / 2H / 3H / 2V / 2×2) with a confirm prompt when replacing >1 pane.pnpm checkclean (109 files, 0 errors, 0 warnings).- Manual verification on Windows: (to fill in)
2026-05-22 — M2 splits-tree layout
- Added
src/lib/layout/:tree.ts(pure helpers: types, newLeaf, splitLeaf, closeLeaf, replaceById, serialize/deserialize with shape-checking),SplitNode.svelte(flex container + draggable gutter with pointer-capture),LeafPane.svelte(toolbar with split-right/split-down/close + XtermPane underneath),Pane.svelte(recursive dispatcher). - Rewrote
App.svelteto hold the tree as$stateand wire split/close callbacks through. Auto-saves to localStorage on every$effecttick. - Distro UX: titlebar shows clickable distro buttons that set the default for new panes. Existing panes keep their distro. Per-pane override is M3.
- Passes
pnpm checkcleanly (108 files, 0 errors, 0 warnings). - Validated manually on Windows: splits-right and splits-down work, both panes stay alive, gutter drag reflows both xterm sides cleanly, close-pane collapses to the sibling, layout restores from localStorage across window restarts.
2026-05-22
- Graduated from
ideas/wsl-mux/to project. Renamed working namewsl-mux→ final nametiletopiaacross Cargo/package/Tauri configs and source. - Promoted spike contents from
D:\dev\wsl-mux\spike\toD:\dev\tiletopia\(no more spike subdir; the project IS what was the spike). - Initialized git, created private Forgejo repo
tiletopia, pushed initial scaffold. - M1 verified manually on the Windows host: window opens, xterm.js renders,
claudeTUI works inside the pane, resize reflows cleanly,htoprenders. Distro auto-pick chosedocker-desktop(Docker Desktop's BusyBox helper distro) on first try — added explicit clickable distro buttons in the titlebar as both a diagnostic and a manual override. ClickingUbuntuworks end-to-end. - Old idea folder archived to
~/claude/archive/ideas/wsl-mux/(preserves full brainstorm + session log).
External references
- Approved plan / roadmap:
~/.claude/plans/imperative-coalescing-feigenbaum.md(M0–M5 milestones with verification criteria for each) - Stack precedent:
~/claude/projects/claude-usage-widget/— same Tauri + Svelte + WebView2 toolchain, already ships a Windows installer via Forgejo releases. WSL distro-probing logic copied/adapted intosrc-tauri/src/pty.rs. - Archived idea history:
~/claude/archive/ideas/wsl-mux/plan.md - Forgejo repo: https://git.rdx4.com/megaproxy/tiletopia
- xterm.js docs: https://xtermjs.org/
- portable-pty crate: https://crates.io/crates/portable-pty
- Tauri 2 docs: https://v2.tauri.app/
- Prior art for splits-tree layout: i3, tmux, Zellij, WezTerm