blun-king-cli 9.1.280 → 9.1.282
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/blun.mjs +7 -2
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -259054,7 +259054,12 @@ var init_read = __esmMin((() => {
|
|
|
259054
259054
|
MAX_BYTES_KB: MAX_BYTES / 1024,
|
|
259055
259055
|
MAX_LINE_LENGTH
|
|
259056
259056
|
});
|
|
259057
|
-
read_default = "Read a UTF-8 text file
|
|
259057
|
+
read_default = "Read a known UTF-8 text file. Invalid paths error; directories are unsupported. Relative paths use the working directory; outside paths must be absolute. Use Glob for unknown names, Grep for content, and ReadMediaFile for media.\n\nEach call returns at most {{ MAX_LINES }} lines or {{ MAX_BYTES_KB }} KB and truncates lines beyond {{ MAX_LINE_LENGTH }} characters. Page large files with 1-based `line_offset` and `n_lines`; omit `n_lines` for the cap. Negative `line_offset` reads from the end, up to {{ MAX_LINES }} lines. A capped result names the exact next `line_offset`.\n\nSensitive files such as `.env` and credential stores are refused; templates and public keys remain readable. Only UTF-8 text without NUL bytes is accepted; use Bash or an MCP tool for other binaries.\n\nOutput is `<line-number>\\t<content>` per line. The trailing `<system>...</system>` block is status, not file content. Pure CRLF appears as LF and is preserved by Edit. Mixed or lone carriage returns appear as `\\r` and require exact `Edit.old_string` escapes.";
|
|
259058
|
+
READ_DESCRIPTION = renderPrompt(read_default, {
|
|
259059
|
+
MAX_LINES: MAX_LINES$1,
|
|
259060
|
+
MAX_BYTES_KB: MAX_BYTES / 1024,
|
|
259061
|
+
MAX_LINE_LENGTH
|
|
259062
|
+
});
|
|
259058
259063
|
ReadTool = class {
|
|
259059
259064
|
kaos;
|
|
259060
259065
|
workspace;
|
|
@@ -403022,7 +403027,7 @@ const BUILTIN_SLASH_COMMAND_DEFINITIONS = [
|
|
|
403022
403027
|
},
|
|
403023
403028
|
{
|
|
403024
403029
|
name: "btw",
|
|
403025
|
-
aliases: [],
|
|
403030
|
+
aliases: ["aside"],
|
|
403026
403031
|
descriptionKey: "command.btw.description",
|
|
403027
403032
|
priority: 90,
|
|
403028
403033
|
availability: "always"
|