raggrep 0.6.1 → 0.7.0
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 +2 -0
- package/dist/cli/main.js +670 -123
- package/dist/cli/main.js.map +11 -7
- package/dist/domain/entities/index.d.ts +2 -0
- package/dist/domain/entities/literal.d.ts +101 -0
- package/dist/domain/services/index.d.ts +3 -0
- package/dist/domain/services/literalExtractor.d.ts +35 -0
- package/dist/domain/services/literalScorer.d.ts +93 -0
- package/dist/domain/services/queryLiteralParser.d.ts +20 -0
- package/dist/domain/services/queryLiteralParser.test.d.ts +7 -0
- package/dist/index.js +665 -118
- package/dist/index.js.map +11 -7
- package/dist/infrastructure/storage/index.d.ts +1 -0
- package/dist/infrastructure/storage/literalIndex.d.ts +103 -0
- package/dist/modules/language/typescript/index.d.ts +8 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ RAGgrep indexes your code and lets you search it using natural language. Everyth
|
|
|
11
11
|
- **Incremental** — Only re-indexes files that have changed. Instant search when nothing changed.
|
|
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
|
+
- **Literal boosting** — Exact identifier matches get priority. Use backticks for precise matching: `` `AuthService` ``.
|
|
14
15
|
|
|
15
16
|
## Installation
|
|
16
17
|
|
|
@@ -98,6 +99,7 @@ raggrep query "database" --min-score 0.2 # Set minimum score threshold
|
|
|
98
99
|
raggrep query "interface" --type ts # Filter by file extension
|
|
99
100
|
raggrep query "auth" --filter src/auth # Filter by path
|
|
100
101
|
raggrep query "api" -f src/api -f src/routes # Multiple path filters
|
|
102
|
+
raggrep query "\`AuthService\` class" # Exact identifier match (backticks)
|
|
101
103
|
```
|
|
102
104
|
|
|
103
105
|
| Flag | Short | Description |
|