Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Use these repository instructions as the starting point. When code or validated
- For Copilot tool metadata such as `skip_permission` and `defer`, prefer `CopilotTool.DefineTool(..., new CopilotToolOptions { ... }, ...)` over magic-string `AdditionalProperties`. Keep RepoSyncRadar's small radar tool set pre-loaded with `CopilotToolDefer.Never`.
- Restrict sessions to the registered radar tools and explicitly disable tool search, ambient custom instructions, org-level custom agents, coauthor trailers, scheduler integration, experimental mode, session memory, and the cross-session store unless a feature deliberately needs them. Inject managed permission settings that disable bypass-permissions mode and deny shell access as defense in depth.
- Keep experimental API warning suppressions local to the integration that requires them.
- Keep session file-change tracking disabled until RepoSyncRadar has a user-visible rewind flow; current radar tools do not edit workspace files.
- Treat SDK capabilities as unavailable until confirmed in the installed package's public API. Do not rely on runtime internals or prompt-only structured-output guarantees.
- Keep `scripts/CopilotCliRelease.props` synchronized with the SDK package's `CopilotCliVersion`. If the package download target cannot resolve that CLI, use official GitHub Release assets with published SHA-256 verification.

Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<ItemGroup Label="GitHub / Copilot">
<PackageVersion Include="Octokit" Version="14.0.0" />
<PackageVersion Include="GitHub.Copilot.SDK" Version="1.0.10-preview.0" />
<PackageVersion Include="GitHub.Copilot.SDK" Version="1.0.11-preview.2" />
</ItemGroup>

<ItemGroup Label="Installer / Updates">
Expand Down
8 changes: 4 additions & 4 deletions scripts/CopilotCliRelease.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project>

<!-- SHA-256 values published in the official v1.0.79-6 SHA256SUMS.txt. -->
<!-- SHA-256 values published in the official v1.0.79 SHA256SUMS.txt. -->
<PropertyGroup>
<CopilotCliReleaseVersion>1.0.79-6</CopilotCliReleaseVersion>
<CopilotCliWin32X64Sha256>8949f2c4510b1bf47e15b51a7841599a8a53eb38fa0b5dcf6e2bee7c6284ec31</CopilotCliWin32X64Sha256>
<CopilotCliWin32Arm64Sha256>903147b5722359a48a7ccd7cb71882892bff2910ace98a36d0887915aa6ecdd9</CopilotCliWin32Arm64Sha256>
<CopilotCliReleaseVersion>1.0.79</CopilotCliReleaseVersion>
<CopilotCliWin32X64Sha256>ae87705442b502853374a58938ca48309b44ad1aef201e3de56b9ff89fe3b6bd</CopilotCliWin32X64Sha256>
<CopilotCliWin32Arm64Sha256>5e582cf1a15ca0b35f46e5b872c6703abe75fa88781f9ee0c804018fc0c34179</CopilotCliWin32Arm64Sha256>
</PropertyGroup>

</Project>
1 change: 1 addition & 0 deletions src/RepoSyncRadar.App/Copilot/SessionConfigBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static SessionConfig Build(
},
OnPermissionRequest = permissionHandler,
EnableSessionTelemetry = copilot.EnableSessionTelemetry,
EnableFileChangeTracking = false,
EnableSessionStore = false,
EnableExperimentalMode = false,
Memory = new MemoryConfiguration { Enabled = false },
Expand Down
2 changes: 1 addition & 1 deletion src/RepoSyncRadar.App/Settings/ThirdPartyNotices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static class ThirdPartyNotices
{
public static IReadOnlyList<ThirdPartyNotice> All { get; } =
[
Mit("GitHub.Copilot.SDK", "1.0.10-preview.0", "Copyright (c) Microsoft Corporation. All rights reserved.", "https://github.com/github/copilot-sdk"),
Mit("GitHub.Copilot.SDK", "1.0.11-preview.2", "Copyright (c) Microsoft Corporation. All rights reserved.", "https://github.com/github/copilot-sdk"),
new(
"Markdig",
"1.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void Renders_Third_Party_Notices()
Assert.Contains("MudBlazor", packages);
var sdkIndex = Array.IndexOf(packages, "GitHub.Copilot.SDK");
Assert.NotEqual(-1, sdkIndex);
Assert.Equal("1.0.10-preview.0", versions[sdkIndex]);
Assert.Equal("1.0.11-preview.2", versions[sdkIndex]);
Assert.Contains("Microsoft.Web.WebView2", packages);
Assert.Contains("BSD-2-Clause", cut.Markup, StringComparison.Ordinal);
Assert.Contains("MIT", cut.Markup, StringComparison.Ordinal);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public async Task Build_For_Triage_Produces_Append_Mode_Streaming_With_Configure
Assert.Equal(ContextTier.LongContext, config.ContextTier);
Assert.True(config.Streaming);
Assert.False(config.EnableSessionTelemetry);
Assert.False(config.EnableFileChangeTracking);
Assert.False(config.EnableSessionStore);
Assert.False(config.EnableExperimentalMode);
Assert.NotNull(config.Memory);
Expand Down
Loading