raggrep 0.13.2 → 0.14.2

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
@@ -8,12 +8,13 @@ RAGgrep indexes your code and lets you search it using natural language. Everyth
8
8
 
9
9
  - **Zero-config search** — Just run `raggrep query` and it works. Index is created and updated automatically.
10
10
  - **Multi-language support** — Deep understanding of TypeScript, JavaScript, Python, Go, and Rust with AST-aware parsing.
11
- - **Vocabulary-based search** — Search `user` to find `getUserById`, `fetchUserData`, `UserService`, etc. Understands code naming conventions.
11
+ - **Vocabulary-based search** — Search `user` to find `getUserById`, `fetchUserData`, `UserService`, etc. Natural language queries like "where is user session validated" find `validateUserSession()`.
12
12
  - **Local-first** — All indexing and search happens on your machine. No cloud dependencies.
13
13
  - **Incremental** — Only re-indexes files that have changed. Instant search when nothing changed.
14
14
  - **Watch mode** — Keep the index fresh in real-time as you code.
15
15
  - **Hybrid search** — Combines semantic similarity with keyword matching for best results.
16
16
  - **Literal boosting** — Exact identifier matches get priority. Use backticks for precise matching: `` `AuthService` ``.
17
+ - **Phrase matching** — Exact phrases in documentation are found even when semantic similarity is low.
17
18
  - **Semantic expansion** — Domain-specific synonyms improve recall (function ↔ method, auth ↔ authentication).
18
19
 
19
20
  ## Installation