/** * git_ops tool implementation for spec-kit * * Provides git operations for spec-kit workflows including * create_branch, checkout, fetch, status, and current_branch. */ import type { AgencyTool } from '@generacy-ai/agency'; /** * Create the spec_kit.git_ops tool. * * This tool provides git operations for spec-kit workflows: * - create_branch: Create and checkout a new branch * - checkout: Switch to an existing branch * - fetch: Fetch from remotes with optional prune * - status: Get working directory status * - current_branch: Get current branch name * * @returns AgencyTool instance */ export declare function createGitOpsTool(): AgencyTool; //# sourceMappingURL=git-ops.d.ts.map