blackboard_exists
Check if a specific key exists and is not expired on the shared blackboard without fetching the full value.
Instructions
Check whether a specific key is present and not expired on the shared blackboard. Read-only — no side effects and never modifies state. Returns {ok:true, exists:true} or {ok:true, exists:false}. Returns {ok:false, error:"..."} if the blackboard is unavailable. key must use the same namespaced format as blackboard_read/write/delete (e.g. "task:result:q3"); agent_id is used for scoped access checks. Prefer over blackboard_read when only checking presence — lighter-weight and avoids fetching the full value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The key to check | |
| agent_id | Yes | The agent performing the check |