You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -269,24 +269,25 @@ Most MCP tools are passive — the agent has to know to call them. repowise hook
269
269
270
270
### PreToolUse — every search gets graph context
271
271
272
-
When your AI agent runs `Grep` or `Glob`, repowise intercepts the call and enriches it with:
272
+
When your AI agent runs `Grep` or `Glob`, repowise intercepts the call and enriches it with the top 3 related files — found via multi-signal search (symbol name match, file path match, and full-text search on wiki content), ranked by relevance then PageRank:
273
273
274
-
-**Matching files** from the wiki's full-text search index
275
-
-**Symbols** — functions, classes, and methods in those files
276
-
-**Importers** — who depends on this file (callers)
277
-
-**Dependencies** — what this file imports (callees)
278
-
-**Git signals** — hotspot status, bus factor, primary owner
274
+
-**Symbols** — top functions, classes, and methods in each file
275
+
-**Imported by** — who depends on this file
276
+
-**Uses** — what this file depends on
279
277
280
-
Average latency: **24ms**. No LLM calls. No network. Pure local SQLite queries.
278
+
No LLM calls. No network. Pure local SQLite queries.
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
---
11
11
12
+
## [0.3.1] — Unreleased
13
+
14
+
### Changed
15
+
-**PreToolUse hook** — replaced FTS-only file retrieval with multi-signal ranking: symbol name match (highest weight), file path match, then FTS on wiki content. Returns top 3 files instead of 5. Removed git signals (HOTSPOT, bus-factor, owner) from enrichment output — use `get_risk` for that. Removed Bash command interception. Dependencies shown as "Uses" (2 per file) alongside symbols (3) and importers (3).
16
+
17
+
---
18
+
12
19
## [0.3.0] — 2026-04-13
13
20
14
21
### Added
@@ -286,7 +293,8 @@ See git history for releases prior to 0.2.0.
0 commit comments