AskDB CLI: ask natural-language questions and get validated SQL from the configured dialect.
AskDB schema introspection: engine-agnostic Connector contract + orchestrator + Schema v2 renderer. Integration packages (e.g. @askdb/postgres) supply connectors.
AskDB HTTP API: minimal HTTP wrapper around @askdb/core. POST /ask returns validated SQL only.
AskDB core: dialect-agnostic NL→SQL pipeline. Provides ask() orchestration, schema/IR types, modes, logging, and retrieval input. Bring your own dialect (e.g. @askdb/postgres).
AskDB MySQL integration: introspection connector via information_schema and a mysql2-backed catalog query runner. Pairs with @askdb/core's MYSQL_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 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 Studio: local browser UI for Schema v2 enrichment and sample NL-to-SQL checks.
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 enrichment workspace helpers for Schema v2 authoring surfaces.
AskDB Prisma integration: schema-file introspection connector for Prisma schemas.
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 configuration helpers: Prisma-style env() and askdb.config file discovery for first-party apps.
AskDB TUI: interactive terminal authoring surface that enriches a Schema v2 directory with descriptions, aliases, common query language, and example questions. AI-suggest + human-confirm; BYO LanguageModel.
Local bridge — lets AskDB reach your localhost database
AskDB AI provider registry and shared config helpers for AI SDK language and embedding models.
AskDB Azure OpenAI provider adapter for @askdb/ai.
AskDB Google Generative AI provider adapter for @askdb/ai.
AskDB OpenAI provider adapter for @askdb/ai.
AskDB connector provider registry: maps config-driven introspection provider selections to concrete connector packages.