fc4cff6a74
Fixes the 'Only this repository' filter in the Cloud Sessions history panel not working when the local git remote uses SSH format. The CLI's normalizeGitUrl() was storing HTTPS sessions as 'https://github.com/org/repo.git' but when a user has an SSH remote ('git@github.com:org/repo.git'), the VS Code extension sent that raw SSH URL as the filter, causing a mismatch with the stored HTTPS form. Changes: - kilo-sessions.ts: update normalizeGitUrl() to convert SSH format (git@host:owner/repo) to canonical HTTPS (https://host/owner/repo) so all remote formats produce the same stored URL - KiloProvider.ts: add normalizeGitRemoteUrl() helper and apply it in getGitRemoteUrl() before forwarding the URL as a cloud session filter, ensuring the sent URL matches the stored canonical form Closes #11008