(**params)
| 1087 | |
| 1088 | # Execute via run_command_sync with async wrapper |
| 1089 | async def _tools_wrapper(**params): |
| 1090 | return await cli_execute( |
| 1091 | "tools", |
| 1092 | details=params.get("all", False), |
| 1093 | raw=params.get("raw", False), |
| 1094 | ) |
| 1095 | |
| 1096 | run_command_sync( |
| 1097 | _tools_wrapper, |
nothing calls this directly
no test coverage detected