check_status
Verify the work coordination status in a directory by analyzing beep/boop files, identify stale items, and optionally clean them up based on age thresholds to streamline workflow.
Instructions
Checks the current work coordination status of a directory by examining beep/boop files, provides guidance on next steps, and can automatically clean up stale boop files older than a specified threshold.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoCleanStale | No | Whether to automatically clean up stale boop files (default: false) | |
directory | Yes | Directory path to check | |
maxAgeHours | No | Maximum age in hours for boop files before considering them stale (default: 24) | |
newAgentId | No | Agent ID to use when claiming after stale cleanup | |
newWorkDescription | No | Work description when claiming after cleanup |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"autoCleanStale": {
"default": false,
"description": "Whether to automatically clean up stale boop files (default: false)",
"type": "boolean"
},
"directory": {
"description": "Directory path to check",
"type": "string"
},
"maxAgeHours": {
"default": 24,
"description": "Maximum age in hours for boop files before considering them stale (default: 24)",
"type": "number"
},
"newAgentId": {
"description": "Agent ID to use when claiming after stale cleanup",
"type": "string"
},
"newWorkDescription": {
"description": "Work description when claiming after cleanup",
"type": "string"
}
},
"required": [
"directory"
],
"type": "object"
}