@nomad-e/bluma-cli 0.0.109 → 0.0.110
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/native_tools.json +26 -10
- package/dist/main.js +756 -369
- package/package.json +2 -2
|
@@ -73,18 +73,27 @@
|
|
|
73
73
|
{
|
|
74
74
|
"type": "function",
|
|
75
75
|
"function": {
|
|
76
|
-
"name": "
|
|
77
|
-
"description": "
|
|
76
|
+
"name": "message",
|
|
77
|
+
"description": "Send messages to user. CRITICAL: After sending a message, you MUST use result to end your turn and wait for user response. Use info ONLY for mid-task updates when you will continue working immediately after.",
|
|
78
78
|
"parameters": {
|
|
79
79
|
"type": "object",
|
|
80
80
|
"properties": {
|
|
81
|
-
"
|
|
81
|
+
"content": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Message content in Markdown format."
|
|
84
|
+
},
|
|
85
|
+
"message_type": {
|
|
82
86
|
"type": "string",
|
|
83
|
-
"
|
|
87
|
+
"enum": [
|
|
88
|
+
"info",
|
|
89
|
+
"result"
|
|
90
|
+
],
|
|
91
|
+
"description": "info = mid-task update (you continue working). result = end turn and wait for user (use this after questions, completions, or when you need user input)."
|
|
84
92
|
}
|
|
85
93
|
},
|
|
86
94
|
"required": [
|
|
87
|
-
"
|
|
95
|
+
"content",
|
|
96
|
+
"message_type"
|
|
88
97
|
]
|
|
89
98
|
}
|
|
90
99
|
}
|
|
@@ -495,7 +504,7 @@
|
|
|
495
504
|
"type": "function",
|
|
496
505
|
"function": {
|
|
497
506
|
"name": "create_artifact",
|
|
498
|
-
"description": "Create or update an artifact file in the artifacts directory (~/.bluma/artifacts/). Use this to save implementation plans, walkthroughs, notes, or any document the user should review. Supports markdown files.",
|
|
507
|
+
"description": "Create or update an artifact file in the artifacts directory (~/.bluma-cli/artifacts/). Use this to save implementation plans, walkthroughs, notes, or any document the user should review. Supports markdown files.",
|
|
499
508
|
"parameters": {
|
|
500
509
|
"type": "object",
|
|
501
510
|
"properties": {
|
|
@@ -537,12 +546,19 @@
|
|
|
537
546
|
{
|
|
538
547
|
"type": "function",
|
|
539
548
|
"function": {
|
|
540
|
-
"name": "
|
|
541
|
-
"description": "
|
|
549
|
+
"name": "load_skill",
|
|
550
|
+
"description": "Load a specialized skill to enhance your capabilities for a specific task. Skills provide domain-specific knowledge and best practices. Use this when you need expertise in testing, deployment, git conventions, frameworks, or other specialized areas. The skill will be loaded into context and available for the current task.",
|
|
542
551
|
"parameters": {
|
|
543
552
|
"type": "object",
|
|
544
|
-
"properties": {
|
|
545
|
-
|
|
553
|
+
"properties": {
|
|
554
|
+
"skill_name": {
|
|
555
|
+
"type": "string",
|
|
556
|
+
"description": "Name of the skill to load. Examples: 'testing', 'git-conventional', 'docker', 'react'. Check available skills in the system prompt."
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"required": [
|
|
560
|
+
"skill_name"
|
|
561
|
+
]
|
|
546
562
|
}
|
|
547
563
|
}
|
|
548
564
|
}
|