@nomad-e/bluma-cli 0.0.101 → 0.0.103
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/config/bluma-mcp.json +13 -13
- package/dist/config/native_tools.json +9 -8
- package/dist/main.js +740 -762
- package/package.json +2 -2
- package/dist/config/todo_rules.md +0 -157
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"reasoning": {
|
|
4
|
-
"type": "stdio",
|
|
5
|
-
"command": "cmd",
|
|
6
|
-
"args": [
|
|
7
|
-
"/c",
|
|
8
|
-
"npx",
|
|
9
|
-
"-y",
|
|
10
|
-
"@sousaalex1605/bluma-nootebook"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"reasoning": {
|
|
4
|
+
"type": "stdio",
|
|
5
|
+
"command": "cmd",
|
|
6
|
+
"args": [
|
|
7
|
+
"/c",
|
|
8
|
+
"npx",
|
|
9
|
+
"-y",
|
|
10
|
+
"@sousaalex1605/bluma-nootebook"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
14
|
}
|
|
@@ -4,32 +4,33 @@
|
|
|
4
4
|
"type": "function",
|
|
5
5
|
"function": {
|
|
6
6
|
"name": "shell_command",
|
|
7
|
-
"description": "Executes
|
|
7
|
+
"description": "Executes terminal commands in a universal and robust way. Automatically detects the appropriate shell (bash/sh on Linux/macOS, cmd/PowerShell on Windows). Handles timeouts gracefully and captures all output. Use for: installing packages (npm/pip/cargo), running tests, building projects, git operations, and any shell commands.",
|
|
8
8
|
"parameters": {
|
|
9
9
|
"type": "object",
|
|
10
10
|
"properties": {
|
|
11
11
|
"command": {
|
|
12
12
|
"type": "string",
|
|
13
|
-
"description": "
|
|
13
|
+
"description": "The shell command to execute. Examples: 'npm install express', 'git status', 'pytest tests/', 'cargo build --release'. The command will be executed in the appropriate shell for the OS."
|
|
14
14
|
},
|
|
15
15
|
"timeout": {
|
|
16
16
|
"type": "integer",
|
|
17
|
-
"description": "Maximum execution time in seconds",
|
|
18
|
-
"default":
|
|
17
|
+
"description": "Maximum execution time in seconds. Default is 300 (5 minutes). Increase for long-running commands like large builds or npm installs. The process will be terminated gracefully if timeout is exceeded.",
|
|
18
|
+
"default": 300,
|
|
19
|
+
"minimum": 1,
|
|
20
|
+
"maximum": 3600
|
|
19
21
|
},
|
|
20
22
|
"cwd": {
|
|
21
23
|
"type": "string",
|
|
22
|
-
"description": "Working directory for command execution
|
|
24
|
+
"description": "Working directory for command execution. Must be an absolute path. Defaults to current working directory if not specified. Use this to execute commands in specific project folders."
|
|
23
25
|
},
|
|
24
26
|
"verbose": {
|
|
25
27
|
"type": "boolean",
|
|
26
|
-
"description": "If
|
|
28
|
+
"description": "If true, returns detailed execution report including platform info, duration, and full output. If false, returns concise output with just status, exit code, and stdout/stderr. Use verbose=true for debugging command issues.",
|
|
27
29
|
"default": false
|
|
28
30
|
}
|
|
29
31
|
},
|
|
30
32
|
"required": [
|
|
31
|
-
"command"
|
|
32
|
-
"timeout"
|
|
33
|
+
"command"
|
|
33
34
|
]
|
|
34
35
|
}
|
|
35
36
|
}
|