ci: add agents and add reviewing instructions (#2754)

This commit is contained in:
Will Jones
2025-10-29 17:28:26 -07:00
committed by GitHub
parent 93c2cf2f59
commit 45255be42c
6 changed files with 136 additions and 112 deletions

13
nodejs/AGENTS.md Normal file
View File

@@ -0,0 +1,13 @@
These are the typescript bindings of LanceDB.
The core Rust library is in the `../rust/lancedb` directory, the rust binding
code is in the `src/` directory and the typescript bindings are in
the `lancedb/` directory.
Whenever you change the Rust code, you will need to recompile: `npm run build`.
Common commands:
* Build: `npm run build`
* Lint: `npm run lint`
* Fix lints: `npm run lint-fix`
* Test: `npm test`
* Run single test file: `npm test __test__/arrow.test.ts`