fix: remove automatic addition of digest plugin and use config for enabled_meta_plugins

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-28 17:11:01 -03:00
parent d693f9d5f2
commit 3d4ed341e7
3 changed files with 8 additions and 52 deletions

View File

@@ -29,9 +29,12 @@ pub async fn handle_status(
// Get database path
let db_path = state.db.lock().await.path().unwrap_or("unknown").to_string();
// Use the status service to generate status info showing all supported plugins
// Use the status service to generate status info showing configured plugins
let status_service = crate::services::status_service::StatusService::new();
let status_info = status_service.generate_supported_status(
let mut cmd = state.cmd.lock().await;
let status_info = status_service.generate_status(
&mut cmd,
&state.settings,
state.data_dir.clone(),
db_path.into(),
);