/** * Worktree Instructions Builder * * Generates markdown instructions for coding agents explaining * how to work within their assigned git worktree. */ import type { Worktree, WorktreeInstructions } from "../types.js"; /** * Build comprehensive worktree instructions for a coding agent */ export declare function buildWorktreeInstructions(worktree: Worktree): WorktreeInstructions; /** * Build a compact version of instructions (for context-limited scenarios) */ export declare function buildCompactInstructions(worktree: Worktree): string; /** * Inject worktree instructions into an existing prompt */ export declare function injectWorktreeContext(originalPrompt: string, worktree: Worktree, format?: "full" | "compact"): string; //# sourceMappingURL=instructions.d.ts.map