blun-king-cli 9.1.90 → 9.1.92
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
|
@@ -252197,6 +252197,7 @@ var init_agent$1 = __esmMin((() => {
|
|
|
252197
252197
|
}).describe("Cumulative token usage")
|
|
252198
252198
|
});
|
|
252199
252199
|
BACKGROUND_AGENT_UNAVAILABLE = "Background agent execution is not available for this agent because TaskList, TaskOutput, and TaskStop are not enabled.";
|
|
252200
|
+
agent_default = "Launch a subagent for substantial, multi-step work in its own context and wire file. It returns a final report while keeping intermediate file contents out of your context.\n\nThe subagent starts with zero conversation context. Give it a self-contained prompt with the goal, known facts, constraints, and required result. For a direct lookup, include the exact path or command. For an investigation, state the question and evidence needed instead of prescribing rigid steps.\n\nWhen continuing earlier work, resume the existing agent ID instead of spawning a new agent; its context remains available. A subagent report is only visible to you, so relay the relevant conclusions to the user. `timeout_minutes` sets the wall-clock interval before the same agent continues automatically with preserved context; `timeout_minutes=0` disables that interval.\n\nUse Agent for complex, context-heavy work, not a trivial one- or two-step task. Launch independent agents in parallel in one response when useful. After assigning a scope, do not duplicate its searches or reads and do not abandon it to redo the same work manually; both erase the intended context savings.";
|
|
252200
252201
|
AgentTool = class {
|
|
252201
252202
|
subagentHost;
|
|
252202
252203
|
backgroundManager;
|
|
@@ -258636,6 +258637,7 @@ var init_read = __esmMin((() => {
|
|
|
258636
258637
|
MAX_BYTES_KB: MAX_BYTES / 1024,
|
|
258637
258638
|
MAX_LINE_LENGTH
|
|
258638
258639
|
});
|
|
258640
|
+
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.";
|
|
258639
258641
|
ReadTool = class {
|
|
258640
258642
|
kaos;
|
|
258641
258643
|
workspace;
|