create_beep
Generate a beep file to signal task completion and clear a directory for new work. Ideal for coordinating AI agents in shared codebases using file-based signaling within Beep Boop MCP.
Instructions
Creates a beep file to signal that work is complete and the directory is cleared for new work. Use this when work is finished but no boop file exists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| directory | Yes | Directory path where to create the beep file | |
| message | No | Optional completion message |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"directory": {
"description": "Directory path where to create the beep file",
"type": "string"
},
"message": {
"description": "Optional completion message",
"type": "string"
}
},
"required": [
"directory"
],
"type": "object"
}