@nomad-e/bluma-cli 0.1.47 → 0.1.48
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/README.md +5 -2
- package/dist/main.js +4 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
6
|
|
|
7
|
-
**BluMa** is a CLI-based model agent for advanced software engineering workflows. Built with React/Ink 5, it provides an interactive terminal interface for LLM-powered automation, code generation, refactoring, and task execution. Features persistent sessions, contextual reasoning, smart feedback, and extensible tools/skills architecture.
|
|
7
|
+
**BluMa** is a CLI-based model agent for advanced software engineering workflows. Built with React/Ink 5, it provides an interactive terminal interface for LLM-powered automation, code generation, refactoring, and task execution. Features persistent sessions, contextual reasoning, smart feedback, coordinator mode for worker orchestration, and extensible tools/skills architecture.
|
|
8
|
+
|
|
9
|
+
**Current Version:** 0.1.47
|
|
8
10
|
|
|
9
11
|
---
|
|
10
12
|
|
|
@@ -60,7 +62,8 @@ The agent maintains persistent conversation history, workspace snapshots, and co
|
|
|
60
62
|
- **Tool Execution Policy**: Intelligent decisions based on sandbox mode and safety
|
|
61
63
|
|
|
62
64
|
### Tools & Skills
|
|
63
|
-
- **
|
|
65
|
+
- **40+ Native Tools**: File operations, search, shell commands, web fetch, agent coordination, task management, MCP resources, cron scheduling, LSP queries, notebook editing
|
|
66
|
+
- **Coordinator Mode**: Orchestrator playbook for delegating work to background workers
|
|
64
67
|
- **MCP Integration**: Model Context Protocol SDK for external tool servers
|
|
65
68
|
- **Skills System**: Pluggable knowledge modules (git, PDF, Excel, etc.)
|
|
66
69
|
- **Agent Coordination**: Spawn/wait/list subagents for parallel work
|
package/dist/main.js
CHANGED
|
@@ -10475,9 +10475,8 @@ var BluMaAgent = class {
|
|
|
10475
10475
|
}
|
|
10476
10476
|
}
|
|
10477
10477
|
}
|
|
10478
|
-
const skipEditDiffRepeat = toolName === "edit_tool" && decisionData.editPreviewAlreadyShown === true;
|
|
10479
10478
|
let previewContent;
|
|
10480
|
-
if (toolName === "edit_tool"
|
|
10479
|
+
if (toolName === "edit_tool") {
|
|
10481
10480
|
try {
|
|
10482
10481
|
previewContent = await this._generateEditPreview(toolArgs);
|
|
10483
10482
|
} catch (previewError) {
|
|
@@ -10490,7 +10489,7 @@ var BluMaAgent = class {
|
|
|
10490
10489
|
tool_name: toolName,
|
|
10491
10490
|
arguments: toolArgs,
|
|
10492
10491
|
preview: previewContent,
|
|
10493
|
-
suppress_edit_diff_preview:
|
|
10492
|
+
suppress_edit_diff_preview: false,
|
|
10494
10493
|
tool_policy: this.buildToolPolicyForUi(toolName, toolArgs)
|
|
10495
10494
|
});
|
|
10496
10495
|
try {
|
|
@@ -10553,7 +10552,7 @@ var BluMaAgent = class {
|
|
|
10553
10552
|
tool_name: toolName,
|
|
10554
10553
|
arguments: toolArgs,
|
|
10555
10554
|
result: toolResultContent,
|
|
10556
|
-
suppress_edit_diff:
|
|
10555
|
+
suppress_edit_diff: false
|
|
10557
10556
|
});
|
|
10558
10557
|
if (toolName === "message") {
|
|
10559
10558
|
try {
|
|
@@ -15255,11 +15254,9 @@ Please use command_status to check the result and report back to the user.`;
|
|
|
15255
15254
|
toolCalls: pendingConfirmation,
|
|
15256
15255
|
preview: confirmationPreview,
|
|
15257
15256
|
onDecision: (decision) => {
|
|
15258
|
-
const hadPreview = confirmationPreview != null && String(confirmationPreview).trim().length > 0;
|
|
15259
|
-
const tname = pendingConfirmation?.[0]?.function?.name ?? "";
|
|
15260
15257
|
setConfirmationPreview(null);
|
|
15261
15258
|
handleConfirmation(decision, pendingConfirmation, {
|
|
15262
|
-
editPreviewAlreadyShown:
|
|
15259
|
+
editPreviewAlreadyShown: false
|
|
15263
15260
|
});
|
|
15264
15261
|
}
|
|
15265
15262
|
}
|