As an example of integrating with QM (and VS Code):
$data = json_decode( file_get_contents( '/tmp/chassis-constants' ) );
add_filter( 'qm/output/file_path_map', function ( $map ) use ( $data ) {
$map = array_merge( $map, (array) $data->synced_folders );
return $map;
} );
add_filter( 'qm/output/file_link_format', function ( $format ) {
return 'vscode://file/%f:%l';
} );