blun-king-cli 9.1.92 → 9.1.94
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/LIESMICH.txt +1 -1
- package/README.md +1 -1
- package/blun.mjs +2 -0
- package/package.json +1 -1
package/LIESMICH.txt
CHANGED
package/README.md
CHANGED
package/blun.mjs
CHANGED
|
@@ -252986,6 +252986,7 @@ var init_edit = __esmMin((() => {
|
|
|
252986
252986
|
replace_all: boolean$1().optional().describe("Set true only when every occurrence of old_string should be replaced."),
|
|
252987
252987
|
single_file_override: boolean$1().optional().describe("Set true only when the latest direct user message explicitly requires one single source file. The tool verifies that request and reports the override visibly.")
|
|
252988
252988
|
});
|
|
252989
|
+
edit_default = "Perform exact replacements in existing files. Use Edit for every incremental change instead of Write or Bash `sed`. Read the target immediately before every Edit; take `old_string` and `new_string` from that current Read output, remove the line-number prefix and tab, and never guess from memory.\n\n`old_string` must be exact and unique unless `replace_all` is true. Add surrounding context when it is ambiguous. Use `replace_all` only when every occurrence should change, and keep `new_string` different from `old_string`. Parallel Edit calls may target different files only. Before another Edit on the same file, read it again because the first replacement can invalidate the next `old_string`.\n\nFor pure CRLF files, Read shows LF; use LF in both strings and Edit restores CRLF. For mixed endings or lone carriage returns, include the displayed `\\r` escapes exactly.\n\nSource files may contain at most 500 lines. An already oversized file may only be edited when the result has fewer lines. Set `single_file_override=true` only when the latest direct user message explicitly requires one single file; the accepted override is shown to the user.";
|
|
252989
252990
|
EditTool = class {
|
|
252990
252991
|
kaos;
|
|
252991
252992
|
workspace;
|
|
@@ -257818,6 +257819,7 @@ var init_glob = __esmMin((() => {
|
|
|
257818
257819
|
WINDOWS_PATH_HINT = "\n\nWindows note: the `path` argument accepts both Windows paths (e.g. `C:\\Users\\foo`) and POSIX-style paths (e.g. `/c/Users/foo`). Matched paths are returned in Windows backslash form; convert them to forward slashes before using them in a Bash command.";
|
|
257819
257820
|
S_IFMT$2 = 61440;
|
|
257820
257821
|
S_IFDIR$1 = 16384;
|
|
257822
|
+
glob_default = "Find files by glob pattern, sorted by modification time with the newest first. The search uses ripgrep and respects `.gitignore`, `.ignore`, and `.rgignore` unless `include_ignored` is true. Sensitive files remain filtered. Results are files only; to locate a directory, match a file below it.\n\nA bare pattern such as `*.ts` matches file names at any depth. `src/*.ts` matches one level, while `src/**/*.ts` walks recursively below that anchor. brace expansion such as `*.{ts,tsx}` is supported. Dot names match only when their pattern segment starts with `.`, for example `.github/**/*.yml`; `**` does not descend into dot-directories.\n\nResults stop after 100 matching paths and append a truncation marker. Refine the extension or directory and search again when that is not enough. Avoid broad ignored dependency or build trees such as `node_modules/**/*.js`, `.venv/**/*.py`, `__pycache__/**`, or `target/**`; with `include_ignored` they waste context and usually hit the cap. Prefer a specific subpath.";
|
|
257821
257823
|
GlobTool = class {
|
|
257822
257824
|
kaos;
|
|
257823
257825
|
workspace;
|