@nomad-e/bluma-cli 0.0.96 → 0.0.99

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.
@@ -34,6 +34,42 @@
34
34
  }
35
35
  }
36
36
  },
37
+ {
38
+ "type": "function",
39
+ "function": {
40
+ "name": "todo",
41
+ "description": "Manages a simple task list to plan and track work towards completing objectives. The agent provides an array of tasks with descriptions and completion status. Use this tool to organize work into manageable steps.",
42
+ "parameters": {
43
+ "type": "object",
44
+ "properties": {
45
+ "tasks": {
46
+ "type": "array",
47
+ "items": {
48
+ "type": "object",
49
+ "properties": {
50
+ "description": {
51
+ "type": "string",
52
+ "description": "Clear description of the task to be done"
53
+ },
54
+ "isComplete": {
55
+ "type": "boolean",
56
+ "description": "Whether the task is completed (true) or pending (false)"
57
+ }
58
+ },
59
+ "required": [
60
+ "description",
61
+ "isComplete"
62
+ ]
63
+ },
64
+ "description": "Array of tasks with their descriptions and completion status. Example: [{\"description\": \"Setup project structure\", \"isComplete\": true}, {\"description\": \"Implement authentication\", \"isComplete\": false}]"
65
+ }
66
+ },
67
+ "required": [
68
+ "tasks"
69
+ ]
70
+ }
71
+ }
72
+ },
37
73
  {
38
74
  "type": "function",
39
75
  "function": {