AskDB Microsoft SQL Server integration: introspection connector via sys.* catalog views and an mssql-backed catalog query runner. Pairs with @askdb/core's SQLSERVER_DIALECT.
AskDB SQLite integration: introspection connector via sqlite_master + PRAGMA functions and a better-sqlite3-backed catalog query runner. Pairs with @askdb/core's SQLITE_DIALECT.
AskDB RAG layer: deterministic chunker over Schema v2, BYO embedder + vector store (in-memory, file-backed, pgvector), and an optional retriever wired into @askdb/core ask().
AskDB Postgres integration: re-exports the Postgres DialectSpec from @askdb/core and ships the introspection connector (live + from-export bundle), catalog SQL templates, and a pg -backed catalog query runner.
AskDB MySQL integration: introspection connector via information_schema and a mysql2-backed catalog query runner. Pairs with @askdb/core's MYSQL_DIALECT.
AskDB configuration helpers: Prisma-style env() and askdb.config file discovery for first-party apps.
Config-aware AskDB facade: resolves schema, model, and dialect from config so callers only pass a question.
AskDB Studio: local browser UI for Schema v2 enrichment and sample NL-to-SQL checks.
AskDB HTTP API: minimal HTTP wrapper around @askdb/core. POST /ask returns validated SQL only.
AskDB CLI: ask natural-language questions and get validated SQL from the configured dialect.