/** * Embedded hardening command prompts. * These are the same commands from the slash command kit, * served as MCP resources and used by tools. * * Commands are organized into categories: * - core: Main hardening pipeline (audit, fix-*, verify, harden) * - audits: Specialized audit commands (deps, deadcode, errors, etc.) * - certification: Enterprise certification agents */ import type { HardeningCommand } from "./types.js"; export type { HardeningCommand } from "./types.js"; /** * All available hardening commands. */ export declare const COMMANDS: Record; /** * Get a command by name. * @param name - The command name (e.g., "audit", "fix-critical") * @returns The command or undefined if not found */ export declare function getCommand(name: string): HardeningCommand | undefined; /** * List all available commands. * @returns Array of all hardening commands */ export declare function listCommands(): HardeningCommand[]; //# sourceMappingURL=index.d.ts.map