/** * PostgreSQL Introspection Tools * * Agent-optimized read-only database analysis tools for dependency graphs, * cascade simulation, schema snapshots, constraint analysis, and * DDL migration risk analysis (pg_migration_risks). * 6 tools total. * * Note: Migration *tracking* tools (init, record, apply, rollback, history, * status) are in the separate "migration" group — see ./migration.ts. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; import { createDependencyGraphTool, createTopologicalSortTool, createCascadeSimulatorTool } from "./graph.js"; import { createSchemaSnapshotTool } from "./snapshot.js"; import { createConstraintAnalysisTool, createMigrationRisksTool } from "./analysis.js"; /** * Get all introspection tools (read-only analysis) */ export declare function getIntrospectionTools(adapter: PostgresAdapter): ToolDefinition[]; export { createDependencyGraphTool, createTopologicalSortTool, createCascadeSimulatorTool, createSchemaSnapshotTool, createConstraintAnalysisTool, createMigrationRisksTool, }; //# sourceMappingURL=index.d.ts.map