pentesting 0.7.21 → 0.7.22
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6694,7 +6694,7 @@ var App = ({ autoApprove = false, target }) => {
|
|
|
6694
6694
|
agent.on(AGENT_EVENT.TOOL_CALL, (data) => {
|
|
6695
6695
|
const args = Object.entries(data.input).slice(0, 2).map(([k, v]) => `${k}=${typeof v === "string" ? v.slice(0, 30) : "..."}`).join(" ");
|
|
6696
6696
|
const cmdPreview = data.name === "bash" && data.input.command ? String(data.input.command).slice(0, 50).replace(/\n/g, " ") : data.name;
|
|
6697
|
-
setCurrentStatus(`\u25B6 ${cmdPreview}`);
|
|
6697
|
+
setCurrentStatus(`\u25B6 Executing: ${cmdPreview}`);
|
|
6698
6698
|
addMessage(MESSAGE_TYPE.TOOL, `\u25B6 ${data.name} ${args}`);
|
|
6699
6699
|
wireLoggerRef.current?.toolCall(data.id, data.name, data.input);
|
|
6700
6700
|
});
|