{"record":{"id":"e04d3f9484c03dc7","repo":"tinyhumansai/openhuman","slug":"thread-task-board-read-e","errorCode":null,"errorMessage":"thread_task_board_read: {e}","messagePattern":"thread_task_board_read: (.+?)","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"src/openhuman/threads/tools.rs","lineNumber":664,"sourceCode":"    fn description(&self) -> &str {\n        \"Read a thread's kanban task board by `thread_id`, returning its cards \\\n         (empty board if none exists yet).\"\n    }\n\n    fn parameters_schema(&self) -> serde_json::Value {\n        json!({\n            \"type\": \"object\",\n            \"properties\": { \"thread_id\": { \"type\": \"string\" } },\n            \"required\": [\"thread_id\"]\n        })\n    }\n\n    async fn execute(&self, args: serde_json::Value) -> anyhow::Result<ToolResult> {\n        log::debug!(\"[tool][threads] task_board_read invoked\");\n        let thread_id = read_required_str(&args, \"thread_id\")?;\n        let board = board_for_thread(&self.config.workspace_dir, &thread_id)\n            .await\n            .map_err(|e| anyhow::anyhow!(\"thread_task_board_read: {e}\"))?;\n        Ok(ToolResult::success(serde_json::to_string(&json!({\n            \"task_board\": board,\n        }))?))\n    }\n\n    fn is_concurrency_safe(&self, _args: &serde_json::Value) -> bool {\n        true\n    }\n}\n\n/// Replace a thread's kanban task board.\npub struct ThreadTaskBoardWriteTool {\n    config: Arc<Config>,\n}\n\nimpl ThreadTaskBoardWriteTool {\n    pub fn new(config: Arc<Config>) -> Self {\n        Self { config }","sourceCodeStart":646,"sourceCodeEnd":682,"githubUrl":"https://github.com/tinyhumansai/openhuman/blob/749120085864ce16e0f273c7b86fac7740b39c5b/src/openhuman/threads/tools.rs#L646-L682","documentation":"Wrapped error from thread_task_board_read: reading the thread's kanban task board failed after the `thread_id` was parsed. The {e} is the underlying store/persistence error (e.g. thread lookup or board read); the prefix identifies the tool surface.","triggerScenarios":"Thrown at src/openhuman/threads/tools.rs:664 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Verify the thread_id exists and is accessible","Inspect the inner error {e} for the store-level cause","Retry once the underlying storage issue is resolved"],"exampleFix":null,"handlingStrategy":"try-catch","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"749120085864ce16e0f273c7b86fac7740b39c5b","analyzedAt":"2026-08-17T21:21:45.363Z","contentChangedAt":null,"schemaVersion":2},"datasetVersion":"2026-09-14T00:17:10.932Z"}