/** * Template-Level Analysis * * Analyzes the full CloudFormation template for cross-resource patterns, * AWS service limit violations, and policy issues that cannot be detected * by analyzing resources individually. * * Runs client-side only — templates never leave the user's machine. * Free for all users — no backend cost or tier gating. */ export { getRegisteredChecks, runAllTemplateLevelChecks } from './registry'; export type { AppContext, TemplateLevelCategory, TemplateLevelCheckDefinition, TemplateLevelCheckFunction, } from './types'; export { AWS_SERVICE_LIMITS, WARNING_THRESHOLD } from './types';