start_activity_log
Initiate activity tracking for AI coding tasks by creating timestamped logs with categorization for debugging, implementation, testing, and other development workflows.
Instructions
Start a new activity log with system timestamp and unique Time ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityType | Yes | Type of activity being performed (e.g., 'code_review', 'debugging', 'planning') | |
description | No | Detailed description of the activity | |
tags | No | Tags for categorizing the activity | |
task_scope | Yes | Scope of the task |
Input Schema (JSON Schema)
{
"properties": {
"activityType": {
"description": "Type of activity being performed (e.g., 'code_review', 'debugging', 'planning')",
"type": "string"
},
"description": {
"description": "Detailed description of the activity",
"type": "string"
},
"tags": {
"description": "Tags for categorizing the activity",
"items": {
"type": "string"
},
"type": "array"
},
"task_scope": {
"description": "Scope of the task",
"enum": [
"epic-planning",
"feature-implementation",
"component-implementation",
"debugging",
"integration-tasks",
"optimization-tasks",
"setup-tasks",
"testing-tasks"
],
"type": "string"
}
},
"required": [
"activityType",
"task_scope"
],
"type": "object"
}