raggrep 0.7.1 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cli/main.js +773 -140
- package/dist/cli/main.js.map +10 -7
- package/dist/domain/entities/index.d.ts +2 -0
- package/dist/domain/entities/lexicon.d.ts +99 -0
- package/dist/domain/services/index.d.ts +2 -0
- package/dist/domain/services/jsonPathExtractor.d.ts +29 -0
- package/dist/domain/services/jsonPathExtractor.test.d.ts +4 -0
- package/dist/domain/services/lexicon.d.ts +45 -0
- package/dist/domain/services/lexicon.test.d.ts +6 -0
- package/dist/index.js +772 -139
- package/dist/index.js.map +10 -7
- package/dist/modules/data/json/index.d.ts +28 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ RAGgrep indexes your code and lets you search it using natural language. Everyth
|
|
|
12
12
|
- **Watch mode** — Keep the index fresh in real-time as you code.
|
|
13
13
|
- **Hybrid search** — Combines semantic similarity with keyword matching for best results.
|
|
14
14
|
- **Literal boosting** — Exact identifier matches get priority. Use backticks for precise matching: `` `AuthService` ``.
|
|
15
|
+
- **Semantic expansion** — Domain-specific synonyms improve recall (function ↔ method, auth ↔ authentication).
|
|
15
16
|
|
|
16
17
|
## Installation
|
|
17
18
|
|