update_boop
Creates or updates a boop file to claim a directory for work, signaling in-progress tasks and preventing conflicts with other agents. Requires directory path and agent identifier.
Instructions
Creates or updates a boop file to claim a directory for work. This signals that work is in progress and prevents other agents from working in the same directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | Yes | Agent identifier claiming the work | |
directory | Yes | Directory path where to create/update the boop file | |
workDescription | No | Optional description of the work being done |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agentId": {
"description": "Agent identifier claiming the work",
"type": "string"
},
"directory": {
"description": "Directory path where to create/update the boop file",
"type": "string"
},
"workDescription": {
"description": "Optional description of the work being done",
"type": "string"
}
},
"required": [
"directory",
"agentId"
],
"type": "object"
}