{"record":{"id":"66c378a8ff195585","repo":"aaif-goose/goose","slug":"extension-not-found-66c378","errorCode":null,"errorMessage":"Extension {} not found","messagePattern":"Extension (.+?) not found","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"crates/goose/src/agents/extension_manager.rs","lineNumber":2150,"sourceCode":"                \"errors from listing prompts\"\n            );\n        }\n\n        Ok(all_prompts)\n    }\n\n    pub async fn get_prompt(\n        &self,\n        session_id: &str,\n        extension_name: &str,\n        name: &str,\n        arguments: Value,\n        cancellation_token: CancellationToken,\n    ) -> Result<GetPromptResult> {\n        let client = self\n            .get_server_client(extension_name)\n            .await\n            .ok_or_else(|| anyhow::anyhow!(\"Extension {} not found\", extension_name))?;\n\n        client\n            .get_prompt(session_id, name, arguments, cancellation_token)\n            .await\n            .map_err(|e| anyhow::anyhow!(\"Failed to get prompt: {}\", e))\n    }\n\n    pub async fn search_available_extensions(&self) -> Result<Vec<ContentBlock>, ErrorData> {\n        let mut output_parts = vec![];\n\n        // First get disabled extensions from current config (skip hidden ones)\n        let mut disabled_extensions: Vec<String> = vec![];\n        for extension in get_all_extensions() {\n            if !extension.enabled && !is_hidden_extension(&extension.config.name()) {\n                let config = extension.config.clone();\n                let description = match &config {\n                    ExtensionConfig::Builtin {\n                        description,","sourceCodeStart":2132,"sourceCodeEnd":2168,"githubUrl":"https://github.com/aaif-goose/goose/blob/3810898a7447ec3299be72e223d3570a7aabf0ab/crates/goose/src/agents/extension_manager.rs#L2132-L2168","documentation":"Error \"Extension {} not found\" thrown in aaif-goose/goose.","triggerScenarios":"Thrown at crates/goose/src/agents/extension_manager.rs:2150 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"3810898a7447ec3299be72e223d3570a7aabf0ab","analyzedAt":"2026-08-16T10:14:26.282Z","schemaVersion":2},"datasetVersion":"2026-08-16T13:17:31.715Z"}