agentsbestfriend 0.13.0 → 0.14.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 CHANGED
@@ -15,11 +15,17 @@ AI coding agents waste tokens re-reading files and searching blindly. ABF gives
15
15
  | Tool | What it does |
16
16
  |---|---|
17
17
  | `abf_search` | Code search — exact (ripgrep), keyword-ranked, or semantic (embedding-based) |
18
+ | `abf_search_multi` | Run multiple search queries (exact/keyword/semantic) in one call with weighted score merging |
18
19
  | `abf_symbols` | Functions, classes, exports in a file (AST-based for TS/JS, regex for Python) |
19
20
  | `abf_chunk` | Smart file chunk by symbol name, chunk index, or file overview |
20
21
  | `abf_project_overview` | Tech stack, folder structure, key dependencies at a glance |
21
22
  | `abf_dependencies` | Import graph — who imports what |
22
23
  | `abf_impact` | Find all usages of a symbol across the project |
24
+ | `abf_impact_typed` | AST-aware (ts-morph) impact analysis with classified references (definition/call/import/type_ref/jsx) and confidence levels |
25
+ | `abf_blast_radius` | BFS over reverse-import graph for a file with risk scoring (low/medium/high) |
26
+ | `abf_related_tests` | Heuristically rank test files most likely to cover a file or symbol |
27
+ | `abf_preview_changes` | Read-only preview: diff + symbol/import deltas + risk flags + external usage probe (no writes) |
28
+ | `abf_refactor_plan` | Read-only ordered edit plan for rename/move/extract/split with collision detection |
23
29
  | `abf_git` | Git log, blame, diff (recent/staged/unstaged) |
24
30
  | `abf_file_summary` | Full-text search across LLM-generated file summaries (FTS5, OR/AND mode) |
25
31
  | `abf_conventions` | Detected naming, structure, and formatting conventions |