chore: add claude md files (#2531)

Gives basic context to Claude about how to do common tasks in the repo.
This commit is contained in:
Will Jones
2025-07-23 12:20:36 -07:00
committed by GitHub
parent 7e7466d224
commit fbff244ed8
3 changed files with 53 additions and 0 deletions

16
python/CLAUDE.md Normal file
View File

@@ -0,0 +1,16 @@
These are the Python bindings of LanceDB.
The core Rust library is in the `../rust/lancedb` directory, the rust binding
code is in the `src/` directory and the Python bindings are in the `lancedb/` directory.
Common commands:
* Build: `make develop`
* Format: `make format`
* Lint: `make check`
* Fix lints: `make fix`
* Test: `make test`
* Doc test: `make doctest`
Before committing changes, run lints and then formatting.
When you change the Rust code, you will need to recompile the Python bindings: `make develop`.