end_work
Signals task completion by removing the boop file and creating a beep file in the specified directory, preparing it for new work. Includes agent ID and optional message for tracking.
Instructions
Atomically completes work by removing the boop file and creating a beep file. This signals that work is complete and clears the directory for new work.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | Yes | Agent identifier that was doing the work | |
directory | Yes | Directory path where work is being completed | |
message | No | Optional completion message |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agentId": {
"description": "Agent identifier that was doing the work",
"type": "string"
},
"directory": {
"description": "Directory path where work is being completed",
"type": "string"
},
"message": {
"description": "Optional completion message",
"type": "string"
}
},
"required": [
"directory",
"agentId"
],
"type": "object"
}