end_activity_log
Ends an activity log with system timestamp, calculates duration, and records results with detailed notes for traceability and session continuity.
Instructions
End an activity log with system timestamp and calculate duration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityId | Yes | Unique identifier of the activity log to end | |
notes | No | Detailed notes for traceability and session continuity. Include: what was accomplished, key decisions made, challenges encountered, solutions implemented, and any critical context for future reference. This enables other AI agents to understand your work, backtrack steps if issues arise, and continue development effectively. Be specific about code changes, architectural decisions, and debugging insights. | |
result | No | Result or outcome of the activity |
Input Schema (JSON Schema)
{
"properties": {
"activityId": {
"description": "Unique identifier of the activity log to end",
"type": "string"
},
"notes": {
"description": "Detailed notes for traceability and session continuity. Include: what was accomplished, key decisions made, challenges encountered, solutions implemented, and any critical context for future reference. This enables other AI agents to understand your work, backtrack steps if issues arise, and continue development effectively. Be specific about code changes, architectural decisions, and debugging insights.",
"type": "string"
},
"result": {
"description": "Result or outcome of the activity",
"type": "string"
}
},
"required": [
"activityId"
],
"type": "object"
}