-
Notifications
You must be signed in to change notification settings - Fork 1.2k
More LLM detections for other CLI agents + alter TL behavior in the presence of LLMs #51054
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
baronfel
merged 8 commits into
dotnet:release/10.0.1xx
from
baronfel:more-llm-detections
Oct 3, 2025
Merged
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5ff11ab
add more LLM detections
baronfel f78d2c9
Add docs for new values
baronfel e86d8bc
disable Terminal Logger live update when LLMs are detected
baronfel 898171f
more test cases for LLM detection
baronfel 2236540
also apply LLM configurations to common in-memory Build operations
baronfel 6f554e8
address code reviews by adding a bool-checking method on the detector…
baronfel 08d0b6f
more doc minimization/whitespace reduction
baronfel 4c6d9fd
Add LLM-detection validation cases for MSBuild passing parameters
baronfel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
19 changes: 13 additions & 6 deletions
19
src/Cli/dotnet/Telemetry/LLMEnvironmentDetectorForTelemetry.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
using System; | ||
using System.Linq; | ||
|
||
namespace Microsoft.DotNet.Cli.Telemetry; | ||
|
||
internal class LLMEnvironmentDetectorForTelemetry : ILLMEnvironmentDetector | ||
{ | ||
private static readonly EnvironmentDetectionRuleWithResult<string>[] _detectionRules = [ | ||
// Claude Code | ||
new EnvironmentDetectionRuleWithResult<string>("claude", "CLAUDECODE"), | ||
new EnvironmentDetectionRuleWithResult<string>("claude", new AnyPresentEnvironmentRule("CLAUDECODE")), | ||
// Cursor AI | ||
new EnvironmentDetectionRuleWithResult<string>("cursor", "CURSOR_EDITOR") | ||
new EnvironmentDetectionRuleWithResult<string>("cursor", new AnyPresentEnvironmentRule("CURSOR_EDITOR")), | ||
baronfel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// Gemini | ||
new EnvironmentDetectionRuleWithResult<string>("gemini", new BooleanEnvironmentRule("GEMINI_CLI")), | ||
// GitHub Copilot | ||
new EnvironmentDetectionRuleWithResult<string>("copilot", new BooleanEnvironmentRule("GITHUB_COPILOT_CLI_MODE")), | ||
// (proposed) generic flag for Agentic usage | ||
new EnvironmentDetectionRuleWithResult<string>("generic_agent", new BooleanEnvironmentRule("AGENT_CLI")), | ||
]; | ||
|
||
/// <inheritdoc/> | ||
public string? GetLLMEnvironment() | ||
{ | ||
var results = _detectionRules.Select(r => r.GetResult()).Where(r => r != null).ToArray(); | ||
return results.Length > 0 ? string.Join(", ", results) : null; | ||
} | ||
} | ||
|
||
/// <inheritdoc/> | ||
public bool IsLLMEnvironment() => !string.IsNullOrEmpty(GetLLMEnvironment()); | ||
baronfel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.