@locusai/cli 0.21.2 → 0.21.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/locus.js +1 -1
  2. package/package.json +1 -1
package/bin/locus.js CHANGED
@@ -569,7 +569,7 @@ function detectRepoContext(cwd) {
569
569
  return { owner, repo, defaultBranch, currentBranch, remoteUrl };
570
570
  }
571
571
  function parseRemoteUrl(url) {
572
- let match = url.match(/git@github\.com:([^/]+)\/([^/.]+)/);
572
+ let match = url.match(/[^@]+@github\.com:([^/]+)\/([^/.]+)/);
573
573
  if (match)
574
574
  return { owner: match[1], repo: match[2] };
575
575
  match = url.match(/github\.com\/([^/]+)\/([^/.]+)/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.21.2",
3
+ "version": "0.21.3",
4
4
  "description": "GitHub-native AI engineering assistant",
5
5
  "type": "module",
6
6
  "bin": {