get_activity_logs
Retrieve activity logs from Chronos Protocol with filtering options including activity type, task scope, date range, and result limits for tracking and analysis.
Instructions
Retrieve activity logs with optional filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityType | No | Filter by activity type | |
endDate | No | Filter by end date (ISO 8601 format) | |
limit | No | Maximum number of logs to return | |
startDate | No | Filter by start date (ISO 8601 format) | |
task_scope | No | Filter by task scope |
Input Schema (JSON Schema)
{
"properties": {
"activityType": {
"description": "Filter by activity type",
"type": "string"
},
"endDate": {
"description": "Filter by end date (ISO 8601 format)",
"type": "string"
},
"limit": {
"description": "Maximum number of logs to return",
"type": "integer"
},
"startDate": {
"description": "Filter by start date (ISO 8601 format)",
"type": "string"
},
"task_scope": {
"description": "Filter by task scope",
"enum": [
"epic-planning",
"feature-implementation",
"component-implementation",
"debugging",
"integration-tasks",
"optimization-tasks",
"setup-tasks",
"testing-tasks"
],
"type": "string"
}
},
"type": "object"
}