blackboard_delete
Remove a key-value entry from the shared blackboard. Provide the namespaced key and agent ID; optionally include the agent token for protected entries.
Instructions
Remove an entry from the shared blackboard by key. Returns {ok:true, deleted:true, key} if found and removed; {ok:true, deleted:false, key} if the key was absent or already expired. Returns {ok:false, error:"..."} if the agent token is rejected or the blackboard is unavailable. key must use the same namespaced format used at write time (e.g. "task:result:q3"); agent_token is required only if the entry was written with a token — omit it for unprotected keys. Call blackboard_exists first to confirm the key is present before deletion.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The key to delete | |
| agent_id | Yes | The agent requesting deletion | |
| agent_token | No | Optional verification token |