Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
Coding
Worktrunk
Try itGit worktree manager for parallel AI agent workflows. Use when the user needs to manage multiple working directories for parallel development, create feature...
What it does
Worktrunk — Git Worktree Manager for AI Agents
The skill document
Worktrunk — Git Worktree Manager for AI Agents
One-sentence summary:
vx worktrunk(aliasvx wt) manages Git worktrees so you can run multiple AI agents in parallel without conflicts.
worktrunk is a Rust CLI tool designed for parallel AI agent workflows. It makes Git worktrees as easy to use as branches, with quality-of-life features like hooks, LLM commit messages, and per-worktree dev servers.
Why AI Agents Need This
When running multiple AI agents (Claude Code, Codex, etc.) on the same repo, they conflict:
- Agent A modifies
src/main.rs - Agent B modifies
src/main.rs→ conflict
Solution: Give each agent its own worktree (isolated working directory).
Main repo: ~/projects/my-app/ (main branch)
Agent 1: ~/projects/my-app.wt/feat-auth/ (feat/auth branch)
Agent 2: ~/projects/my-app.wt/feat-pay/ (feat/pay branch)
Installation (via vx)
vx install worktrunk
vx worktrunk --version # verify
Core Commands
wt switch — Navigate Worktrees
# Create new worktree + switch to it
vx wt switch -c feat/auth
# Switch to existing worktree
vx wt switch feat/auth
# Switch back to main repo
vx wt switch -
# Create AND launch an AI agent in one command
vx wt switch -c -x claude feat/auth
wt list — Show All Worktrees
vx wt list # compact list
vx wt list --full # with CI status, AI-generated summaries, diff preview
wt merge — Clean Merge Workflow
vx wt merge # squash merge + delete worktree + delete branch
vx wt merge --rebase # rebase merge
vx wt merge --keep # merge but keep worktree
wt remove — Clean Up
vx wt remove feat/auth # remove worktree only
vx wt remove --with-branch feat/auth # remove worktree + branch
Advanced Features
PR Checkout
vx wt switch pr:123 # checkout PR #123 into a worktree
Hooks (Automate Setup)
Configure in .worktrunk/hooks.toml:
[post_create]
command = "npm install" # auto-install deps on create
[pre_merge]
command = "vx run test" # run tests before merge
Share Build Caches Between Worktrees
# Copy node_modules/ to new worktree (skip cold install)
vx wt switch -c --copy-cache feat/auth
Per-Worktree Dev Server (Unique Port)
worktrunk can assign each worktree a unique port (via hash_port template filter):
# In package.json:
"scripts": {
"dev": "next dev -p {{ hash_port 3000 }}"
}
# Main repo → port 3000
# feat/auth → port 3217 (deterministic hash)
Typical AI Agent Workflow
# 1. Main repo: assign tasks to agents
cd ~/projects/my-app
echo "Add JWT auth" > .AITASK
# 2. Create isolated worktree for agent 1
vx wt switch -c -x claude feat/auth
# (inside worktree, agent runs autonomously)
# Agent modifies files, commits, etc.
# 3. Meanwhile, create another worktree for agent 2
vx wt switch -c -x claude feat/pay
# 4. When agents finish, merge both
vx wt merge feat/auth
vx wt merge feat/pay
vx Integration
worktrunk is installed and managed by vx:
# Install
vx install worktrunk
# Run (vx auto-installs if missing)
vx worktrunk --version
vx wt switch -c feat/auth
# Update
vx install worktrunk@latest
Command Reference
| Command | Description |
|---|---|
vx wt switch [branch] | Switch to worktree |
vx wt switch -c [branch] | Create worktree + switch |
vx wt switch -c -x [branch] | Create + run command (e.g., launch AI agent) |
vx wt switch pr: | Checkout PR into worktree |
vx wt list | List worktrees |
vx wt list --full | Detailed list with CI/LLM summary |
vx wt merge | Squash merge + cleanup |
vx wt remove [branch] | Remove worktree |
vx wt remove --with-branch [branch] | Remove worktree + branch |
Tips for AI Agents
- Always use
vx wt switch -cto create isolated environments before making changes - Use
-x claudeto automatically launch the AI agent in the new worktree - Use
vx wt mergeinstead of manualgit merge— it handles worktree cleanup - Configure hooks in
.worktrunk/hooks.tomlto auto-install dependencies on create - Use
--copy-cacheto sharenode_modules//target/between worktrees
Related skills
Find why your productivity system keeps failing, then apply the smallest fix — capacity math, bottleneck routing, durable local notes.
Save, search, and manage personal notes and knowledge bases in Get笔记 on explicit request.
Read and write Excel workbooks, worksheets, ranges, tables, and charts in OneDrive through Microsoft Graph with managed OAuth.
Write, debug, and tune Playwright specs with locator strategy, trace diagnosis, and CI-aware timeouts.
Fetch raw ad creative, app, ranking, and revenue data from AdMapix as structured JSON.
More from loonghao
Browse all skillsBuild and modernize DCC-MCP adapters and standalone internal MCP services for Nuke, Blender, Maya, and other DCC hosts.
Scaffold, validate, and review DCC-MCP skill packages with agent-facing authoring guidance.
Teaches AI agents how to use vx, the universal dev tool manager. Use when the project has vx.toml or .vx/, or when the user mentions vx, tool version managem...
This skill should be used when OpenClaw needs to install, configure, inspect, or operate `fpt-cli` for Autodesk Flow Production Tracking / ShotGrid workflows...
Best practices for using vx effectively. Use when following recommended patterns for tool management, project setup, and team workflows with vx.
Complete vx CLI command reference. Use when looking up specific vx command syntax, flags, output formats, or token-efficient forwarding. vx-native commands s...