Repository Analysis

gitkraken/vscode-gitlens

Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more

2.4 Likely human-written View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of gitkraken/vscode-gitlens, a TypeScript project with 9,864 GitHub stars. SynthScan v2.0 examined 541,407 lines of code across 1787 source files, recording 771 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 2.4 places this repository in the Likely human-written band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

2.4
Adjusted Score
2.4
Raw Score
100%
Time Factor
2026-07-14
Last Push
9.9K
Stars
TypeScript
Language
541.4K
Lines of Code
1.8K
Files
771
Pattern Hits
2026-07-14
Scan Date
0.03
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 41HIGH 4MEDIUM 19LOW 707

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 771 distinct pattern matches across 14 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hyper-Verbose Identifiers488 hits · 526 pts
SeverityFileLineSnippetContext
LOWtests/e2e/baseTest.ts80function patchTestVSCodeProductJson(vscodePath: string): void {CODE
LOWtests/e2e/specs/rebase.test.ts76async function getRebaseWebviewWithRetry(CODE
LOWtests/e2e/specs/quickWizard.test.ts130async function selectCommandAndWaitForStepWithOptionalRepo(CODE
LOWtests/e2e/specs/quickWizard.test.ts163async function selectCommandSubcommandAndWaitForStepWithOptionalRepo(CODE
LOWtests/e2e/specs/quickWizard.test.ts212async function reverseCommandSubcommandAndRepo(CODE
LOWpackages/utils/src/date.ts260function getDateTimeFormatOptionsFromFormatString(CODE
LOWpackages/utils/src/logger.scoped.ts85function defineLazyBoundErrorMethod(scope: ScopedLogger): void {CODE
LOWpackages/utils/src/string.ts108export function compareSubstringIgnoreCase(CODE
LOWpackages/utils/src/string.ts393export function getTokensFromTemplateRegex(template: string): TokenMatch[] {CODE
LOWpackages/utils/src/diff.ts4export function annotateDiffWithNewLineNumbers(diff: string): string {CODE
LOWpackages/utils/src/version.ts66export function compareByVersionDescending(a: string, b: string): number {CODE
LOWpackages/utils/src/__tests__/promiseCache.test.ts28async function recordUnhandledRejections(fn: () => Promise<void>): Promise<unknown[]> {CODE
LOWpackages/git-cli/src/parsers/logParser.ts126export function getShaAndDatesWithFilesLogParser(CODE
LOWpackages/git-cli/src/parsers/logParser.ts143export function getShaAndFilesAndStatsLogParser(): ShaAndFilesAndStatsLogParser {CODE
LOWpackages/git-cli/src/parsers/logParser.ts151export function getShaAndFileRangeLogParser(): ShaAndFileRangeLogParser {CODE
LOWpackages/git-cli/src/parsers/logParser.ts159export function getShaAndFileSummaryLogParser(): ShaAndFileSummaryLogParser {CODE
LOWpackages/git-cli/src/parsers/logParser.ts209export function getStashFilesOnlyLogParser(): StashFilesOnlyLogParser {CODE
LOWpackages/git-cli/src/parsers/logParser.ts450function createLogParserWithFilesAndStats(): LogParserWithFilesAndStats<void>;CODE
LOWpackages/git-cli/src/parsers/logParser.ts748function createLogParserWithFileSummary(): LogParserWithFileSummary<void>;CODE
LOWpackages/git-cli/src/providers/blame.ts534function createProgressiveGitBlame(repoPath: string): {CODE
LOWpackages/git-cli/src/providers/graph.ts102function computeDecorationFingerprint(CODE
LOW…c/providers/__tests__/integration/graphSession.test.ts508 async function assertRestoreMatchesFreshWalk(CODE
LOWpackages/git-cli/src/exec/git.ts460export function inferSigningFormatFromError(ex: unknown): SigningFormat | undefined {CODE
LOWpackages/git/src/repositoryService.ts63export function clearGlobalRepositoryServiceResolver(): void {CODE
LOWpackages/git/src/repositoryService.ts84export function setGlobalRepositoryServiceResolver(CODE
LOWpackages/git/src/cache.ts43export function areUriScopedCachedGitTypes(types: string[]): types is UriScopedCachedGitTypes[] {CODE
LOWpackages/git/src/parsers/diffParser.ts46function parseFileStatusAndMetadata(CODE
LOWpackages/git/src/parsers/diffParser.ts223export function countDiffInsertionsAndDeletions(file: ParsedGitDiffFile): { insertions: number; deletions: number } {CODE
LOWpackages/git/src/watching/watcherPatterns.ts49export function shouldIgnoreWorkingTreePath(absolutePath: string): boolean {CODE
LOWpackages/git/src/utils/autolink.utils.ts78export function ensureCachedBranchNameRegexes(CODE
LOWpackages/git/src/utils/branch.utils.ts34export function getBranchNameWithoutRemote(name: string): string {CODE
LOWpackages/git/src/utils/branch.utils.ts38export function getBranchTrackingWithoutRemote(ref: GitBranchReference): string | undefined {CODE
LOWpackages/git/src/utils/branch.utils.ts42export function getRemoteNameFromBranchName(name: string): string {CODE
LOWpackages/git/src/utils/branch.utils.ts122export async function getLocalBranchUpstreamNames(branches: PageableResult<GitBranch>): Promise<Set<string>> {CODE
LOWpackages/git/src/utils/remote.utils.ts10export function getHighlanderProviderName(remotes: GitRemote<RemoteProvider>[]): string | undefined {CODE
LOWpackages/git/src/utils/remote.utils.ts68export function getRemoteProviderThemeIconString(provider: RemoteProvider | undefined): string {CODE
LOWpackages/git/src/utils/remote.utils.ts72export function getRemoteUpstreamDescription(remote: GitRemote): string {CODE
LOWpackages/git/src/utils/remote.utils.ts119export function getNameFromRemoteResource(resource: RemoteResource): string {CODE
LOWpackages/git/src/utils/fetch.utils.ts22export function getLastFetchedUpdateInterval(lastFetched: number): number {CODE
LOWpackages/git/src/utils/mergeConflicts.utils.ts3export function createConflictDetectionError(reason: ConflictDetectionErrorReason): ConflictDetectionResult {CODE
LOWpackages/git/src/utils/mergeConflicts.utils.ts7function getConflictDetectionErrorMessage(reason: ConflictDetectionErrorReason): string {CODE
LOWpackages/git/src/utils/contributor.utils.ts26export function calculateContributionScore(CODE
LOWpackages/git/src/utils/commit.utils.ts9export function formatCurrentUserDisplayName(name: string, style: CurrentUserNameStyle): string {CODE
LOWpackages/git/src/utils/commit.utils.ts25export function formatIdentityDisplayName(CODE
LOWpackages/git/src/utils/commit.utils.ts32export function assertsCommitHasFullDetails(commit: GitCommit): asserts commit is GitCommitWithFullDetails {CODE
LOWpackages/git/src/utils/commit.utils.ts66export function createUncommittedChangesCommit(CODE
LOWpackages/git/src/utils/repository.utils.ts4export function getRepositoryOrWorktreePath(uri: Uri): string {CODE
LOWpackages/git/src/utils/issue.utils.ts3export function getRepositoryIdentityForIssue(issue: IssueShape | Issue): IssueRepositoryIdentityDescriptor {CODE
LOWpackages/git/src/utils/resourceDescriptor.utils.ts17export function isIssueResourceDescriptor(resource: ResourceDescriptor): resource is IssueResourceDescriptor {CODE
LOWpackages/git/src/utils/reference.utils.ts105export function getReferenceNameWithoutRemote(ref: GitReference): string {CODE
LOWpackages/git/src/utils/revision.utils.ts34export function isShaWithOptionalRevisionSuffix(rev: string): boolean {CODE
LOWpackages/git/src/utils/revision.utils.ts51export function isUncommittedWithParentSuffix(rev: string | undefined): rev is `${typeof uncommitted}${'^' | ':^'}` {CODE
LOWpackages/git/src/utils/revision.utils.ts55export function isUncommittedStagedWithParentSuffix(CODE
LOWpackages/git/src/utils/revision.utils.ts71export function resetAbbreviatedShaLength(): void {CODE
LOWpackages/git/src/utils/reachability.utils.ts15export function computeGraphRowContextFlags(CODE
LOWpackages/git/src/utils/reachability.utils.ts79export function createReachabilityTableBuilder(seed?: GraphReachabilityTable): {CODE
LOWpackages/git/src/utils/pullRequest.utils.ts17export function getComparisonRefsForPullRequest(repoPath: string, prRefs: PullRequestRefs): PullRequestComparisonRefs {CODE
LOWpackages/git/src/utils/pullRequest.utils.ts26export function getPullRequestIdentityFromMaybeUrl(search: string): PullRequestUrlIdentity | undefined {CODE
LOWpackages/git/src/utils/pullRequest.utils.ts44export function getRepositoryIdentityForPullRequest(CODE
LOWpackages/git/src/utils/pullRequest.utils.ts80export function isMaybeNonSpecificPullRequestSearchUrl(search: string): boolean {CODE
428 more matches not shown…
Hallucination Indicators41 hits · 460 pts
SeverityFileLineSnippetContext
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts177 const baseSSHUrl = pr.toRef.repository.links.clone.find(link => link.name === 'ssh')?.href ?? null;CODE
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts178 let baseHTTPSUrl = pr.toRef.repository.links.clone.find(link => link.name === 'https')?.href ?? null;CODE
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts180 baseHTTPSUrl = pr.toRef.repository.links.clone.find(link => link.name === 'http')?.href ?? null;CODE
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts183 const headSSHUrl = pr.fromRef.repository.links.clone.find(link => link.name === 'ssh')?.href ?? null;CODE
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts184 let headHTTPSUrl = pr.fromRef.repository.links.clone.find(link => link.name === 'https')?.href ?? null;CODE
CRITICAL…/integrations/src/providers/bitbucket-server/models.ts186 headHTTPSUrl = pr.fromRef.repository.links.clone.find(link => link.name === 'http')?.href ?? null;CODE
CRITICALsrc/webviews/apps/shared/components/promo.ts132 command = promo.content.webview.link.command.substring('command:'.length) as GlExtensionCommands;CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts612 const scoped = this._actions.resources.scopeFiles.value.get();CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2499 const scopeFilesValue = this._actions.resources.scopeFiles.value.get();CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2627 .loading=${this._actions.resources.branchCompareSummary.loading.get() ||CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2628 this._actions.resources.branchCompareSide.loading.get()}CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2629 .errorMessage=${this._actions.resources.branchCompareSummary.error.get() ??CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2630 this._actions.resources.branchCompareSide.error.get()}CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts2900 const scopeFilesValue = this._actions.resources.scopeFiles.value.get();CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts3171 this._actions.resources.resolve.value.get();CODE
CRITICAL…s/apps/plus/graph/components/gl-graph-details-panel.ts3270 const reviewValue = this._actions.resources.review.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts844 if (this.actions.resources.review.status.get() !== 'success') return;CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts846 const value = this.actions.resources.review.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts925 const current = entry?.result ?? this.actions.resources.review.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts968 const currentValue = this.actions.resources.review.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1012 if (this.actions.resources.compose.status.get() !== 'success') return;CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1014 const value = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1152 const planValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1166 const resourceValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1275 const currentValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1332 const currentValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1438 const currentValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1476 const latest = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1504 const currentValue = this.actions.resources.compose.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1603 const planValue = this.actions.resources.resolve.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1613 const resourceValue = this.actions.resources.resolve.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1642 const planValue = this.actions.resources.resolve.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1707 const current = entry?.result ?? this.actions.resources.resolve.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1734 const current = entry?.result ?? this.actions.resources.resolve.value.get();CODE
CRITICAL…pps/plus/graph/components/detailsWorkflowController.ts1776 const currentValue = this.actions.resources.resolve.value.get();CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts795 ? !this._data.session.current.rowsStatsDeferred.isLoaded()CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts1006 if (isWipRow || this._data.session.current.ids.has(id)) {CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts1023 if (this._data.session.current.ids.has(arg.selectSha)) {CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts1092 this._data.session.current.ids.has(rowId)CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts2302 if (this._data.session.current.avatars.has(email)) continue;CODE
CRITICALsrc/webviews/plus/graph/graphWebview.ts2334 this._data.session.current.avatars.set(email, uri.toString(true));CODE
Over-Commented Block173 hits · 160 pts
SeverityFileLineSnippetContext
LOW.devcontainer/devcontainer.json1// For format details, see https://aka.ms/devcontainer.json. For config options, see theCOMMENT
LOWpackages/utils/src/trie.ts281 // let node: PathNode<T> | undefined;COMMENT
LOWpackages/utils/src/trie.ts601 // node = n;COMMENT
LOWpackages/utils/src/trie.ts621 // let fullAncestorPath!: string;COMMENT
LOW…git-cli/src/parsers/__tests__/rebaseTodoParser.test.ts21 });COMMENT
LOW…git-cli/src/parsers/__tests__/rebaseTodoParser.test.ts241 'Should parse 40-char SHA',COMMENT
LOW…git-cli/src/parsers/__tests__/rebaseTodoParser.test.ts261# t, reset <label> = reset HEAD to a labelCOMMENT
LOWpackages/git-cli/src/providers/graph.ts661 // The subset of `undoableTipShas` that turn out to have a child (are an ancestor of anotherCOMMENT
LOWpackages/git-cli/src/providers/graph.ts1301 // `selectSha` already IS the resolved HEAD, otherwise take the current branch tip (also populated forCOMMENT
LOWpackages/git-cli/src/providers/__tests__/stash.test.ts1// Tests removed: `findOldestStashTimestamp` was deleted alongside the stash ancestry-filteringCOMMENT
LOW…ckages/git/src/watching/__tests__/watchSession.test.ts721 sub.onDidChange(e => received.push(e));COMMENT
LOWpackages/git/src/utils/__tests__/remote.test.ts21 // For git@... the scheme part is undefined in the regex (no protocol prefix like ssh://)COMMENT
LOWpackages/plus/agents/src/sanitizePrompt.ts1import { truncate } from '@gitlens/utils/string.js';COMMENT
LOW…ckages/plus/agents/src/providers/claudeCodeProvider.ts1921 status: peerSession.status,COMMENT
LOWpackages/plus/commit-graph/src/colors.ts1// Lane palette tuning — all lanes share ONE perceptual lightness (OKLCH L) and differ only by hue, soCOMMENT
LOWpackages/plus/integrations/src/lite.ts1// A lightweight, token-scoped entry point for stateless single-shot provider reads.COMMENT
LOW…s/src/providers/__tests__/providersApi.interop.test.ts1import * as assert from 'node:assert/strict';COMMENT
LOW…plus/integrations/src/providers/bitbucket/bitbucket.ts841 case 404: // Not foundCOMMENT
LOWpackages/plus/integrations/src/__tests__/fakeRuntime.ts1// Minimal `IntegrationServiceContext` implementation for unit tests.COMMENT
LOW…integrations/src/authentication/manualTokenProvider.ts1// Convenience for "manual token" auth — when a consumer already has an accessCOMMENT
LOW.github/workflows/codeql.yml1# For most projects, this workflow file will not need changing; you simply needCOMMENT
LOW.github/workflows/codeql.yml61 - name: Initialize CodeQLCOMMENT
LOWsrc/constants.views.ts81export type ViewContainerIds = `workbench.view.extension.${ViewContainerTypes}`;COMMENT
LOWsrc/agents/agentStatusService.ts621 * OS-level cross-window focus across a multi-window VS Code app is unreliable). */COMMENT
LOWsrc/webviews/rebase/rebaseEditor.ts141 // false positives that flicker the editor open with an empty/stale state. Confirm thereCOMMENT
LOWsrc/webviews/apps/home/events.ts261 // ============================================================COMMENT
LOWsrc/webviews/apps/home/home.ts141 // and the user isn't focused there — afford a longer window so bursts (branch ops,COMMENT
LOW…bviews/apps/shared/components/tree/gl-wip-tree-pane.ts341 // The WIP feed (commit details / graph) emits TWO rows per mixed path — one withCOMMENT
LOWsrc/webviews/apps/shared/controllers/modifier-keys.ts41 // `keydown`/`keyup` only fire when the webview iframe has keyboard focus — mouse hoverCOMMENT
LOWsrc/webviews/apps/plus/composer/composer.scss61 // --d2h-dark-file-header-bg-color: #161b22;COMMENT
LOW…ebviews/apps/plus/composer/components/details-panel.ts621 ></gl-diff-file>`;COMMENT
LOW…ebviews/apps/plus/composer/components/details-panel.ts641 // hunk => hunk.index,COMMENT
LOWsrc/webviews/apps/plus/composer/components/app.ts1461COMMENT
LOW…ebviews/apps/plus/composer/components/commits-panel.ts1121 const changes = getFileChanges(unassignedHunks.unstaged);COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss161 // The whole rail is the hit surface — the host resolves the NEAREST marker to the cursor's yCOMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss961 // The scroll var itself snaps (vars don't interpolate) — easing the dim keeps it in step with theCOMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss1021 // The message yields first (its high flex-shrink + 14rem floor) so pills keep their FULL name untilCOMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss1481 // on hover: the pill FILLS with its lane color and the text flips to a readable contrast.COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss1601 }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss1721 font-size: 1rem;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2341 // Keyboard-only: a mouse click must not flash a focus ring (`:focus-visible` is keyboard/programmatic-COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2361// font-size: inherit !important;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2381// }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2401 font-size: var(--vscode-font-size);COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2421// }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2441COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2461// border: 1px solid transparent;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2481// }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2501// margin-left: -0.2rem;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2521COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2541COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2561COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2581// // > *:not(:last-child),COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2661// }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2681// max-width: 100rem;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2701COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2721// font-size: 1.1rem;COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2741// &__dismiss {COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2761// }COMMENT
LOWsrc/webviews/apps/plus/graph/graph.scss2781// color: var(--alert-foreground);COMMENT
113 more matches not shown…
Fake / Example Data27 hits · 30 pts
SeverityFileLineSnippetContext
LOWtests/e2e/specs/blame.test.ts163 await git.commit('placeholder', 'README.md', '# clone failed');CODE
LOWtests/e2e/pageObjects/components/quickPick.ts106 await expect(this.input).toHaveAttribute('placeholder', placeholder, { timeout: timeout });CODE
LOWtests/e2e/pageObjects/components/quickPick.ts116 return this.input.getAttribute('placeholder');CODE
LOW…/git-cli/src/parsers/__tests__/signatureParser.test.ts64 const output = `B${fieldSeparator}John Doe${fieldSeparator}ABCD1234${fieldSeparator}${fieldSeparator}${fieldSeparator}CODE
LOW…/git-cli/src/parsers/__tests__/signatureParser.test.ts70 assert.strictEqual(result?.signer, 'John Doe', 'Should have correct signer');CODE
LOW…/git-cli/src/parsers/__tests__/signatureParser.test.ts71 assert.strictEqual(result?.errorMessage, 'gpg: BAD signature from "John Doe"', 'Should include error message');CODE
LOW…/git-cli/src/parsers/__tests__/signatureParser.test.ts198 assert.strictEqual(result?.signer, 'user@example.com', 'Should have email as signer');CODE
LOW…ages/git-cli/src/parsers/__tests__/blameParser.test.ts59 author: 'John Doe',CODE
LOW…ages/git-cli/src/parsers/__tests__/blameParser.test.ts62 committer: 'John Doe',CODE
LOW…ages/git-cli/src/parsers/__tests__/blameParser.test.ts77 assert.strictEqual(commit.author.name, 'John Doe', 'Should have correct author name');CODE
LOW…ages/git-cli/src/parsers/__tests__/blameParser.test.ts211 author: 'John Doe',CODE
LOW…ages/git-cli/src/parsers/__tests__/blameParser.test.ts214 committer: 'John Doe',CODE
LOWpackages/git/src/utils/__tests__/search.utils.test.ts152 const result = parseSearchQuery(q('@:"John Doe"'));CODE
LOWpackages/git/src/utils/__tests__/search.utils.test.ts155 assert.ok(authors.has('"John Doe"'));CODE
LOWpackages/git/src/utils/__tests__/search.utils.test.ts159 const result = parseSearchQuery(q('@:"John Doe'));CODE
LOWpackages/git/src/utils/__tests__/search.utils.test.ts162 assert.ok(authors.has('"John Doe'));CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts15 assert.strictEqual(result, 'jane.smith@example.org');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts24 const result = extractEmailFromSigner('John Doe');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts37 const result = extractEmailFromSigner('user@example.com');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts38 assert.strictEqual(result, 'user@example.com');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts64 const result = extractEmailFromSigner('/C=US/O=Org/CN=Name/email=test@example.org');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts65 assert.strictEqual(result, 'test@example.org');CODE
LOW…ed/components/commit/__tests__/signature-badge.test.ts203 signer: 'John Doe',CODE
LOWsrc/webviews/apps/shared/__tests__/ipc.test.ts34 name: 'John Doe',CODE
LOWsrc/webviews/apps/shared/__tests__/ipc.test.ts38 name: 'Jane Doe',CODE
LOWsrc/git/__tests__/graphRowProcessor.test.ts28 avatars: new Map<string, string>([['test@test.com', 'https://avatar']]),CODE
LOWsrc/git/__tests__/graphRowProcessor.test.ts38 email: 'test@test.com',CODE
Decorative Section Separators9 hits · 27 pts
SeverityFileLineSnippetContext
MEDIUMtests/e2e/specs/mcpGitReadTools.test.ts74 // ── git_status ───────────────────────────────────────────────────────────COMMENT
MEDIUMtests/e2e/specs/mcpGitReadTools.test.ts97 // ── git_branch ───────────────────────────────────────────────────────────COMMENT
MEDIUMtests/e2e/specs/mcpGitReadTools.test.ts107 // ── git_log_or_diff ──────────────────────────────────────────────────────COMMENT
MEDIUMtests/e2e/specs/mcpGitReadTools.test.ts134 // ── git_blame ────────────────────────────────────────────────────────────COMMENT
MEDIUMtests/e2e/helpers/mcpHelper.ts226 // ── Private helpers ──────────────────────────────────────────────────────COMMENT
MEDIUM…s/apps/plus/graph/components/gl-graph-details-panel.ts760 // ─── Branch/tag sheet (prototype) ───────────────────────────────────────────────────────────COMMENT
MEDIUM…webviews/apps/plus/graph/graph-wrapper/gl-lit-graph.ts4037 // ─── Interaction (delegated; rows carry no per-row listeners) ──────────────COMMENT
MEDIUM…webviews/apps/plus/graph/graph-wrapper/gl-lit-graph.ts4880 // ─── Controllable scroll-into-view ──────────────────────────────────────────────────────────COMMENT
MEDIUM…ebviews/apps/plus/graph/graph-wrapper/graph-wrapper.ts1722 // ─── Experimental commit-graph engine handlers ────────────────────────────────────────────COMMENT
Synthetic Comment Markers3 hits · 22 pts
SeverityFileLineSnippetContext
HIGHsrc/webviews/apps/plus/composer/components/app.ts1606 // Determine if any of the combined commits were AI-generatedCOMMENT
HIGH…s/apps/plus/graph/components/gl-graph-details-panel.ts1627 // the user has typed or AI-generated, preserve their work.COMMENT
HIGHsrc/git/utils/-webview/remote.utils.ts150 // Resolve AI-generated PR details centrally before URL constructionCOMMENT
Structural Annotation Overuse9 hits · 16 pts
SeverityFileLineSnippetContext
LOW.claude/skills/ux-review/SKILL.md44## Step 1: Gather ContextCOMMENT
LOW.claude/skills/ux-review/SKILL.md55## Step 2: Identify User-Facing ChangesCOMMENT
LOW.claude/skills/ux-review/SKILL.md65## Step 3: Trace User FlowsCOMMENT
LOW.claude/skills/ux-review/SKILL.md73## Step 4: Evaluate Against Seven LensesCOMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts86 // Step 1: commit1 - merge-tree --write-tree --merge-base (clean)COMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts101 // Step 2: commit2 - merge-tree --write-tree --merge-base (CONFLICT)COMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts143 // Step 1: commit1 - CONFLICT on file1.txtCOMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts158 // Step 2: commit2 - clean mergeCOMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts173 // Step 3: commit3 - CONFLICT on file2.txtCOMMENT
Modern AI Meta-Vocabulary5 hits · 14 pts
SeverityFileLineSnippetContext
MEDIUMAGENTS.md73├── git/ # Git orchestration layer (gitProviderService.ts, actions, formatters)CODE
MEDIUMdocs/webview-styling.md135## Quick guardrailsCOMMENT
MEDIUMpackages/utils/src/diff.ts1// Annotates diff to make is easier for agentic reference to line number.COMMENT
MEDIUM…/shared/components/details-header/gl-details-header.ts83 // right-anchored actions slot via two flex spacers. Only render the scaffold when there'sCOMMENT
MEDIUM…pps/plus/graph/components/gl-details-wip-empty-pane.ts102 // this scaffold was reshaped to avoid.COMMENT
AI Slop Vocabulary4 hits · 12 pts
SeverityFileLineSnippetContext
MEDIUMpackages/git-cli/src/providers/operations.ts839 // no CLI-length limit (so no batching), and robust for paths with spaces/newlines.COMMENT
MEDIUM…/integrations/src/__tests__/perConnectionReads.test.ts179 // robust regardless of the provider's paging mode.COMMENT
MEDIUMsrc/uris/deepLinks/deepLinkService.ts610 // to a separate service where it can be used outside of the context of deep linking. Then the deep link service shouldCOMMENT
MEDIUM…webviews/apps/plus/graph/graph-wrapper/gl-lit-graph.ts5938 // Electron/WSL compositor, and `drop` intermittently never fired). Pointer events are the robustCOMMENT
Cross-Language Confusion (JS/TS)1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHpackages/utils/src/__tests__/event.test.ts97 // Event access after dispose should return None/noopCOMMENT
Verbosity Indicators5 hits · 8 pts
SeverityFileLineSnippetContext
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts86 // Step 1: commit1 - merge-tree --write-tree --merge-base (clean)COMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts101 // Step 2: commit2 - merge-tree --write-tree --merge-base (CONFLICT)COMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts143 // Step 1: commit1 - CONFLICT on file1.txtCOMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts158 // Step 2: commit2 - clean mergeCOMMENT
LOW…kages/git-cli/src/providers/__tests__/branches.test.ts173 // Step 3: commit3 - CONFLICT on file2.txtCOMMENT
TODO Padding4 hits · 6 pts
SeverityFileLineSnippetContext
LOWpackages/plus/integrations/src/providers/azureDevOps.ts478 // TODO: implement repos versionCOMMENT
LOW…es/plus/integrations/src/providers/bitbucket-server.ts232 // TODO: implement repos versionCOMMENT
LOWpackages/plus/integrations/src/providers/bitbucket.ts271 // TODO: implement repos versionCOMMENT
LOWsrc/webviews/apps/shared/components/tree/tree-view.ts794 // TODO: implement badge and indicator decorationsCOMMENT
Slop Phrases1 hit · 3 pts
SeverityFileLineSnippetContext
MEDIUM.github/workflows/codeql.yml54 # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customiCOMMENT
Overly Generic Function Names1 hit · 1 pts
SeverityFileLineSnippetContext
LOWtests/e2e/runner/src/index.ts52async function handleRequest(req: IncomingMessage, res: ServerResponse): Promise<void> {CODE