raggrep 0.6.1 → 0.7.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 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 |