@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 CHANGED
@@ -4,7 +4,9 @@
4
4
  [![License: Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=flat-square)](LICENSE)
5
5
  [![Node.js >=20](https://img.shields.io/badge/node-%3E%3D20-brightgreen?style=flat-square)](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
- - **25+ Native Tools**: File operations, search, shell commands, web fetch, agent coordination
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" && !skipEditDiffRepeat) {
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: skipEditDiffRepeat,
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: skipEditDiffRepeat
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: (decision === "accept" || decision === "accept_always") && tname === "edit_tool" && hadPreview
15259
+ editPreviewAlreadyShown: false
15263
15260
  });
15264
15261
  }
15265
15262
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomad-e/bluma-cli",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "BluMa independent agent for automation and advanced software engineering.",
5
5
  "author": "Alex Fonseca",
6
6
  "license": "Apache-2.0",