Package Exports
- nagi-sql
- nagi-sql/package.json
Readme
nagi-sql
nagi-sql is currently a minimal placeholder package used to reserve the npm
package name before the CLI is ready for public distribution.
This package intentionally does not expose a nagi binary yet.
Install
After publication, the reserved package can be installed explicitly with:
pnpm add nagi-sql@reservedRepository workspace setup:
pnpm installLocal Build
pnpm --filter ./typescript/nagi-sql run buildThe build only emits placeholder JavaScript and type declarations under dist/.
It does not compile Rust or bundle a native executable.
Exports
The package exports small metadata helpers so import smoke tests can verify that the package is installed:
import { isNagiSqlCliAvailable, packageName, packageStatus } from "nagi-sql";isNagiSqlCliAvailable() returns false until a future release adds the public
CLI distribution.
CI And Local Verification
From the repository root:
pnpm run typescript:ci