/** * Worktree Extension - Git worktree management for isolated workspaces * * Provides commands to create, list, and manage git worktrees for feature development. * Codifies the patterns from the using-git-worktrees skill into an interactive command. */ import type { ExtensionFactory } from '@mariozechner/pi-coding-agent'; declare const PiWorktreeExtension: ExtensionFactory; export default PiWorktreeExtension;