blun-king-cli 9.1.281 → 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.
Files changed (2) hide show
  1. package/blun.mjs +6 -1
  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 from the local filesystem. Use Read directly for a known concrete file path; missing or invalid paths return errors. Do not pre-check a known file with Glob or `ls`. Use Bash `ls` for a known directory, Glob for unknown file names, and Grep for unknown content. Issue independent Read calls in parallel when several files may help.\n\nRelative paths resolve from the working directory; paths outside it must be absolute. Each call returns at most {{ MAX_LINES }} lines or {{ MAX_BYTES_KB }} KB, whichever comes first, and truncates source lines beyond {{ MAX_LINE_LENGTH }} characters. Page large files with 1-based `line_offset` and `n_lines`; omit `n_lines` to use the {{ MAX_LINES }}-line cap. Negative line_offset reads from the end, up to {{ MAX_LINES }} lines. A capped result with more source lines names the exact next `line_offset`.\n\nSensitive files such as `.env`, credential stores, and SSH private keys are refused; templates and public keys remain readable. Only UTF-8 text without NUL bytes is accepted. Use ReadMediaFile for images or video and Bash or an MCP tool for other binary formats.\n\nOutput is `<line-number>\\t<content>` per line. A trailing `<system>...</system>` block reports line and byte counts, truncation, and line-ending notes; it is not file content. Pure CRLF is displayed as LF and preserved by Edit. Mixed or lone carriage returns appear as `\\r` and require exact `Edit.old_string` escapes.\n\nAfter a successful Edit or Write, do not re-read only to prove the write landed. When correctness depends on an exact file, API, or output shape, inspect that final external contract before finishing.";
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.281",
3
+ "version": "9.1.282",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {