fix(agents): resolve repository from git remote origin for accurate metrics#231
Open
BolotnyaBoss wants to merge 1 commit intocodemie-ai:mainfrom
Open
fix(agents): resolve repository from git remote origin for accurate metrics#231BolotnyaBoss wants to merge 1 commit intocodemie-ai:mainfrom
BolotnyaBoss wants to merge 1 commit intocodemie-ai:mainfrom
Conversation
…etrics Detect canonical owner/repo from git remote origin URL (HTTPS and SSH) instead of deriving it from the filesystem path. Stores the result in session.repository and uses it in metrics, falling back to filesystem derivation when no remote is configured. Generated with AI Co-Authored-By: codemie-ai <codemie.ai@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
detectGitRemoteRepo()utility to extract canonicalowner/repofrom git remote origin URL (supports HTTPS and SSH formats)session.repository(set only when a remote is detected;undefinedotherwise)session.repositoryin metrics sender and aggregator, falling back to filesystem-derived path when not setWhy
Repository names derived from filesystem paths (e.g.
/Users/name/myorg/my-repo→myorg/my-repo) can be inaccurate when the directory structure doesn't match the actual GitHub/GitLab owner and repo name. Usinggit remote get-url originprovides the canonical identifier.Test plan
owner/repogit@github.com:owner/repo.git) parse correctly