@nomad-e/bluma-cli 0.0.108 → 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.
@@ -73,18 +73,27 @@
73
73
  {
74
74
  "type": "function",
75
75
  "function": {
76
- "name": "message_notify_user",
77
- "description": "This tool allows the agent to send structured messages to the user for confirming task start, replying to messages from name:'user_overlay' (continuing or integrating into the flow), giving short initial responses, notifying about method or strategy changes, providing progress updates, and concluding tasks with a final confirmation or result.",
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
- "message": {
81
+ "content": {
82
+ "type": "string",
83
+ "description": "Message content in Markdown format."
84
+ },
85
+ "message_type": {
82
86
  "type": "string",
83
- "description": "The body of the message in Markdown format."
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
- "message"
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": "agent_end_turn",
541
- "description": "This tool MUST be used to signal the system that the agent has ended its turn and should switch to idle mode. It takes no parameters.",
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
- "required": []
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
  }