You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
├── status: string # Task status: "not started", "in progress", or "done"
59
-
├── approved: boolean # Task approval status
60
-
├── completedDetails: string # Completion information (required when status is "done")
61
-
├── toolRecommendations: string # Suggested tools that might be helpful for this task
62
-
└── ruleRecommendations: string # Suggested rules/guidelines to follow for this task
63
-
```
64
-
65
-
The system persists this structure to the JSON file after each operation.
66
-
67
-
**Explanation of Task Properties:**
68
-
69
-
-`id`: A unique identifier for the task
70
-
-`title`: A short, descriptive title for the task
71
-
-`description`: A more detailed explanation of the task
72
-
-`status`: The current status of the task (`not started`, `in progress`, or `done`)
73
-
-`approved`: Indicates whether the task has been approved by the user
74
-
-`completedDetails`: Provides details about the task completion (required when `status` is `done`)
75
-
-`toolRecommendations`: A string containing suggested tools (by name or identifier) that might be helpful for completing this task. The LLM can use this to prioritize which tools to consider.
76
-
-`ruleRecommendations`: A string containing suggested rules or guidelines that should be followed while working on this task. This can include things like "ensure all code is commented," "follow accessibility guidelines," or "use the company style guide". The LLM uses these to improve the quality of its work.
├── status: string # Task status: "not started", "in progress", or "done"
333
+
├── approved: boolean # Task approval status
334
+
├── completedDetails: string # Completion information (required when status is "done")
335
+
├── toolRecommendations: string # Suggested tools that might be helpful for this task
336
+
└── ruleRecommendations: string # Suggested rules/guidelines to follow for this task
337
+
```
338
+
339
+
The system persists this structure to the JSON file after each operation.
340
+
341
+
**Explanation of Task Properties:**
342
+
343
+
-`id`: A unique identifier for the task
344
+
-`title`: A short, descriptive title for the task
345
+
-`description`: A more detailed explanation of the task
346
+
-`status`: The current status of the task (`not started`, `in progress`, or `done`)
347
+
-`approved`: Indicates whether the task has been approved by the user
348
+
-`completedDetails`: Provides details about the task completion (required when `status` is `done`)
349
+
-`toolRecommendations`: A string containing suggested tools (by name or identifier) that might be helpful for completing this task. The LLM can use this to prioritize which tools to consider.
350
+
-`ruleRecommendations`: A string containing suggested rules or guidelines that should be followed while working on this task. This can include things like "ensure all code is commented," "follow accessibility guidelines," or "use the company style guide". The LLM uses these to improve the quality of its work.
0 commit comments