UNPKG

@steipete/terminator-mcp

Version:

MCP plugin to manage macOS terminal sessions.

8 lines (7 loc) 702 B
import { SwiftCLIResult } from './swift-cli.js'; import { RequestContextMeta } from './types.js'; export declare function sanitizeTag(rawTag: string): string; export declare function resolveEffectiveProjectPath(currentPath: string | undefined, requestMeta: RequestContextMeta | undefined): string | undefined; export declare function resolveDefaultTag(currentTag: string | undefined, projectPath: string | undefined): string | undefined; export declare function formatCliOutputForAI(action: string, cliResult: SwiftCLIResult, command: string | undefined, tag: string | undefined, isBackground: boolean, // Need to know if it was a background exec for timeout message timeoutOverride?: number): string;