UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

26 lines 669 B
/** * Git-related utility functions */ /** * Execute a command safely using CommandValidator */ export declare function safeExec(command: string, args: string[], options?: { cwd?: string; timeout?: number; }): Promise<{ stdout: string; stderr: string; }>; /** * Get current git branch */ export declare function getCurrentGitBranch(cwd: string): Promise<string>; /** * Get current git commit hash */ export declare function getCurrentGitCommit(cwd: string): Promise<string>; /** * Check if git repository has uncommitted changes */ export declare function hasUncommittedChanges(cwd: string): Promise<boolean>; //# sourceMappingURL=git.d.ts.map