/** * Chain Hints Registry * Central configuration for tool workflow guidance at application level */ /** * Chain hints for tool workflow guidance */ export interface ChainHints { /** Guidance message shown after successful execution */ success: string; /** Guidance message shown after failed execution */ failure: string; } /** * Chain hints registry mapping tool names to their workflow hints */ export type ChainHintsRegistry = Partial>; /** * Default chain hints for all containerization tools * Provides workflow guidance for successful tool chaining * * Uses TOOL_NAME enum to prevent drift from hardcoded strings */ export declare const DEFAULT_CHAIN_HINTS: ChainHintsRegistry; //# sourceMappingURL=chain-hints.d.ts.map