agentsbestfriend 0.14.0 → 0.15.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 +5 -0
- package/dist/index.js +790 -99
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -26,6 +26,11 @@ AI coding agents waste tokens re-reading files and searching blindly. ABF gives
|
|
|
26
26
|
| `abf_related_tests` | Heuristically rank test files most likely to cover a file or symbol |
|
|
27
27
|
| `abf_preview_changes` | Read-only preview: diff + symbol/import deltas + risk flags + external usage probe (no writes) |
|
|
28
28
|
| `abf_refactor_plan` | Read-only ordered edit plan for rename/move/extract/split with collision detection |
|
|
29
|
+
| `abf_apply_edit` | **Write tool** — atomic file write with sha256 hash check (disabled unless `ABF_ENABLE_WRITES=1`) |
|
|
30
|
+
| `abf_diagnostics` | TypeScript diagnostics (errors/warnings) for one file or all tracked TS/JS files |
|
|
31
|
+
| `abf_definition` | Goto-definition via the TypeScript language service — file, line range, and source preview |
|
|
32
|
+
| `abf_hover` | Type signature + JSDoc for an identifier (IDE-style hover) |
|
|
33
|
+
| `abf_call_graph` | Transitive callers/callees of a function or method (TS/JS, ts-morph) |
|
|
29
34
|
| `abf_git` | Git log, blame, diff (recent/staged/unstaged) |
|
|
30
35
|
| `abf_file_summary` | Full-text search across LLM-generated file summaries (FTS5, OR/AND mode) |
|
|
31
36
|
| `abf_conventions` | Detected naming, structure, and formatting conventions |
|