update_activity_log
Modify existing activity logs in Chronos Protocol to track progress, update task details, and maintain traceability for AI coding sessions.
Instructions
Update an existing activity log
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityId | Yes | Unique identifier of the activity log to update | |
activityType | No | Updated activity type | |
description | No | Updated description | |
notes | No | Updated traceability notes for session continuity and auditability. Document progress, changes in approach, new findings, or corrections made. Include specific details about what was modified, why changes were needed, and any insights gained. This ensures other AI agents can follow your thought process, understand context, and continue work seamlessly without losing critical information. | |
result | No | Updated result | |
tags | No | Updated tags | |
task_scope | No | Updated task scope |
Input Schema (JSON Schema)
{
"properties": {
"activityId": {
"description": "Unique identifier of the activity log to update",
"type": "string"
},
"activityType": {
"description": "Updated activity type",
"type": "string"
},
"description": {
"description": "Updated description",
"type": "string"
},
"notes": {
"description": "Updated traceability notes for session continuity and auditability. Document progress, changes in approach, new findings, or corrections made. Include specific details about what was modified, why changes were needed, and any insights gained. This ensures other AI agents can follow your thought process, understand context, and continue work seamlessly without losing critical information.",
"type": "string"
},
"result": {
"description": "Updated result",
"type": "string"
},
"tags": {
"description": "Updated tags",
"items": {
"type": "string"
},
"type": "array"
},
"task_scope": {
"description": "Updated task scope",
"enum": [
"epic-planning",
"feature-implementation",
"component-implementation",
"debugging",
"integration-tasks",
"optimization-tasks",
"setup-tasks",
"testing-tasks"
],
"type": "string"
}
},
"required": [
"activityId"
],
"type": "object"
}