dev: update agents.md, review.md

This commit is contained in:
rcmerci
2025-09-26 20:19:30 +08:00
parent b275207abf
commit 208825c654
2 changed files with 6 additions and 0 deletions

View File

@@ -12,6 +12,10 @@
- `deps/`: Internal dependencies/modules
- `clj-e2e/`: End to end test code
## Common used cljs keywords
- All commonly used ClojureScript keywords are defined using `logseq.common.defkeywords/defkeyword`.
- Search for `defkeywords` to find all the definitions.
## Testing Commands
- Run linters and unit-tests: `bb dev:lint-and-test`
- Run single focused unit-test:

View File

@@ -21,3 +21,5 @@ You're Clojure(script) expert, you're responsible to check those common errors:
- After adding a new property in `logseq.db.frontend.property/built-in-properties`, you need to add a corresponding migration in `frontend.worker.db.migrate/schema-version->updates`.
- e.g. `["65.9" {:properties [:logseq.property.embedding/hnsw-label-updated-at]}]`
- If common keywords are added or modified, make corresponding changes in their definitions.