Request
User feedback: consider adding process-specific summary counts to the process info dialog — e.g. number of open file handles, working directory, etc.
Scope question
Could be surfaced as new columns in the main table, or as a summary section/lower-pane in the existing process popup (src/ui/imgui/imgui_process_popup_view.cpp). Needs a decision on placement before scoping; the underlying data (file handle count is just `get_file_handles().size()`; working directory would need a new per-platform accessor — e.g. `/proc//cwd` on Linux, `proc_pidinfo`+`PROC_PIDVNODEPATHINFO` variants on macOS/BSD) is generally obtainable but not currently exposed anywhere in `ProcessInfo` or the detail providers.
Request
User feedback: consider adding process-specific summary counts to the process info dialog — e.g. number of open file handles, working directory, etc.
Scope question
Could be surfaced as new columns in the main table, or as a summary section/lower-pane in the existing process popup (src/ui/imgui/imgui_process_popup_view.cpp). Needs a decision on placement before scoping; the underlying data (file handle count is just `get_file_handles().size()`; working directory would need a new per-platform accessor — e.g. `/proc//cwd` on Linux, `proc_pidinfo`+`PROC_PIDVNODEPATHINFO` variants on macOS/BSD) is generally obtainable but not currently exposed anywhere in `ProcessInfo` or the detail providers.