Rift CLI: Manage Git Worktrees for Parallel AI Agent Workflows

Rift is a Git worktree manager built specifically for parallel AI agent workflows. It addresses the friction of having a single repository occupied by one agent while you want to start another task, eliminating issues with branch switching, stashing, and dependency conflicts.
How It Works
The basic workflow involves three commands:
rift init- Initialize in your projectrift open- Creates an isolated branch + worktree and launches Claude Code (or any agent) inside itrift close- Cleans up the worktree and branch when done
Each worktree is a full, independent copy of your repository on its own branch, allowing you to work on as many features simultaneously as you want.
Key Features for Multi-Agent Workflows
- Lifecycle hooks that let you auto-install dependencies, run migrations, and assign ports per worktree
- Deterministic port mapping - every worktree gets unique ports so you can run multiple development servers without collisions
rift codeopens all active worktrees in one VS Code/Cursor/Windsurf workspace- Works with any CLI agent - Claude Code, Copilot, Codex, Aider, or whatever you prefer
Technical Details
The project was built with Claude Code itself and is open source under the MIT license. It's built with Bun and available on npm:
npm install -g @priyashpatil/riftGitHub repository: https://github.com/priyashpatil/rift
Documentation: https://rift.priyashpatil.com
📖 Read the full source: r/ClaudeAI
👀 See Also

EsoLang-Bench: A Coding Benchmark Using Esoteric Languages to Test LLM Reasoning
Researchers created EsoLang-Bench, a coding benchmark using esoteric programming languages like Brainfuck and Whitespace to test whether LLMs can reason or just pattern-match. The best result across GPT-5.2, O4-mini, Gemini, Qwen, and Kimi was 11.2%.
PullMD v2.4.1 Adds Native MCP Connector for claude.ai Web and Multi-User Auth
PullMD v2.4.1 now supports the claude.ai web custom connector dialog via OAuth 2.1 + PKCE-S256 and adds multi-user auth modes. Turn any URL into clean Markdown via self-hosted MCP.

Mnemos: Open-Sourced Local-First Memory Layer for Coding Agents
Mnemos is a local-first memory layer for solo coding-agent workflows that addresses common memory system failures like scope bleed, stale facts, and unbounded transcript growth. The public beta includes SQLite starter profiles, MCP support for Claude Code/Desktop, and a biomimetic pipeline with components like SurprisalGate and MutableRAG.

Claude Code Routines: Schedule Agent Tasks Like Cron with Reasoning
Claude Code Routines let you run agent tasks on a schedule without keeping a session open. A Reddit user shares real examples: nightly commit review, weekly dependency check, daily error log analysis — with AI reasoning instead of raw script output.