Flow with Grace
A multi-project parallel development tool for the AI era
English | 简体中文
TidyFlow is a macOS-native multi-project development tool focused on parallel development across projects and branches, reducing context-switching overhead.
If you need to move multiple projects or feature branches forward at the same time, frequently switch between different AI agents, and jump quickly between terminal and file workflows, TidyFlow provides a unified workspace.
- 📂 Parallel Multi-Project Management: Manage multiple independent projects in one interface without interference.
- 🌿 Native Git Worktree Support: True branch isolation based on Git Worktree, so you can develop multiple branches in parallel without
git stashor constant branch switching. - 💻 VS Code-Level Terminal Experience: Built with xterm.js + real PTY, with full support for advanced TUI tools like
vim,tmux, andhtop, including 256-color and TrueColor. - 🍎 Authentic macOS Native Experience: Built with SwiftUI + AppKit, aligned with macOS HIG, and optimized for keyboard-first workflows.
- ⚙️ Rust Core Engine: A Rust backend powering PTY management, Git operations, filesystem handling, and state persistence.
TidyFlow uses a modern hybrid native architecture:
- Frontend (UI Shell): A macOS-native app built with SwiftUI and AppKit for window management and system integration.
- Terminal Container: xterm.js running inside WKWebView for high-performance terminal rendering.
- Core Engine (Backend): A high-performance Rust engine handling PTY management, Git operations, filesystem access, and state persistence.
- Communication: Frontend and backend communicate via WebSocket + MessagePack (binary, Protocol v7 envelope; structure continues from v6).
Cmd + Shift + P: Open Command PaletteCmd + P: Quick Open filesCmd + 1/2/3: Switch right panel (Explorer/Search/Git)
Cmd + T: New terminal tabCmd + W: Close current tabCmd + Option + T: Close other tabsCtrl + Tab: Next tabCtrl + Shift + Tab: Previous tabCtrl + 1-9: Switch tab by indexCmd + 1-9: Switch workspace by shortcut
If you want to build TidyFlow from source, make sure Rust and Xcode are installed.
./scripts/tidyflow dev # Build core + app and launch./scripts/tidyflow check # Protocol/version guard checks
./scripts/tidyflow test # Core tests
./scripts/tidyflow release --dry-runcd core
cargo build --releaseopen app/TidyFlow.xcodeproj # Open in Xcode and run (Cmd+R)The project supports automated signing and notarization so it runs smoothly on other macOS devices.
- Build unsigned DMG:
./scripts/build_dmg.sh - Signed build:
SIGN_IDENTITY="Developer ID..." ./scripts/build_dmg.sh --sign - Notarize:
./scripts/notarize.sh --profile tidyflow-notary - Generate SHA256:
./scripts/tools/gen_sha256.sh dist/<dmg-name>.dmg(build_dmg.shalso generates this automatically)
Before release, run: docs/RELEASE_CHECKLIST.md
Version history: CHANGELOG.md
This project is open source under LGPL-3.0.
See LICENSE and COPYING for details.
