From 9e86db79561a060d503bca9516717a5dd2089304 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 12 May 2026 20:33:39 +0000
Subject: [PATCH 01/51] Initial plan
From befdd933a7b9600871316ecb00d5b59fdb2d7753 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 12 May 2026 20:47:33 +0000
Subject: [PATCH 02/51] fix: fix release version replacement for -beta-java.N
qualifier format
- Fix sed patterns in publish-maven.yml to use general qualifier regex
`\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*` that matches any version qualifier
format (-java.N, -java-preview.N, -beta-java.N) and also handles
previously-chained invalid versions
- Fix awk regex patterns in update-changelog.sh to recognize -beta-java.N
in [Unreleased] and version link patterns (-(beta-)?java(-preview)?.N)
- Fix duplicate [Unreleased] link bug: track unreleased_link_handled flag
so the first-version-link insertion block only fires when there is no
existing [Unreleased] link to update
- Move [Unreleased] handler before first-version-link handler in awk so
the flag is set before the later block evaluates it
- Update version validation regex to accept -beta-java.N format
- Fix CHANGELOG.md: remove duplicate [Unreleased] links and fix incorrect
predecessor version references for 1.0.0-beta-java.2 and .3
- Fix README.md, jbang-example.java, and cookbook markdown files:
replace chained invalid versions with correct 1.0.0-beta-java.3
- Fix test-update-changelog.sh: replace ((passed++)) with
passed=$((passed+1)) to avoid set -e triggering on arithmetic result 0;
add two new tests for beta-java format and no-duplicate-links guarantee
Co-authored-by: brunoborges <129743+brunoborges@users.noreply.github.com>
---
.../scripts/release/test-update-changelog.sh | 71 ++++++++++++++++++-
.github/scripts/release/update-changelog.sh | 31 ++++----
.github/workflows/publish-maven.yml | 16 ++---
CHANGELOG.md | 35 ++-------
README.md | 4 +-
jbang-example.java | 2 +-
src/site/markdown/cookbook/error-handling.md | 14 ++--
.../markdown/cookbook/managing-local-files.md | 4 +-
.../markdown/cookbook/multiple-sessions.md | 4 +-
.../markdown/cookbook/persisting-sessions.md | 6 +-
.../markdown/cookbook/pr-visualization.md | 2 +-
11 files changed, 116 insertions(+), 73 deletions(-)
diff --git a/.github/scripts/release/test-update-changelog.sh b/.github/scripts/release/test-update-changelog.sh
index ade87d6a94..b5fc8486b7 100755
--- a/.github/scripts/release/test-update-changelog.sh
+++ b/.github/scripts/release/test-update-changelog.sh
@@ -33,10 +33,10 @@ run_test() {
if $test_func; then
echo -e "${GREEN}PASSED${NC}"
- ((passed++))
+ passed=$((passed + 1))
else
echo -e "${RED}FAILED${NC}"
- ((failed++))
+ failed=$((failed + 1))
fi
}
@@ -180,6 +180,71 @@ EOF
fi
}
+# Test 6: Beta-java version format (e.g., 1.0.0-beta-java.N)
+test_beta_java_version() {
+ local test_file="${TEST_DIR}/test6.md"
+ cat > "$test_file" << 'EOF'
+# Changelog
+
+## [Unreleased]
+
+### Added
+- New feature
+
+## [1.0.0-beta-java.1] - 2026-05-01
+
+[Unreleased]: https://github.com/test/repo/compare/v1.0.0-beta-java.1...HEAD
+[1.0.0-beta-java.1]: https://github.com/test/repo/compare/v0.3.0-java.2...v1.0.0-beta-java.1
+[0.3.0-java.2]: https://github.com/test/repo/releases/tag/0.3.0-java.2
+EOF
+
+ CHANGELOG_FILE="$test_file" bash "$UPDATE_SCRIPT" 1.0.0-beta-java.2 > /dev/null 2>&1
+
+ # The [Unreleased] link should now point to v1.0.0-beta-java.2
+ # [1.0.0-beta-java.2] should compare from v1.0.0-beta-java.1
+ if grep -q "\[Unreleased\]: https://github.com/test/repo/compare/v1.0.0-beta-java.2...HEAD" "$test_file" && \
+ grep -q "\[1.0.0-beta-java.2\]: https://github.com/test/repo/compare/v1.0.0-beta-java.1...v1.0.0-beta-java.2" "$test_file"; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+# Test 7: No duplicate [Unreleased] links when existing [Unreleased] link is present
+test_no_duplicate_unreleased_links() {
+ local test_file="${TEST_DIR}/test7.md"
+ cat > "$test_file" << 'EOF'
+# Changelog
+
+## [Unreleased]
+
+### Added
+- New feature
+
+## [1.0.0-beta-java.2] - 2026-05-08
+
+## [1.0.0-beta-java.1] - 2026-05-05
+
+[Unreleased]: https://github.com/test/repo/compare/v1.0.0-beta-java.2...HEAD
+[1.0.0-beta-java.2]: https://github.com/test/repo/compare/v1.0.0-beta-java.1...v1.0.0-beta-java.2
+[1.0.0-beta-java.1]: https://github.com/test/repo/compare/v0.3.0-java.2...v1.0.0-beta-java.1
+[0.3.0-java.2]: https://github.com/test/repo/releases/tag/0.3.0-java.2
+EOF
+
+ CHANGELOG_FILE="$test_file" bash "$UPDATE_SCRIPT" 1.0.0-beta-java.3 > /dev/null 2>&1
+
+ # Count [Unreleased] link definitions - there should be exactly one
+ local unreleased_count
+ unreleased_count=$(grep -c "^\[Unreleased\]:" "$test_file")
+ if [ "$unreleased_count" -eq 1 ] && \
+ grep -q "\[Unreleased\]: https://github.com/test/repo/compare/v1.0.0-beta-java.3...HEAD" "$test_file" && \
+ grep -q "\[1.0.0-beta-java.3\]: https://github.com/test/repo/compare/v1.0.0-beta-java.2...v1.0.0-beta-java.3" "$test_file"; then
+ return 0
+ else
+ return 1
+ fi
+}
+
# Run all tests
echo "Running CHANGELOG update script tests..."
echo ""
@@ -189,6 +254,8 @@ run_test "Handle CHANGELOG without Unreleased link" test_no_unreleased_link
run_test "Preserve content structure" test_preserve_content
run_test "Error handling - no Unreleased section" test_no_unreleased_section
run_test "Multiple version handling" test_multiple_versions
+run_test "Beta-java version format (e.g., 1.0.0-beta-java.N)" test_beta_java_version
+run_test "No duplicate [Unreleased] links when existing link is present" test_no_duplicate_unreleased_links
echo ""
echo "=========================================="
diff --git a/.github/scripts/release/update-changelog.sh b/.github/scripts/release/update-changelog.sh
index ff35dec722..e21d03774e 100755
--- a/.github/scripts/release/update-changelog.sh
+++ b/.github/scripts/release/update-changelog.sh
@@ -45,6 +45,7 @@ BEGIN {
links_section = 0
first_version_link = ""
repo_url = ""
+ unreleased_link_handled = 0
}
# Track if we are in the links section at the bottom
@@ -53,7 +54,7 @@ BEGIN {
}
# Capture the repository URL from the first version link
-links_section && repo_url == "" && /^\[[0-9]+\.[0-9]+\.[0-9]+(-java\.[0-9]+)?\]:/ {
+links_section && repo_url == "" && /^\[[0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?\]:/ {
match($0, /(https:\/\/github\.com\/[^\/]+\/[^\/]+)\//, arr)
if (arr[1] != "") {
repo_url = arr[1]
@@ -86,28 +87,30 @@ skip_old_reference_impl && /^[[:space:]]*$/ { next }
skip_old_reference_impl && /^> \*\*Reference implementation sync:\*\*/ { next }
skip_old_reference_impl && !/^[[:space:]]*$/ && !/^> \*\*Reference implementation sync:\*\*/ { skip_old_reference_impl = 0 }
-# Capture the first version link to get the previous version
-links_section && first_version_link == "" && /^\[[0-9]+\.[0-9]+\.[0-9]+(-java\.[0-9]+)?\]:/ {
- match($0, /\[([0-9]+\.[0-9]+\.[0-9]+(-java\.[0-9]+)?)\]:/, arr)
- if (arr[1] != "" && repo_url != "") {
- first_version_link = arr[1]
- # Insert Unreleased and new version links before first version link
- print "[Unreleased]: " repo_url "/compare/v" version "...HEAD"
- print "[" version "]: " repo_url "/compare/v" arr[1] "...v" version
- }
-}
-
-# Update existing [Unreleased] link if present
+# Update existing [Unreleased] link if present (must be checked before the first-version-link block)
links_section && /^\[Unreleased\]:/ {
# Get the previous version and repo URL from the existing link
- match($0, /(https:\/\/github\.com\/[^\/]+\/[^\/]+)\/compare\/v([0-9]+\.[0-9]+\.[0-9]+(-java\.[0-9]+)?)\.\.\.HEAD/, arr)
+ match($0, /(https:\/\/github\.com\/[^\/]+\/[^\/]+)\/compare\/v([0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?)\.\.\.HEAD/, arr)
if (arr[1] != "" && arr[2] != "") {
print "[Unreleased]: " arr[1] "/compare/v" version "...HEAD"
print "[" version "]: " arr[1] "/compare/v" arr[2] "...v" version
+ unreleased_link_handled = 1
next
}
}
+# Capture the first version link to get the previous version
+# Only fires if the [Unreleased] link was not already handled above
+links_section && first_version_link == "" && !unreleased_link_handled && /^\[[0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?\]:/ {
+ match($0, /\[([0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?)\]:/, arr)
+ if (arr[1] != "" && repo_url != "") {
+ first_version_link = arr[1]
+ # Insert Unreleased and new version links before first version link
+ print "[Unreleased]: " repo_url "/compare/v" version "...HEAD"
+ print "[" version "]: " repo_url "/compare/v" arr[1] "...v" version
+ }
+}
+
# Print all other lines unchanged
{ print }
' "$CHANGELOG_FILE" > "$TEMP_FILE"
diff --git a/.github/workflows/publish-maven.yml b/.github/workflows/publish-maven.yml
index 99e61ac18f..f14987176a 100644
--- a/.github/workflows/publish-maven.yml
+++ b/.github/workflows/publish-maven.yml
@@ -87,8 +87,8 @@ jobs:
else
# Split version: supports "0.1.32", "0.1.32-java.0", and "0.1.32-java-preview.0" formats
# Validate RELEASE_VERSION format explicitly to provide clear errors
- if ! echo "$RELEASE_VERSION" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+(-java(-preview)?\.[0-9]+)?$'; then
- echo "Error: RELEASE_VERSION '$RELEASE_VERSION' is invalid. Expected format: M.M.P, M.M.P-java.N, or M.M.P-java-preview.N (e.g., 1.2.3, 1.2.3-java.0, or 1.2.3-java-preview.0)." >&2
+ if ! echo "$RELEASE_VERSION" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?$'; then
+ echo "Error: RELEASE_VERSION '$RELEASE_VERSION' is invalid. Expected format: M.M.P, M.M.P-java.N, M.M.P-java-preview.N, or M.M.P-beta-java.N (e.g., 1.2.3, 1.2.3-java.0, 1.2.3-java-preview.0, or 1.2.3-beta-java.0)." >&2
exit 1
fi
# Extract the base M.M.P portion (before any qualifier)
@@ -121,21 +121,21 @@ jobs:
# Update CHANGELOG.md with release version and Reference implementation sync hash
./.github/scripts/release/update-changelog.sh "${VERSION}" "${REFERENCE_IMPL_HASH}"
- # Update version in README.md (supports versions like 1.0.0, 0.1.32-java.0, and 0.3.0-java-preview.0)
- sed -i "s|[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-java\(-preview\)\{0,1\}\.[0-9][0-9]*\)\{0,1\}|${VERSION}|g" README.md
- sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-java\(-preview\)\{0,1\}\.[0-9][0-9]*\)\{0,1\}|copilot-sdk-java:${VERSION}|g" README.md
+ # Update version in README.md (supports any version qualifier like -java.N, -java-preview.N, -beta-java.N)
+ sed -i "s|[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*|${VERSION}|g" README.md
+ sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*|copilot-sdk-java:${VERSION}|g" README.md
# Update snapshot version in README.md
DEV_VERSION="${{ steps.versions.outputs.dev_version }}"
- sed -i "s|[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-java\(-preview\)\{0,1\}\.[0-9][0-9]*\)\{0,1\}-SNAPSHOT|${DEV_VERSION}|g" README.md
+ sed -i "s|[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*-SNAPSHOT|${DEV_VERSION}|g" README.md
# Update version in jbang-example.java
- sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-java\(-preview\)\{0,1\}\.[0-9][0-9]*\)\{0,1\}|copilot-sdk-java:${VERSION}|g" jbang-example.java
+ sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*|copilot-sdk-java:${VERSION}|g" jbang-example.java
sed -i 's|copilot-sdk-java:${project\.version}|copilot-sdk-java:'"${VERSION}"'|g' jbang-example.java
# Update version in cookbook files (hardcoded for direct GitHub browsing and JBang usage)
find src/site/markdown/cookbook -name "*.md" -type f -exec \
- sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-java\(-preview\)\{0,1\}\.[0-9][0-9]*\)\{0,1\}|copilot-sdk-java:${VERSION}|g" {} \;
+ sed -i "s|copilot-sdk-java:[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\(-[a-z][a-z0-9-]*\.[0-9][0-9]*\)*|copilot-sdk-java:${VERSION}|g" {} \;
# Commit the documentation changes before release:prepare (requires clean working directory)
git add CHANGELOG.md README.md jbang-example.java src/site/markdown/cookbook/
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd49095408..5eb0397d56 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -506,38 +506,12 @@ New types: `GetForegroundSessionResponse`, `SetForegroundSessionResponse`
- Pre-commit hook for Spotless code formatting
- Comprehensive API documentation
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
-[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
-[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.1...HEAD
-[0.3.0-java-preview.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.1
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.1...HEAD
-[1.0.0-beta-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.1
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.1...HEAD
-[1.0.0-beta-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.1
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.2...HEAD
-[1.0.0-beta-java.2]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.2
[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.3...HEAD
-[1.0.0-beta-java.3]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.3
+[1.0.0-beta-java.3]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.2...v1.0.0-beta-java.3
+[1.0.0-beta-java.2]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.1...v1.0.0-beta-java.2
+[1.0.0-beta-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.1
[0.3.0-java.2]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java.2
-[0.2.2-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.1...v0.2.2-java.1
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
-[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
-[0.2.2-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.1...v0.2.2-java.1
-[0.2.1-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.0...v0.2.1-java.1
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
-[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
-[0.2.2-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.1...v0.2.2-java.1
-[0.2.1-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.0...v0.2.1-java.1
-[0.2.1-java.0]: https://github.com/github/copilot-sdk-java/compare/v0.1.32-java.0...v0.2.1-java.0
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
-[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
-[0.2.2-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.1...v0.2.2-java.1
-[0.2.1-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.0...v0.2.1-java.1
-[0.2.1-java.0]: https://github.com/github/copilot-sdk-java/compare/v0.1.32-java.0...v0.2.1-java.0
-[0.1.32-java.0]: https://github.com/github/copilot-sdk-java/compare/v1.0.11...v0.1.32-java.0
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java-preview.0...HEAD
+[0.3.0-java-preview.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.1
[0.3.0-java-preview.0]: https://github.com/github/copilot-sdk-java/compare/v0.2.2-java.1...v0.3.0-java-preview.0
[0.2.2-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.1...v0.2.2-java.1
[0.2.1-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.2.1-java.0...v0.2.1-java.1
@@ -555,4 +529,3 @@ New types: `GetForegroundSessionResponse`, `SetForegroundSessionResponse`
[1.0.2]: https://github.com/github/copilot-sdk-java/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/github/copilot-sdk-java/compare/1.0.0...v1.0.1
[1.0.0]: https://github.com/github/copilot-sdk-java/releases/tag/1.0.0
-
diff --git a/README.md b/README.md
index 7107c07573..c1aac6a5ab 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ Java SDK for programmatic control of GitHub Copilot CLI, enabling you to build A
com.githubcopilot-sdk-java
- 1.0.0-beta-java.1
+ 1.0.0-beta-java.3
```
@@ -60,7 +60,7 @@ Snapshot builds of the next development version are published to Maven Central S
### Gradle
```groovy
-implementation 'com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1'
+implementation 'com.github:copilot-sdk-java:1.0.0-beta-java.3'
```
## Quick Start
diff --git a/jbang-example.java b/jbang-example.java
index e19da2958f..78763bea9c 100644
--- a/jbang-example.java
+++ b/jbang-example.java
@@ -1,5 +1,5 @@
///usr/bin/env jbang "$0" "$@" ; exit $?
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.SessionUsageInfoEvent;
diff --git a/src/site/markdown/cookbook/error-handling.md b/src/site/markdown/cookbook/error-handling.md
index 74732006ee..42c9e3a9c6 100644
--- a/src/site/markdown/cookbook/error-handling.md
+++ b/src/site/markdown/cookbook/error-handling.md
@@ -30,7 +30,7 @@ jbang BasicErrorHandling.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -64,7 +64,7 @@ public class BasicErrorHandling {
## Handling specific error types
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import java.util.concurrent.ExecutionException;
@@ -99,7 +99,7 @@ public class SpecificErrorHandling {
## Timeout handling
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotSession;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -130,7 +130,7 @@ public class TimeoutHandling {
## Aborting a request
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotSession;
import com.github.copilot.sdk.json.MessageOptions;
import java.util.concurrent.Executors;
@@ -162,7 +162,7 @@ public class AbortRequest {
## Graceful shutdown
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
public class GracefulShutdown {
@@ -192,7 +192,7 @@ public class GracefulShutdown {
## Try-with-resources pattern
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -224,7 +224,7 @@ public class TryWithResources {
## Handling tool errors
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
diff --git a/src/site/markdown/cookbook/managing-local-files.md b/src/site/markdown/cookbook/managing-local-files.md
index 78f914f103..788a712b60 100644
--- a/src/site/markdown/cookbook/managing-local-files.md
+++ b/src/site/markdown/cookbook/managing-local-files.md
@@ -34,7 +34,7 @@ jbang ManagingLocalFiles.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.SessionIdleEvent;
@@ -161,7 +161,7 @@ session.send(new MessageOptions().setPrompt(prompt));
## Interactive file organization
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import java.io.BufferedReader;
import java.io.InputStreamReader;
diff --git a/src/site/markdown/cookbook/multiple-sessions.md b/src/site/markdown/cookbook/multiple-sessions.md
index 42bb1f6222..c6f9666779 100644
--- a/src/site/markdown/cookbook/multiple-sessions.md
+++ b/src/site/markdown/cookbook/multiple-sessions.md
@@ -30,7 +30,7 @@ jbang MultipleSessions.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -123,7 +123,7 @@ try {
## Managing session lifecycle with CompletableFuture
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import java.util.concurrent.CompletableFuture;
import java.util.List;
diff --git a/src/site/markdown/cookbook/persisting-sessions.md b/src/site/markdown/cookbook/persisting-sessions.md
index 119448a440..6c9440a510 100644
--- a/src/site/markdown/cookbook/persisting-sessions.md
+++ b/src/site/markdown/cookbook/persisting-sessions.md
@@ -30,7 +30,7 @@ jbang PersistingSessions.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -127,7 +127,7 @@ public class DeleteSession {
## Getting session history
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.UserMessageEvent;
@@ -162,7 +162,7 @@ public class SessionHistory {
## Complete example with session management
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import java.util.Scanner;
public class SessionManager {
diff --git a/src/site/markdown/cookbook/pr-visualization.md b/src/site/markdown/cookbook/pr-visualization.md
index 627ee5b842..d193e4487e 100644
--- a/src/site/markdown/cookbook/pr-visualization.md
+++ b/src/site/markdown/cookbook/pr-visualization.md
@@ -34,7 +34,7 @@ jbang PRVisualization.java github/copilot-sdk
## Full example: PRVisualization.java
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3-beta-java.2-beta-java.1
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.ToolExecutionStartEvent;
From 6437ddffff975870fa8f916c95a3d78ab991e1a5 Mon Sep 17 00:00:00 2001
From: Bruno Borges
Date: Thu, 14 May 2026 16:04:20 -0400
Subject: [PATCH 03/51] Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
---
.github/workflows/publish-maven.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/publish-maven.yml b/.github/workflows/publish-maven.yml
index f14987176a..cc612389b7 100644
--- a/.github/workflows/publish-maven.yml
+++ b/.github/workflows/publish-maven.yml
@@ -88,7 +88,7 @@ jobs:
# Split version: supports "0.1.32", "0.1.32-java.0", and "0.1.32-java-preview.0" formats
# Validate RELEASE_VERSION format explicitly to provide clear errors
if ! echo "$RELEASE_VERSION" | grep -qE '^[0-9]+\.[0-9]+\.[0-9]+(-(beta-)?java(-preview)?\.[0-9]+)?$'; then
- echo "Error: RELEASE_VERSION '$RELEASE_VERSION' is invalid. Expected format: M.M.P, M.M.P-java.N, M.M.P-java-preview.N, or M.M.P-beta-java.N (e.g., 1.2.3, 1.2.3-java.0, 1.2.3-java-preview.0, or 1.2.3-beta-java.0)." >&2
+ echo "Error: RELEASE_VERSION '$RELEASE_VERSION' is invalid. Expected format: M.M.P, M.M.P-java.N, M.M.P-java-preview.N, M.M.P-beta-java.N, or M.M.P-beta-java-preview.N (e.g., 1.2.3, 1.2.3-java.0, 1.2.3-java-preview.0, 1.2.3-beta-java.0, or 1.2.3-beta-java-preview.0)." >&2
exit 1
fi
# Extract the base M.M.P portion (before any qualifier)
From 963543ad4256220b70a19d936fd548c81b73ff98 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 16:51:11 +0000
Subject: [PATCH 04/51] Initial plan
From 920b1dfbbcf5d09c4246013bf87274aabebe2aee Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 17:18:38 +0000
Subject: [PATCH 05/51] Port remoteSession field from reference implementation
Add remoteSession field to SessionConfig, ResumeSessionConfig,
CreateSessionRequest, and ResumeSessionRequest. Wire it through
SessionRequestBuilder for both create and resume paths.
Reference implementation commit: 0159731 (Add remote_session field
to all SDK SessionConfig types)
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
.../copilot/sdk/SessionRequestBuilder.java | 2 +
.../sdk/json/CreateSessionRequest.java | 15 +++++++
.../copilot/sdk/json/ResumeSessionConfig.java | 30 ++++++++++++++
.../sdk/json/ResumeSessionRequest.java | 15 +++++++
.../copilot/sdk/json/SessionConfig.java | 41 +++++++++++++++++++
5 files changed, 103 insertions(+)
diff --git a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java b/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
index 1bd3a50cb7..52bfb3337f 100644
--- a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
+++ b/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
@@ -151,6 +151,7 @@ static CreateSessionRequest buildCreateRequest(SessionConfig config, String sess
request.setRequestAutoModeSwitch(true);
}
request.setGitHubToken(config.getGitHubToken());
+ request.setRemoteSession(config.getRemoteSession());
return request;
}
@@ -243,6 +244,7 @@ static ResumeSessionRequest buildResumeRequest(String sessionId, ResumeSessionCo
request.setRequestAutoModeSwitch(true);
}
request.setGitHubToken(config.getGitHubToken());
+ request.setRemoteSession(config.getRemoteSession());
return request;
}
diff --git a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java b/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
index 0160724bef..d6bcc7b2b7 100644
--- a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
+++ b/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
@@ -124,6 +124,9 @@ public final class CreateSessionRequest {
@JsonProperty("gitHubToken")
private String gitHubToken;
+ @JsonProperty("remoteSession")
+ private String remoteSession;
+
/** Gets the model name. @return the model */
public String getModel() {
return model;
@@ -528,4 +531,16 @@ public String getGitHubToken() {
public void setGitHubToken(String gitHubToken) {
this.gitHubToken = gitHubToken;
}
+
+ /** Gets the remote session mode. @return the remote session mode */
+ public String getRemoteSession() {
+ return remoteSession;
+ }
+
+ /**
+ * Sets the remote session mode. @param remoteSession the remote session mode
+ */
+ public void setRemoteSession(String remoteSession) {
+ this.remoteSession = remoteSession;
+ }
}
diff --git a/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java b/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java
index d8c3bf43b1..72c9f6f47a 100644
--- a/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java
+++ b/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java
@@ -71,6 +71,7 @@ public class ResumeSessionConfig {
private ExitPlanModeHandler onExitPlanMode;
private AutoModeSwitchHandler onAutoModeSwitch;
private String gitHubToken;
+ private String remoteSession;
/**
* Gets the AI model to use.
@@ -886,6 +887,34 @@ public ResumeSessionConfig setGitHubToken(String gitHubToken) {
return this;
}
+ /**
+ * Gets the per-session remote behavior control.
+ *
+ * See {@link SessionConfig#getRemoteSession()} for details on possible values.
+ *
+ * @return the remote session mode, or {@code null} if not set
+ * @since 1.4.0
+ */
+ public String getRemoteSession() {
+ return remoteSession;
+ }
+
+ /**
+ * Sets the per-session remote behavior control.
+ *
+ * See {@link SessionConfig#setRemoteSession(String)} for details on possible
+ * values.
+ *
+ * @param remoteSession
+ * the remote session mode
+ * @return this config for method chaining
+ * @since 1.4.0
+ */
+ public ResumeSessionConfig setRemoteSession(String remoteSession) {
+ this.remoteSession = remoteSession;
+ return this;
+ }
+
/**
* Creates a shallow clone of this {@code ResumeSessionConfig} instance.
*
@@ -935,6 +964,7 @@ public ResumeSessionConfig clone() {
copy.onExitPlanMode = this.onExitPlanMode;
copy.onAutoModeSwitch = this.onAutoModeSwitch;
copy.gitHubToken = this.gitHubToken;
+ copy.remoteSession = this.remoteSession;
return copy;
}
}
diff --git a/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java b/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java
index 054fc8fba9..8aca77b7d2 100644
--- a/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java
+++ b/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java
@@ -128,6 +128,9 @@ public final class ResumeSessionRequest {
@JsonProperty("gitHubToken")
private String gitHubToken;
+ @JsonProperty("remoteSession")
+ private String remoteSession;
+
/** Gets the session ID. @return the session ID */
public String getSessionId() {
return sessionId;
@@ -555,4 +558,16 @@ public String getGitHubToken() {
public void setGitHubToken(String gitHubToken) {
this.gitHubToken = gitHubToken;
}
+
+ /** Gets the remote session mode. @return the remote session mode */
+ public String getRemoteSession() {
+ return remoteSession;
+ }
+
+ /**
+ * Sets the remote session mode. @param remoteSession the remote session mode
+ */
+ public void setRemoteSession(String remoteSession) {
+ this.remoteSession = remoteSession;
+ }
}
diff --git a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java b/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
index 53a84aa721..f1a383402f 100644
--- a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
+++ b/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
@@ -71,6 +71,7 @@ public class SessionConfig {
private ExitPlanModeHandler onExitPlanMode;
private AutoModeSwitchHandler onAutoModeSwitch;
private String gitHubToken;
+ private String remoteSession;
/**
* Gets the custom session ID.
@@ -939,6 +940,45 @@ public SessionConfig setGitHubToken(String gitHubToken) {
return this;
}
+ /**
+ * Gets the per-session remote behavior control.
+ *
+ * Possible values:
+ *
+ *
{@code "off"} — local only, no remote export (default)
+ *
{@code "export"} — export session events to GitHub without enabling
+ * remote steering
+ *
{@code "on"} — export to GitHub AND enable remote steering
+ *
+ *
+ * @return the remote session mode, or {@code null} if not set
+ * @since 1.4.0
+ */
+ public String getRemoteSession() {
+ return remoteSession;
+ }
+
+ /**
+ * Sets the per-session remote behavior control.
+ *
+ * Possible values:
+ *
+ *
{@code "off"} — local only, no remote export (default)
+ *
{@code "export"} — export session events to GitHub without enabling
+ * remote steering
+ *
{@code "on"} — export to GitHub AND enable remote steering
+ *
+ *
+ * @param remoteSession
+ * the remote session mode
+ * @return this config instance for method chaining
+ * @since 1.4.0
+ */
+ public SessionConfig setRemoteSession(String remoteSession) {
+ this.remoteSession = remoteSession;
+ return this;
+ }
+
/**
* Creates a shallow clone of this {@code SessionConfig} instance.
*
@@ -988,6 +1028,7 @@ public SessionConfig clone() {
copy.onExitPlanMode = this.onExitPlanMode;
copy.onAutoModeSwitch = this.onAutoModeSwitch;
copy.gitHubToken = this.gitHubToken;
+ copy.remoteSession = this.remoteSession;
return copy;
}
}
From efd6c36ccc150cc947fe06beca18065c019aea1d Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 17:19:07 +0000
Subject: [PATCH 06/51] Update .lastmerge to
e20f5bef125860accb30c60d1b35109371a77f16, sync pom.xml CLI version, and
update scripts/codegen @github/copilot version
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
.lastmerge | 2 +-
pom.xml | 2 +-
scripts/codegen/package-lock.json | 56 +++++++++++++++----------------
scripts/codegen/package.json | 2 +-
4 files changed, 31 insertions(+), 31 deletions(-)
diff --git a/.lastmerge b/.lastmerge
index b28867a960..600b63a547 100644
--- a/.lastmerge
+++ b/.lastmerge
@@ -1 +1 @@
-4a0437bb03a0b60a1867f14ae8e3faf053afa5aa
+e20f5bef125860accb30c60d1b35109371a77f16
diff --git a/pom.xml b/pom.xml
index 4e3273cf41..447ffea53f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,7 +94,7 @@
reference-impl-sync workflow and deal with the subsequent
PR.
-->
- ^1.0.44-3
+ ^1.0.48
diff --git a/scripts/codegen/package-lock.json b/scripts/codegen/package-lock.json
index 0846fc42e6..36d7689a71 100644
--- a/scripts/codegen/package-lock.json
+++ b/scripts/codegen/package-lock.json
@@ -6,7 +6,7 @@
"": {
"name": "copilot-sdk-java-codegen",
"dependencies": {
- "@github/copilot": "^1.0.44-3",
+ "@github/copilot": "^1.0.48",
"json-schema": "^0.4.0",
"tsx": "^4.20.6"
}
@@ -428,26 +428,26 @@
}
},
"node_modules/@github/copilot": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot/-/copilot-1.0.45.tgz",
- "integrity": "sha512-2QADgQcw/d0GFqTq2+nHwX152ZRvZxW0CHONG5d1RCs6YJtdr/GdbnMYYeRH2BiBIhnfkcvF50ImCRvsS5Tnwg==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot/-/copilot-1.0.48.tgz",
+ "integrity": "sha512-U5SzyTEq376UU9A4Sd3TEKz+Y2nRUd90cLO4Hc1otaB8yFSy9Ur2UVGcI2/wCoodL3a39k6WbdgNzFxr0gWFRQ==",
"license": "SEE LICENSE IN LICENSE.md",
"bin": {
"copilot": "npm-loader.js"
},
"optionalDependencies": {
- "@github/copilot-darwin-arm64": "1.0.45",
- "@github/copilot-darwin-x64": "1.0.45",
- "@github/copilot-linux-arm64": "1.0.45",
- "@github/copilot-linux-x64": "1.0.45",
- "@github/copilot-win32-arm64": "1.0.45",
- "@github/copilot-win32-x64": "1.0.45"
+ "@github/copilot-darwin-arm64": "1.0.48",
+ "@github/copilot-darwin-x64": "1.0.48",
+ "@github/copilot-linux-arm64": "1.0.48",
+ "@github/copilot-linux-x64": "1.0.48",
+ "@github/copilot-win32-arm64": "1.0.48",
+ "@github/copilot-win32-x64": "1.0.48"
}
},
"node_modules/@github/copilot-darwin-arm64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-darwin-arm64/-/copilot-darwin-arm64-1.0.45.tgz",
- "integrity": "sha512-gCJy1nOIWL5lpLFJTRk2Kz7bS30emkA4p4gM+PJ5/dOwNRBOyUO0/2f03/m5vYL4DNd/T47cFIN6s82gISAIYQ==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-darwin-arm64/-/copilot-darwin-arm64-1.0.48.tgz",
+ "integrity": "sha512-82MLoMQwPVVFM8EYssihFxSEPUYtZADE8rMzQ3jG9HgRg2qjQSfnHQS1mKe64dlXswZUK/onw6/8kjnW5I4pPg==",
"cpu": [
"arm64"
],
@@ -461,9 +461,9 @@
}
},
"node_modules/@github/copilot-darwin-x64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-darwin-x64/-/copilot-darwin-x64-1.0.45.tgz",
- "integrity": "sha512-nLzC7C0i/WAY+4FukHuONBDNeKUAqBBab3n36aEdpqxVDP5h2Tbzg2yShqav2blR7KDJL7YMcYTVFxmwfQj+yQ==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-darwin-x64/-/copilot-darwin-x64-1.0.48.tgz",
+ "integrity": "sha512-1VQ5r5F0h8GwboXmZTcutqcJT+iCpPXAF27QqodmpKEvW9aYfG8g9X2kFJOzDZoX+SA3Uaka9qXdYKF2xT6Uog==",
"cpu": [
"x64"
],
@@ -477,9 +477,9 @@
}
},
"node_modules/@github/copilot-linux-arm64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-linux-arm64/-/copilot-linux-arm64-1.0.45.tgz",
- "integrity": "sha512-MdRNZUNMrI0dpQ+DiDoZQ7AbitQp9eN7ir176Za2Kf7dkUxPwmio32yhRbBS81McU6vBw8cCzEZviwv/jc8buQ==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-linux-arm64/-/copilot-linux-arm64-1.0.48.tgz",
+ "integrity": "sha512-PmsGnb0DZlI+Bf53l9HM1PAHHkUcMyB4y8v/7tnC/jDOV5dGF124n0HnDNfJLOLiJGiQGodthIif6QtPaAxpeA==",
"cpu": [
"arm64"
],
@@ -493,9 +493,9 @@
}
},
"node_modules/@github/copilot-linux-x64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-linux-x64/-/copilot-linux-x64-1.0.45.tgz",
- "integrity": "sha512-xSRUjWA+wrSSjktJSjNtiS/47Cy0PviPejj7RUmtChsPfDJB8wW2iZ6NfpdiAomtxAz5xx4AjbjT1I4b1FqnwA==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-linux-x64/-/copilot-linux-x64-1.0.48.tgz",
+ "integrity": "sha512-b2cc4euSlke9fYHXXsS2EL9UYbctN0h4lZvtAcKUDY+RCnpYAQOVBZK+c1R9dQrtsT6Z/yUv7PuFPSs8qdtc2Q==",
"cpu": [
"x64"
],
@@ -509,9 +509,9 @@
}
},
"node_modules/@github/copilot-win32-arm64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-win32-arm64/-/copilot-win32-arm64-1.0.45.tgz",
- "integrity": "sha512-lhcTlKs7MWMzIXv21hUSpL4aFW49jqVhNrQKaB8sYk2nzvGRJvNwTcBS1Tn5ndXlPzQ9P/p9B6B5uwwmZ1vHHw==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-win32-arm64/-/copilot-win32-arm64-1.0.48.tgz",
+ "integrity": "sha512-VEEOwddtpJ3DTbXGhnK6K8im4ofl9m08q1m/K++sNvWV8wkkOSOQBTiPdyUsuU/TXAoFhb8tZMIJv+6NnMBtMw==",
"cpu": [
"arm64"
],
@@ -525,9 +525,9 @@
}
},
"node_modules/@github/copilot-win32-x64": {
- "version": "1.0.45",
- "resolved": "https://registry.npmjs.org/@github/copilot-win32-x64/-/copilot-win32-x64-1.0.45.tgz",
- "integrity": "sha512-XYZ983NQmooVr/n+pCnHIorBmf1hd3o1rMlSAodwG/VFlQaydGoOs1F1NntxWBoFAND+eM6N4PZfw8M8sRayfA==",
+ "version": "1.0.48",
+ "resolved": "https://registry.npmjs.org/@github/copilot-win32-x64/-/copilot-win32-x64-1.0.48.tgz",
+ "integrity": "sha512-93BzvXLPHTyy1gWBXQY/IWIHor4IAwZuuo7/obG80/Qa6U0WeaN9slz/FBJvrsgVNrrRfEID5Xm3At+S6Kj67Q==",
"cpu": [
"x64"
],
diff --git a/scripts/codegen/package.json b/scripts/codegen/package.json
index 6dde795791..82454e774e 100644
--- a/scripts/codegen/package.json
+++ b/scripts/codegen/package.json
@@ -7,7 +7,7 @@
"generate:java": "tsx java.ts"
},
"dependencies": {
- "@github/copilot": "^1.0.44-3",
+ "@github/copilot": "^1.0.48",
"json-schema": "^0.4.0",
"tsx": "^4.20.6"
}
From 94145e409d96f3156afae7cd057d96f5e2635d01 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 17:46:49 +0000
Subject: [PATCH 07/51] Initial plan
From 1f1a241c13952c04079f4a10e50642514a9853da Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 17:55:32 +0000
Subject: [PATCH 08/51] Add Java module descriptor
Co-authored-by: brunoborges <129743+brunoborges@users.noreply.github.com>
---
config/checkstyle/checkstyle.xml | 4 +--
src/main/java/module-info.java | 22 +++++++++++++++
.../copilot/sdk/ModuleDescriptorTest.java | 28 +++++++++++++++++++
3 files changed, 52 insertions(+), 2 deletions(-)
create mode 100644 src/main/java/module-info.java
create mode 100644 src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java
diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml
index 9a6f3761b5..fcde1f6c97 100644
--- a/config/checkstyle/checkstyle.xml
+++ b/config/checkstyle/checkstyle.xml
@@ -11,9 +11,9 @@
-
+
-
+
diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java
new file mode 100644
index 0000000000..b5c6c87ace
--- /dev/null
+++ b/src/main/java/module-info.java
@@ -0,0 +1,22 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+/**
+ * GitHub Copilot SDK for Java.
+ */
+module com.github.copilot.sdk.java {
+ requires transitive com.fasterxml.jackson.annotation;
+ requires com.fasterxml.jackson.core;
+ requires transitive com.fasterxml.jackson.databind;
+ requires com.fasterxml.jackson.datatype.jsr310;
+ requires static com.github.spotbugs.annotations;
+ requires static java.compiler;
+ requires static java.net.http;
+ requires java.logging;
+
+ exports com.github.copilot.sdk;
+ exports com.github.copilot.sdk.generated;
+ exports com.github.copilot.sdk.generated.rpc;
+ exports com.github.copilot.sdk.json;
+}
diff --git a/src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java b/src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java
new file mode 100644
index 0000000000..36be137345
--- /dev/null
+++ b/src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java
@@ -0,0 +1,28 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+package com.github.copilot.sdk;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+import java.lang.module.ModuleDescriptor;
+import org.junit.jupiter.api.Test;
+
+class ModuleDescriptorTest {
+
+ @Test
+ void sdkHasExplicitModuleDescriptor() {
+ Module module = CopilotClient.class.getModule();
+ assertTrue(module.isNamed());
+ assertEquals("com.github.copilot.sdk.java", module.getName());
+
+ ModuleDescriptor descriptor = module.getDescriptor();
+ assertTrue(descriptor.exports().stream().anyMatch(export -> export.source().equals("com.github.copilot.sdk")));
+ assertTrue(descriptor.exports().stream()
+ .anyMatch(export -> export.source().equals("com.github.copilot.sdk.json")));
+ assertTrue(descriptor.requires().stream()
+ .anyMatch(require -> require.name().equals("com.fasterxml.jackson.databind")));
+ }
+}
From 0ebf1f97a5d382c6adb5adbf3a1c27e30255ae27 Mon Sep 17 00:00:00 2001
From: Ed Burns
Date: Fri, 15 May 2026 12:10:00 -0700
Subject: [PATCH 09/51] add closing parenthesis
---
...r-002-maven-version-and-reference-implementation-tracking.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/adr/adr-002-maven-version-and-reference-implementation-tracking.md b/docs/adr/adr-002-maven-version-and-reference-implementation-tracking.md
index 6a0b54f225..248a024c23 100644
--- a/docs/adr/adr-002-maven-version-and-reference-implementation-tracking.md
+++ b/docs/adr/adr-002-maven-version-and-reference-implementation-tracking.md
@@ -8,7 +8,7 @@ Releases of this implementation track releases of the reference implementation.
- Simple number qualifier (0.1.32-0, 0.1.32-1, ...) fails on a subtle but important point: 0.1.32-0 is treated identically to 0.1.32 by Maven (trailing zeros are normalized away), and bare numeric qualifiers are pre-release semantics. Your "first release" would sort before the reference implementation bare version.
-- Java and number in the qualifier (0.1.32-java.N
+- Java and number in the qualifier (0.1.32-java.N)
- java is an unknown qualifier that sorts correctly and accurately describes what it is — the Java-ecosystem release of this version.
From 9de400aa796ca268d576487e16a5fcf9fd535424 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 15 May 2026 20:53:09 +0000
Subject: [PATCH 10/51] Regenerate codegen output
Auto-committed by codegen-check workflow.
---
.../generated/AssistantUsageApiEndpoint.java | 39 ++++++++++++++
.../sdk/generated/AssistantUsageEvent.java | 2 +
.../SessionCustomNotificationEvent.java | 51 +++++++++++++++++++
.../sdk/generated/SessionErrorEvent.java | 2 +-
.../copilot/sdk/generated/SessionEvent.java | 2 +
.../SessionScheduleCreatedEvent.java | 4 +-
.../sdk/generated/UserMessageEvent.java | 2 +
.../copilot/sdk/generated/rpc/Model.java | 6 ++-
.../sdk/generated/rpc/ModelBilling.java | 4 +-
.../rpc/ModelBillingTokenPrices.java | 33 ++++++++++++
.../generated/rpc/ModelPickerCategory.java | 37 ++++++++++++++
.../rpc/ModelPickerPriceCategory.java | 39 ++++++++++++++
.../sdk/generated/rpc/RemoteSessionMode.java | 37 ++++++++++++++
.../sdk/generated/rpc/SessionCommandsApi.java | 21 ++++++++
.../rpc/SessionCommandsInvokeParams.java | 31 +++++++++++
.../rpc/SessionCommandsListParams.java | 27 ++++++++++
.../rpc/SessionCommandsListResult.java | 28 ++++++++++
.../sdk/generated/rpc/SessionRemoteApi.java | 11 +++-
.../rpc/SessionRemoteEnableParams.java | 4 +-
.../sdk/generated/rpc/SessionSkillsApi.java | 4 +-
.../rpc/SessionSkillsReloadResult.java | 8 ++-
.../sdk/generated/rpc/SessionsForkParams.java | 4 +-
.../sdk/generated/rpc/SessionsForkResult.java | 4 +-
.../sdk/generated/rpc/SlashCommandInfo.java | 35 +++++++++++++
.../sdk/generated/rpc/SlashCommandInput.java | 33 ++++++++++++
.../rpc/SlashCommandInputCompletion.java | 33 ++++++++++++
.../sdk/generated/rpc/SlashCommandKind.java | 37 ++++++++++++++
27 files changed, 526 insertions(+), 12 deletions(-)
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
new file mode 100644
index 0000000000..bbcd619fbb
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
@@ -0,0 +1,39 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * API endpoint used for this model call, matching CAPI supported_endpoints vocabulary
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum AssistantUsageApiEndpoint {
+ /** The {@code /chat/completions} variant. */
+ /CHAT/COMPLETIONS("/chat/completions"),
+ /** The {@code /v1/messages} variant. */
+ /V1/MESSAGES("/v1/messages"),
+ /** The {@code /responses} variant. */
+ /RESPONSES("/responses"),
+ /** The {@code ws:/responses} variant. */
+ WS:/RESPONSES("ws:/responses");
+
+ private final String value;
+ AssistantUsageApiEndpoint(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static AssistantUsageApiEndpoint fromValue(String value) {
+ for (AssistantUsageApiEndpoint v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown AssistantUsageApiEndpoint value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
index 4613d520e7..ba97e03958 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
@@ -62,6 +62,8 @@ public record AssistantUsageEventData(
@JsonProperty("apiCallId") String apiCallId,
/** GitHub request tracing ID (x-github-request-id header) for server-side log correlation */
@JsonProperty("providerCallId") String providerCallId,
+ /** API endpoint used for this model call, matching CAPI supported_endpoints vocabulary */
+ @JsonProperty("apiEndpoint") AssistantUsageApiEndpoint apiEndpoint,
/** Parent tool call ID when this usage originates from a sub-agent */
@JsonProperty("parentToolCallId") String parentToolCallId,
/** Per-quota resource usage snapshots, keyed by quota identifier */
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
new file mode 100644
index 0000000000..8d3e3b68ac
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
@@ -0,0 +1,51 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.Map;
+import javax.annotation.processing.Generated;
+
+/**
+ * The {@code session.custom_notification} session event.
+ *
+ * @since 1.0.0
+ */
+@JsonIgnoreProperties(ignoreUnknown = true)
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public final class SessionCustomNotificationEvent extends SessionEvent {
+
+ @Override
+ public String getType() { return "session.custom_notification"; }
+
+ @JsonProperty("data")
+ private SessionCustomNotificationEventData data;
+
+ public SessionCustomNotificationEventData getData() { return data; }
+ public void setData(SessionCustomNotificationEventData data) { this.data = data; }
+
+ /** Data payload for {@link SessionCustomNotificationEvent}. */
+ @JsonIgnoreProperties(ignoreUnknown = true)
+ @JsonInclude(JsonInclude.Include.NON_NULL)
+ public record SessionCustomNotificationEventData(
+ /** Namespace for the custom notification producer */
+ @JsonProperty("source") String source,
+ /** Source-defined custom notification name */
+ @JsonProperty("name") String name,
+ /** Optional source-defined payload schema version */
+ @JsonProperty("version") Long version,
+ /** Optional source-defined string identifiers describing the payload subject */
+ @JsonProperty("subject") Map subject,
+ /** Source-defined JSON payload for the custom notification */
+ @JsonProperty("payload") Object payload
+ ) {
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
index ecb85aacf0..5c174c4357 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
@@ -37,7 +37,7 @@ public final class SessionErrorEvent extends SessionEvent {
public record SessionErrorEventData(
/** Category of error (e.g., "authentication", "authorization", "quota", "rate_limit", "context_limit", "query") */
@JsonProperty("errorType") String errorType,
- /** Fine-grained error code from the upstream provider, when available. For `errorType: "rate_limit"`, this is one of the `RateLimitErrorCode` values (e.g., `"user_weekly_rate_limited"`, `"user_global_rate_limited"`, `"rate_limited"`, `"user_model_rate_limited"`, `"integration_rate_limited"`). */
+ /** Fine-grained error code from the upstream provider, when available. For `errorType: "rate_limit"`, this is one of the `RateLimitErrorCode` values (e.g., `"user_weekly_rate_limited"`, `"user_global_rate_limited"`, `"rate_limited"`, `"user_model_rate_limited"`, `"integration_rate_limited"`). For `errorType: "quota"`, this is the CAPI quota error code (e.g., `"quota_exceeded"`, `"session_quota_exceeded"`, `"billing_not_configured"`). */
@JsonProperty("errorCode") String errorCode,
/** Only set on `errorType: "rate_limit"`. When `true`, the runtime will follow this error with an `auto_mode_switch.requested` event (or silently switch if `continueOnAutoMode` is enabled). UI clients can use this flag to suppress duplicate rendering of the rate-limit error when they show their own auto-mode-switch prompt. */
@JsonProperty("eligibleForAutoSwitch") Boolean eligibleForAutoSwitch,
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java
index 0f348fe863..2181be1972 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java
@@ -87,6 +87,7 @@
@JsonSubTypes.Type(value = SamplingCompletedEvent.class, name = "sampling.completed"),
@JsonSubTypes.Type(value = McpOauthRequiredEvent.class, name = "mcp.oauth_required"),
@JsonSubTypes.Type(value = McpOauthCompletedEvent.class, name = "mcp.oauth_completed"),
+ @JsonSubTypes.Type(value = SessionCustomNotificationEvent.class, name = "session.custom_notification"),
@JsonSubTypes.Type(value = ExternalToolRequestedEvent.class, name = "external_tool.requested"),
@JsonSubTypes.Type(value = ExternalToolCompletedEvent.class, name = "external_tool.completed"),
@JsonSubTypes.Type(value = CommandQueuedEvent.class, name = "command.queued"),
@@ -170,6 +171,7 @@ public abstract sealed class SessionEvent permits
SamplingCompletedEvent,
McpOauthRequiredEvent,
McpOauthCompletedEvent,
+ SessionCustomNotificationEvent,
ExternalToolRequestedEvent,
ExternalToolCompletedEvent,
CommandQueuedEvent,
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
index aba8650c84..bf0be67caf 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
@@ -40,7 +40,9 @@ public record SessionScheduleCreatedEventData(
/** Interval between ticks in milliseconds */
@JsonProperty("intervalMs") Long intervalMs,
/** Prompt text that gets enqueued on every tick */
- @JsonProperty("prompt") String prompt
+ @JsonProperty("prompt") String prompt,
+ /** Whether the schedule re-arms after each tick (`/every`) or fires once (`/after`) */
+ @JsonProperty("recurring") Boolean recurring
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
index ec5f382463..fa680d3e64 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
@@ -50,6 +50,8 @@ public record UserMessageEventData(
@JsonProperty("source") String source,
/** The agent mode that was active when this message was sent */
@JsonProperty("agentMode") UserMessageAgentMode agentMode,
+ /** True when this user message was auto-injected by autopilot's continuation loop rather than typed by the user; used to distinguish autopilot-driven turns in telemetry. */
+ @JsonProperty("isAutopilotContinuation") Boolean isAutopilotContinuation,
/** CAPI interaction ID for correlating this user message with its turn */
@JsonProperty("interactionId") String interactionId,
/** Parent agent task ID for background telemetry correlated to this user turn */
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
index 9ba457cecb..9bda6a3007 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
@@ -30,6 +30,10 @@ public record Model(
/** Supported reasoning effort levels (only present if model supports reasoning effort) */
@JsonProperty("supportedReasoningEfforts") List supportedReasoningEfforts,
/** Default reasoning effort level (only present if model supports reasoning effort) */
- @JsonProperty("defaultReasoningEffort") String defaultReasoningEffort
+ @JsonProperty("defaultReasoningEffort") String defaultReasoningEffort,
+ /** Model capability category for grouping in the model picker */
+ @JsonProperty("modelPickerCategory") ModelPickerCategory modelPickerCategory,
+ /** Relative cost tier for token-based billing users */
+ @JsonProperty("modelPickerPriceCategory") ModelPickerPriceCategory modelPickerPriceCategory
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java
index 656f5383d5..9e634bb79a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java
@@ -22,6 +22,8 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public record ModelBilling(
/** Billing cost multiplier relative to the base rate */
- @JsonProperty("multiplier") Double multiplier
+ @JsonProperty("multiplier") Double multiplier,
+ /** Token-level pricing information for this model */
+ @JsonProperty("tokenPrices") ModelBillingTokenPrices tokenPrices
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java
new file mode 100644
index 0000000000..34005daf1b
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java
@@ -0,0 +1,33 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.annotation.processing.Generated;
+
+/**
+ * Token-level pricing information for this model
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record ModelBillingTokenPrices(
+ /** Price per billing batch of input tokens in nano-AIUs (1 nano-AIU = 0.000000001 AIU, 1 AIU = $0.01 USD) */
+ @JsonProperty("inputPrice") Long inputPrice,
+ /** Price per billing batch of output tokens in nano-AIUs (1 nano-AIU = 0.000000001 AIU, 1 AIU = $0.01 USD) */
+ @JsonProperty("outputPrice") Long outputPrice,
+ /** Price per billing batch of cached tokens in nano-AIUs (1 nano-AIU = 0.000000001 AIU, 1 AIU = $0.01 USD) */
+ @JsonProperty("cachePrice") Long cachePrice,
+ /** Number of tokens per standard billing batch */
+ @JsonProperty("batchSize") Long batchSize
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java
new file mode 100644
index 0000000000..ba0bdddfd1
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Model capability category for grouping in the model picker
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ModelPickerCategory {
+ /** The {@code lightweight} variant. */
+ LIGHTWEIGHT("lightweight"),
+ /** The {@code versatile} variant. */
+ VERSATILE("versatile"),
+ /** The {@code powerful} variant. */
+ POWERFUL("powerful");
+
+ private final String value;
+ ModelPickerCategory(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ModelPickerCategory fromValue(String value) {
+ for (ModelPickerCategory v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ModelPickerCategory value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java
new file mode 100644
index 0000000000..cf722e4968
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java
@@ -0,0 +1,39 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Relative cost tier for token-based billing users
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ModelPickerPriceCategory {
+ /** The {@code low} variant. */
+ LOW("low"),
+ /** The {@code medium} variant. */
+ MEDIUM("medium"),
+ /** The {@code high} variant. */
+ HIGH("high"),
+ /** The {@code very_high} variant. */
+ VERY_HIGH("very_high");
+
+ private final String value;
+ ModelPickerPriceCategory(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ModelPickerPriceCategory fromValue(String value) {
+ for (ModelPickerPriceCategory v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ModelPickerPriceCategory value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
new file mode 100644
index 0000000000..4f659bb6b6
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Per-session remote mode. "off" disables remote, "export" exports session events to Mission Control without enabling remote steering, "on" enables both export and remote steering.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum RemoteSessionMode {
+ /** The {@code off} variant. */
+ OFF("off"),
+ /** The {@code export} variant. */
+ EXPORT("export"),
+ /** The {@code on} variant. */
+ ON("on");
+
+ private final String value;
+ RemoteSessionMode(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static RemoteSessionMode fromValue(String value) {
+ for (RemoteSessionMode v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown RemoteSessionMode value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
index 0d3599a1cc..6366af794a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
@@ -29,6 +29,27 @@ public final class SessionCommandsApi {
this.sessionId = sessionId;
}
+ /**
+ * Invokes {@code session.commands.list}.
+ * @since 1.0.0
+ */
+ public CompletableFuture list() {
+ return caller.invoke("session.commands.list", java.util.Map.of("sessionId", this.sessionId), SessionCommandsListResult.class);
+ }
+
+ /**
+ * Invokes {@code session.commands.invoke}.
+ *
+ * Note: the {@code sessionId} field in the params record is overridden
+ * by the session-scoped wrapper; any value provided is ignored.
+ * @since 1.0.0
+ */
+ public CompletableFuture invoke(SessionCommandsInvokeParams params) {
+ com.fasterxml.jackson.databind.node.ObjectNode _p = MAPPER.valueToTree(params);
+ _p.put("sessionId", this.sessionId);
+ return caller.invoke("session.commands.invoke", _p, Void.class);
+ }
+
/**
* Invokes {@code session.commands.handlePendingCommand}.
*
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java
new file mode 100644
index 0000000000..141ec9524d
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java
@@ -0,0 +1,31 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.annotation.processing.Generated;
+
+/**
+ * Request parameters for the {@code session.commands.invoke} RPC method.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record SessionCommandsInvokeParams(
+ /** Target session identifier */
+ @JsonProperty("sessionId") String sessionId,
+ /** Command name. Leading slashes are stripped and the name is matched case-insensitively. */
+ @JsonProperty("name") String name,
+ /** Raw input after the command name */
+ @JsonProperty("input") String input
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java
new file mode 100644
index 0000000000..dd51f0e768
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java
@@ -0,0 +1,27 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.annotation.processing.Generated;
+
+/**
+ * Request parameters for the {@code session.commands.list} RPC method.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record SessionCommandsListParams(
+ /** Target session identifier */
+ @JsonProperty("sessionId") String sessionId
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java
new file mode 100644
index 0000000000..e819ba64c1
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java
@@ -0,0 +1,28 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+import javax.annotation.processing.Generated;
+
+/**
+ * Result for the {@code session.commands.list} RPC method.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record SessionCommandsListResult(
+ /** Commands available in this session */
+ @JsonProperty("commands") List commands
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java
index df458acda5..790e1a7255 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java
@@ -18,6 +18,8 @@
@javax.annotation.processing.Generated("copilot-sdk-codegen")
public final class SessionRemoteApi {
+ private static final com.fasterxml.jackson.databind.ObjectMapper MAPPER = RpcMapper.INSTANCE;
+
private final RpcCaller caller;
private final String sessionId;
@@ -29,12 +31,17 @@ public final class SessionRemoteApi {
/**
* Invokes {@code session.remote.enable}.
+ *
+ * Note: the {@code sessionId} field in the params record is overridden
+ * by the session-scoped wrapper; any value provided is ignored.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
*/
- public CompletableFuture enable() {
- return caller.invoke("session.remote.enable", java.util.Map.of("sessionId", this.sessionId), SessionRemoteEnableResult.class);
+ public CompletableFuture enable(SessionRemoteEnableParams params) {
+ com.fasterxml.jackson.databind.node.ObjectNode _p = MAPPER.valueToTree(params);
+ _p.put("sessionId", this.sessionId);
+ return caller.invoke("session.remote.enable", _p, SessionRemoteEnableResult.class);
}
/**
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java
index d8b7917b78..aa1fff7a23 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java
@@ -22,6 +22,8 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public record SessionRemoteEnableParams(
/** Target session identifier */
- @JsonProperty("sessionId") String sessionId
+ @JsonProperty("sessionId") String sessionId,
+ /** Per-session remote mode. "off" disables remote, "export" exports session events to Mission Control without enabling remote steering, "on" enables both export and remote steering. */
+ @JsonProperty("mode") RemoteSessionMode mode
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java
index b32419a3e6..6f46d19d75 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java
@@ -75,8 +75,8 @@ public CompletableFuture disable(SessionSkillsDisableParams params) {
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
*/
- public CompletableFuture reload() {
- return caller.invoke("session.skills.reload", java.util.Map.of("sessionId", this.sessionId), Void.class);
+ public CompletableFuture reload() {
+ return caller.invoke("session.skills.reload", java.util.Map.of("sessionId", this.sessionId), SessionSkillsReloadResult.class);
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java
index 1bfca46e1a..1333d57cc1 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java
@@ -10,6 +10,7 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
import javax.annotation.processing.Generated;
/**
@@ -20,5 +21,10 @@
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
-public record SessionSkillsReloadResult() {
+public record SessionSkillsReloadResult(
+ /** Warnings emitted while loading skills (e.g. skills that loaded but had issues) */
+ @JsonProperty("warnings") List warnings,
+ /** Errors emitted while loading skills (e.g. skills that failed to load entirely) */
+ @JsonProperty("errors") List errors
+) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java
index 06ea46c932..644be05ee0 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java
@@ -24,6 +24,8 @@ public record SessionsForkParams(
/** Source session ID to fork from */
@JsonProperty("sessionId") String sessionId,
/** Optional event ID boundary. When provided, the fork includes only events before this ID (exclusive). When omitted, all events are included. */
- @JsonProperty("toEventId") String toEventId
+ @JsonProperty("toEventId") String toEventId,
+ /** Optional friendly name to assign to the forked session. */
+ @JsonProperty("name") String name
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java
index 911574f568..77543916ec 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java
@@ -22,6 +22,8 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public record SessionsForkResult(
/** The new forked session's ID */
- @JsonProperty("sessionId") String sessionId
+ @JsonProperty("sessionId") String sessionId,
+ /** Friendly name assigned to the forked session, if any. */
+ @JsonProperty("name") String name
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java
new file mode 100644
index 0000000000..e494f4894c
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java
@@ -0,0 +1,35 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+import javax.annotation.processing.Generated;
+
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record SlashCommandInfo(
+ /** Canonical command name without a leading slash */
+ @JsonProperty("name") String name,
+ /** Canonical aliases without leading slashes */
+ @JsonProperty("aliases") List aliases,
+ /** Human-readable command description */
+ @JsonProperty("description") String description,
+ /** Coarse command category for grouping and behavior: runtime built-in, skill-backed command, or SDK/client-owned command */
+ @JsonProperty("kind") SlashCommandKind kind,
+ /** Optional unstructured input hint */
+ @JsonProperty("input") SlashCommandInput input,
+ /** Whether the command may run while an agent turn is active */
+ @JsonProperty("allowDuringAgentExecution") Boolean allowDuringAgentExecution,
+ /** Whether the command is experimental */
+ @JsonProperty("experimental") Boolean experimental
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java
new file mode 100644
index 0000000000..186dec5a81
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java
@@ -0,0 +1,33 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.annotation.processing.Generated;
+
+/**
+ * Optional unstructured input hint
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record SlashCommandInput(
+ /** Hint to display when command input has not been provided */
+ @JsonProperty("hint") String hint,
+ /** When true, the command requires non-empty input; clients should render the input hint as required */
+ @JsonProperty("required") Boolean required,
+ /** Optional completion hint for the input (e.g. 'directory' for filesystem path completion) */
+ @JsonProperty("completion") SlashCommandInputCompletion completion,
+ /** When true, clients should pass the full text after the command name as a single argument rather than splitting on whitespace */
+ @JsonProperty("preserveMultilineInput") Boolean preserveMultilineInput
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java
new file mode 100644
index 0000000000..c192fa9c0f
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java
@@ -0,0 +1,33 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Optional completion hint for the input (e.g. 'directory' for filesystem path completion)
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum SlashCommandInputCompletion {
+ /** The {@code directory} variant. */
+ DIRECTORY("directory");
+
+ private final String value;
+ SlashCommandInputCompletion(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static SlashCommandInputCompletion fromValue(String value) {
+ for (SlashCommandInputCompletion v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown SlashCommandInputCompletion value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java
new file mode 100644
index 0000000000..1f08c4efcd
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Coarse command category for grouping and behavior: runtime built-in, skill-backed command, or SDK/client-owned command
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum SlashCommandKind {
+ /** The {@code builtin} variant. */
+ BUILTIN("builtin"),
+ /** The {@code skill} variant. */
+ SKILL("skill"),
+ /** The {@code client} variant. */
+ CLIENT("client");
+
+ private final String value;
+ SlashCommandKind(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static SlashCommandKind fromValue(String value) {
+ for (SlashCommandKind v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown SlashCommandKind value: " + value);
+ }
+}
From 3cb91793aebf743f74ea69f5c110e4845f3566b9 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 21:00:09 +0000
Subject: [PATCH 11/51] Remove redundant Automatic-Module-Name manifest entry
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
pom.xml | 7 -------
1 file changed, 7 deletions(-)
diff --git a/pom.xml b/pom.xml
index 4e3273cf41..ac258afdb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -172,13 +172,6 @@
org.apache.maven.pluginsmaven-jar-plugin3.5.0
-
-
-
- com.github.copilot.sdk.java
-
-
-
From 2509ed149b559570880cbe55da07a1ebfef0ce23 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 21:13:20 +0000
Subject: [PATCH 12/51] Add comprehensive RemoteSession tests and fix generated
code compilation errors
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
.../generated/AssistantUsageApiEndpoint.java | 8 +-
.../github/copilot/sdk/RemoteSessionTest.java | 399 ++++++++++++++++++
.../rpc/GeneratedRpcApiCoverageTest.java | 4 +-
.../rpc/GeneratedRpcRecordsCoverageTest.java | 10 +-
4 files changed, 410 insertions(+), 11 deletions(-)
create mode 100644 src/test/java/com/github/copilot/sdk/RemoteSessionTest.java
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
index bbcd619fbb..e69e4ef868 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
@@ -17,13 +17,13 @@
@javax.annotation.processing.Generated("copilot-sdk-codegen")
public enum AssistantUsageApiEndpoint {
/** The {@code /chat/completions} variant. */
- /CHAT/COMPLETIONS("/chat/completions"),
+ CHAT_COMPLETIONS("/chat/completions"),
/** The {@code /v1/messages} variant. */
- /V1/MESSAGES("/v1/messages"),
+ V1_MESSAGES("/v1/messages"),
/** The {@code /responses} variant. */
- /RESPONSES("/responses"),
+ RESPONSES("/responses"),
/** The {@code ws:/responses} variant. */
- WS:/RESPONSES("ws:/responses");
+ WS_RESPONSES("ws:/responses");
private final String value;
AssistantUsageApiEndpoint(String value) { this.value = value; }
diff --git a/src/test/java/com/github/copilot/sdk/RemoteSessionTest.java b/src/test/java/com/github/copilot/sdk/RemoteSessionTest.java
new file mode 100644
index 0000000000..6e093db6ca
--- /dev/null
+++ b/src/test/java/com/github/copilot/sdk/RemoteSessionTest.java
@@ -0,0 +1,399 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+package com.github.copilot.sdk;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.ValueSource;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.github.copilot.sdk.json.CreateSessionRequest;
+import com.github.copilot.sdk.json.ResumeSessionConfig;
+import com.github.copilot.sdk.json.ResumeSessionRequest;
+import com.github.copilot.sdk.json.SessionConfig;
+
+/**
+ * Tests for the {@code remoteSession} feature across all session config types.
+ *
+ * Validates the complete lifecycle of the remote session mode:
+ *
+ *
Getter/setter and fluent chaining on {@link SessionConfig} and
+ * {@link ResumeSessionConfig}
+ *
Propagation through {@link SessionRequestBuilder} into
+ * {@link CreateSessionRequest} and {@link ResumeSessionRequest}
Defensive copy via {@code copy()} preserves the value
+ *
All three supported mode values ("off", "export", "on") are transmitted
+ * correctly
+ *
+ */
+class RemoteSessionTest {
+
+ private static final ObjectMapper MAPPER = JsonRpcClient.getObjectMapper();
+
+ // =========================================================================
+ // SessionConfig getter/setter/copy
+ // =========================================================================
+
+ @Test
+ void sessionConfig_remoteSessionDefaultsToNull() {
+ var cfg = new SessionConfig();
+ assertNull(cfg.getRemoteSession(), "remoteSession should be null when not set");
+ }
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void sessionConfig_setRemoteSessionReturnsSelf(String mode) {
+ var cfg = new SessionConfig();
+ SessionConfig result = cfg.setRemoteSession(mode);
+ assertSame(cfg, result, "setRemoteSession should return the same instance for chaining");
+ assertEquals(mode, cfg.getRemoteSession());
+ }
+
+ @Test
+ void sessionConfig_copyPreservesRemoteSession() {
+ var original = new SessionConfig().setRemoteSession("export");
+ var copy = original.clone();
+ assertEquals("export", copy.getRemoteSession());
+ }
+
+ @Test
+ void sessionConfig_copyPreservesNullRemoteSession() {
+ var original = new SessionConfig();
+ var copy = original.clone();
+ assertNull(copy.getRemoteSession());
+ }
+
+ @Test
+ void sessionConfig_setRemoteSessionToNullClearsValue() {
+ var cfg = new SessionConfig().setRemoteSession("on");
+ cfg.setRemoteSession(null);
+ assertNull(cfg.getRemoteSession());
+ }
+
+ // =========================================================================
+ // ResumeSessionConfig getter/setter/copy
+ // =========================================================================
+
+ @Test
+ void resumeSessionConfig_remoteSessionDefaultsToNull() {
+ var cfg = new ResumeSessionConfig();
+ assertNull(cfg.getRemoteSession(), "remoteSession should be null when not set");
+ }
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void resumeSessionConfig_setRemoteSessionReturnsSelf(String mode) {
+ var cfg = new ResumeSessionConfig();
+ ResumeSessionConfig result = cfg.setRemoteSession(mode);
+ assertSame(cfg, result, "setRemoteSession should return the same instance for chaining");
+ assertEquals(mode, cfg.getRemoteSession());
+ }
+
+ @Test
+ void resumeSessionConfig_copyPreservesRemoteSession() {
+ var original = new ResumeSessionConfig().setRemoteSession("on");
+ var copy = original.clone();
+ assertEquals("on", copy.getRemoteSession());
+ }
+
+ // =========================================================================
+ // SessionRequestBuilder – CreateSessionRequest wiring
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void buildCreateRequest_propagatesRemoteSession(String mode) {
+ var config = new SessionConfig().setRemoteSession(mode);
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+ assertEquals(mode, request.getRemoteSession());
+ }
+
+ @Test
+ void buildCreateRequest_nullConfig_remoteSessionIsNull() {
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(null);
+ assertNull(request.getRemoteSession());
+ }
+
+ @Test
+ void buildCreateRequest_unsetRemoteSession_isNull() {
+ var config = new SessionConfig();
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+ assertNull(request.getRemoteSession());
+ }
+
+ // =========================================================================
+ // SessionRequestBuilder – ResumeSessionRequest wiring
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void buildResumeRequest_propagatesRemoteSession(String mode) {
+ var config = new ResumeSessionConfig().setRemoteSession(mode);
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+ assertEquals(mode, request.getRemoteSession());
+ }
+
+ @Test
+ void buildResumeRequest_nullConfig_remoteSessionIsNull() {
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", null);
+ assertNull(request.getRemoteSession());
+ }
+
+ @Test
+ void buildResumeRequest_unsetRemoteSession_isNull() {
+ var config = new ResumeSessionConfig();
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+ assertNull(request.getRemoteSession());
+ }
+
+ // =========================================================================
+ // JSON wire-format: CreateSessionRequest
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void createRequest_serializesRemoteSessionCorrectly(String mode) throws Exception {
+ var config = new SessionConfig().setRemoteSession(mode);
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertTrue(tree.has("remoteSession"), "Serialized JSON should contain 'remoteSession' field for mode: " + mode);
+ assertEquals(mode, tree.get("remoteSession").asText());
+ }
+
+ @Test
+ void createRequest_omitsRemoteSessionWhenNull() throws Exception {
+ var config = new SessionConfig();
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertFalse(tree.has("remoteSession"), "Serialized JSON should omit 'remoteSession' when not set");
+ }
+
+ // =========================================================================
+ // JSON wire-format: ResumeSessionRequest
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void resumeRequest_serializesRemoteSessionCorrectly(String mode) throws Exception {
+ var config = new ResumeSessionConfig().setRemoteSession(mode);
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertTrue(tree.has("remoteSession"), "Serialized JSON should contain 'remoteSession' field for mode: " + mode);
+ assertEquals(mode, tree.get("remoteSession").asText());
+ }
+
+ @Test
+ void resumeRequest_omitsRemoteSessionWhenNull() throws Exception {
+ var config = new ResumeSessionConfig();
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertFalse(tree.has("remoteSession"), "Serialized JSON should omit 'remoteSession' when not set");
+ }
+
+ // =========================================================================
+ // JSON round-trip: CreateSessionRequest
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void createRequest_roundTripsRemoteSession(String mode) throws Exception {
+ var config = new SessionConfig().setRemoteSession(mode);
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+
+ String json = MAPPER.writeValueAsString(request);
+ CreateSessionRequest deserialized = MAPPER.readValue(json, CreateSessionRequest.class);
+ assertEquals(mode, deserialized.getRemoteSession());
+ }
+
+ @Test
+ void createRequest_roundTripsNullRemoteSession() throws Exception {
+ var config = new SessionConfig();
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+
+ String json = MAPPER.writeValueAsString(request);
+ CreateSessionRequest deserialized = MAPPER.readValue(json, CreateSessionRequest.class);
+ assertNull(deserialized.getRemoteSession());
+ }
+
+ // =========================================================================
+ // JSON round-trip: ResumeSessionRequest
+ // =========================================================================
+
+ @ParameterizedTest
+ @ValueSource(strings = {"off", "export", "on"})
+ void resumeRequest_roundTripsRemoteSession(String mode) throws Exception {
+ var config = new ResumeSessionConfig().setRemoteSession(mode);
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+
+ String json = MAPPER.writeValueAsString(request);
+ ResumeSessionRequest deserialized = MAPPER.readValue(json, ResumeSessionRequest.class);
+ assertEquals(mode, deserialized.getRemoteSession());
+ }
+
+ // =========================================================================
+ // Fluent chaining: remoteSession composes with other config options
+ // =========================================================================
+
+ @Test
+ void sessionConfig_remoteSessionComposesWithOtherFields() {
+ var config = new SessionConfig().setModel("gpt-4o").setRemoteSession("export").setReasoningEffort("high");
+
+ assertEquals("gpt-4o", config.getModel());
+ assertEquals("export", config.getRemoteSession());
+ assertEquals("high", config.getReasoningEffort());
+ }
+
+ @Test
+ void resumeSessionConfig_remoteSessionComposesWithOtherFields() {
+ var config = new ResumeSessionConfig().setModel("gpt-4o").setRemoteSession("on").setReasoningEffort("medium");
+
+ assertEquals("gpt-4o", config.getModel());
+ assertEquals("on", config.getRemoteSession());
+ assertEquals("medium", config.getReasoningEffort());
+ }
+
+ @Test
+ void createRequest_remoteSessionDoesNotAffectOtherFields() throws Exception {
+ var config = new SessionConfig().setModel("gpt-4o").setRemoteSession("export").setReasoningEffort("high")
+ .setGitHubToken("ghp_test");
+
+ CreateSessionRequest request = SessionRequestBuilder.buildCreateRequest(config);
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertEquals("export", tree.get("remoteSession").asText());
+ assertEquals("gpt-4o", tree.get("model").asText());
+ assertEquals("high", tree.get("reasoningEffort").asText());
+ assertEquals("ghp_test", tree.get("gitHubToken").asText());
+ }
+
+ @Test
+ void resumeRequest_remoteSessionDoesNotAffectOtherFields() throws Exception {
+ var config = new ResumeSessionConfig().setModel("gpt-4o").setRemoteSession("on").setReasoningEffort("medium")
+ .setGitHubToken("ghp_test");
+
+ ResumeSessionRequest request = SessionRequestBuilder.buildResumeRequest("sid-1", config);
+ String json = MAPPER.writeValueAsString(request);
+ JsonNode tree = MAPPER.readTree(json);
+
+ assertEquals("on", tree.get("remoteSession").asText());
+ assertEquals("gpt-4o", tree.get("model").asText());
+ assertEquals("medium", tree.get("reasoningEffort").asText());
+ assertEquals("ghp_test", tree.get("gitHubToken").asText());
+ }
+
+ // =========================================================================
+ // Deserialization from raw JSON (simulates CLI response ingestion)
+ // =========================================================================
+
+ @Test
+ void createRequest_deserializesRemoteSessionFromRawJson() throws Exception {
+ String json = """
+ {
+ "sessionId": "test-session",
+ "remoteSession": "export",
+ "model": "gpt-4o"
+ }
+ """;
+ CreateSessionRequest request = MAPPER.readValue(json, CreateSessionRequest.class);
+ assertEquals("export", request.getRemoteSession());
+ assertEquals("test-session", request.getSessionId());
+ }
+
+ @Test
+ void resumeRequest_deserializesRemoteSessionFromRawJson() throws Exception {
+ String json = """
+ {
+ "sessionId": "resume-session",
+ "remoteSession": "on",
+ "model": "gpt-4o"
+ }
+ """;
+ ResumeSessionRequest request = MAPPER.readValue(json, ResumeSessionRequest.class);
+ assertEquals("on", request.getRemoteSession());
+ assertEquals("resume-session", request.getSessionId());
+ }
+
+ @Test
+ void createRequest_deserializesWithMissingRemoteSession() throws Exception {
+ String json = """
+ {
+ "sessionId": "test-session",
+ "model": "gpt-4o"
+ }
+ """;
+ CreateSessionRequest request = MAPPER.readValue(json, CreateSessionRequest.class);
+ assertNull(request.getRemoteSession());
+ }
+
+ // =========================================================================
+ // Handoff event with remoteSessionId (remote session lifecycle)
+ // =========================================================================
+
+ @Test
+ void handoffEvent_withRemoteSourceType_containsRemoteSessionId() throws Exception {
+ String json = """
+ {
+ "type": "session.handoff",
+ "data": {
+ "handoffTime": "2025-06-01T12:00:00Z",
+ "sourceType": "remote",
+ "remoteSessionId": "remote-sess-42",
+ "summary": "Session exported for remote execution",
+ "repository": {
+ "owner": "test-org",
+ "name": "test-repo",
+ "branch": "feature-branch"
+ }
+ }
+ }
+ """;
+
+ var event = (com.github.copilot.sdk.generated.SessionHandoffEvent) MAPPER.readValue(json,
+ com.github.copilot.sdk.generated.SessionEvent.class);
+ assertNotNull(event);
+ var data = event.getData();
+ assertEquals("remote-sess-42", data.remoteSessionId());
+ assertEquals(com.github.copilot.sdk.generated.HandoffSourceType.REMOTE, data.sourceType());
+ assertEquals("Session exported for remote execution", data.summary());
+ assertEquals("test-org", data.repository().owner());
+ assertEquals("test-repo", data.repository().name());
+ assertEquals("feature-branch", data.repository().branch());
+ }
+
+ @Test
+ void handoffEvent_withoutRemoteSessionId_fieldIsNull() throws Exception {
+ String json = """
+ {
+ "type": "session.handoff",
+ "data": {
+ "targetAgent": "local-agent"
+ }
+ }
+ """;
+
+ var event = (com.github.copilot.sdk.generated.SessionHandoffEvent) MAPPER.readValue(json,
+ com.github.copilot.sdk.generated.SessionEvent.class);
+ assertNotNull(event);
+ assertNull(event.getData().remoteSessionId());
+ }
+}
diff --git a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java b/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java
index 89943e3758..10393abe09 100644
--- a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java
+++ b/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java
@@ -71,7 +71,7 @@ void serverRpc_sessions_fork_invokes_correct_method() {
var stub = new StubCaller();
var server = new ServerRpc(stub);
- var params = new SessionsForkParams("parent-session-id", null);
+ var params = new SessionsForkParams("parent-session-id", null, null);
server.sessions.fork(params);
assertEquals(1, stub.calls.size());
@@ -657,7 +657,7 @@ void serverRpc_sessionFs_setProvider_params_record() {
@Test
void sessionsForkParams_record() {
- var params = new SessionsForkParams("parent-id", "event-123");
+ var params = new SessionsForkParams("parent-id", "event-123", null);
assertEquals("parent-id", params.sessionId());
assertEquals("event-123", params.toEventId());
}
diff --git a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java b/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java
index 48ade8ce11..50e65d3779 100644
--- a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java
+++ b/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java
@@ -67,7 +67,7 @@ void toolsListParams_record() {
@Test
void sessionsForkParams_record() {
- var params = new SessionsForkParams("sess-1", "event-abc");
+ var params = new SessionsForkParams("sess-1", "event-abc", null);
assertEquals("sess-1", params.sessionId());
assertEquals("event-abc", params.toEventId());
}
@@ -795,7 +795,7 @@ void sessionSkillsListResult_nested() {
@Test
void sessionSkillsReloadResult_empty() {
- assertNotNull(new SessionSkillsReloadResult());
+ assertNotNull(new SessionSkillsReloadResult(null, null));
}
@Test
@@ -863,7 +863,7 @@ void sessionWorkspaceReadFileResult_record() {
@Test
void sessionsForkResult_record() {
- var result = new SessionsForkResult("forked-sess-id");
+ var result = new SessionsForkResult("forked-sess-id", null);
assertEquals("forked-sess-id", result.sessionId());
}
@@ -917,8 +917,8 @@ void modelsListResult_nested() {
var limits = new ModelCapabilitiesLimits(100000L, 8192L, 128000L, null);
var capabilities = new ModelCapabilities(supports, limits);
var policy = new ModelPolicy("active", null);
- var billing = new ModelBilling(1.0);
- var modelItem = new Model("gpt-5", "GPT-5", capabilities, policy, billing, null, null);
+ var billing = new ModelBilling(1.0, null);
+ var modelItem = new Model("gpt-5", "GPT-5", capabilities, policy, billing, null, null, null, null);
var result = new ModelsListResult(List.of(modelItem));
assertEquals(1, result.models().size());
From a8c5fa368e1809fbee88131505fcb5b4dad2c0c5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 15 May 2026 21:22:41 +0000
Subject: [PATCH 13/51] Regenerate codegen output
Auto-committed by codegen-check workflow.
---
.../copilot/sdk/generated/AssistantUsageApiEndpoint.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
index e69e4ef868..bbcd619fbb 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
@@ -17,13 +17,13 @@
@javax.annotation.processing.Generated("copilot-sdk-codegen")
public enum AssistantUsageApiEndpoint {
/** The {@code /chat/completions} variant. */
- CHAT_COMPLETIONS("/chat/completions"),
+ /CHAT/COMPLETIONS("/chat/completions"),
/** The {@code /v1/messages} variant. */
- V1_MESSAGES("/v1/messages"),
+ /V1/MESSAGES("/v1/messages"),
/** The {@code /responses} variant. */
- RESPONSES("/responses"),
+ /RESPONSES("/responses"),
/** The {@code ws:/responses} variant. */
- WS_RESPONSES("ws:/responses");
+ WS:/RESPONSES("ws:/responses");
private final String value;
AssistantUsageApiEndpoint(String value) { this.value = value; }
From d2ea79ac6524ff51db2d880688a069629de9bba3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 22:06:39 +0000
Subject: [PATCH 14/51] Open SDK packages for Jackson reflection in JPMS
descriptor
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
src/main/java/module-info.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java
index b5c6c87ace..d912fb420f 100644
--- a/src/main/java/module-info.java
+++ b/src/main/java/module-info.java
@@ -19,4 +19,8 @@
exports com.github.copilot.sdk.generated;
exports com.github.copilot.sdk.generated.rpc;
exports com.github.copilot.sdk.json;
+
+ opens com.github.copilot.sdk to com.fasterxml.jackson.databind;
+ opens com.github.copilot.sdk.generated to com.fasterxml.jackson.databind;
+ opens com.github.copilot.sdk.json to com.fasterxml.jackson.databind;
}
From 5c5a64db328a847051ab361efa5b38d71a9bab4f Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 15 May 2026 22:56:48 +0000
Subject: [PATCH 15/51] Merge main (#204), fix codegen toEnumConstant for
slash/colon chars, regenerate
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
scripts/codegen/java.ts | 2 +-
.../copilot/sdk/generated/AssistantUsageApiEndpoint.java | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/scripts/codegen/java.ts b/scripts/codegen/java.ts
index 909fe296c6..0a96ab9f14 100644
--- a/scripts/codegen/java.ts
+++ b/scripts/codegen/java.ts
@@ -43,7 +43,7 @@ function toCamelCase(name: string): string {
}
function toEnumConstant(value: string): string {
- return value.toUpperCase().replace(/[-. ]/g, "_");
+ return value.toUpperCase().replace(/[-. /:]/g, "_").replace(/^_+/, "").replace(/_+/g, "_");
}
// ── Schema path resolution ───────────────────────────────────────────────────
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
index bbcd619fbb..e69e4ef868 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java
@@ -17,13 +17,13 @@
@javax.annotation.processing.Generated("copilot-sdk-codegen")
public enum AssistantUsageApiEndpoint {
/** The {@code /chat/completions} variant. */
- /CHAT/COMPLETIONS("/chat/completions"),
+ CHAT_COMPLETIONS("/chat/completions"),
/** The {@code /v1/messages} variant. */
- /V1/MESSAGES("/v1/messages"),
+ V1_MESSAGES("/v1/messages"),
/** The {@code /responses} variant. */
- /RESPONSES("/responses"),
+ RESPONSES("/responses"),
/** The {@code ws:/responses} variant. */
- WS:/RESPONSES("ws:/responses");
+ WS_RESPONSES("ws:/responses");
private final String value;
AssistantUsageApiEndpoint(String value) { this.value = value; }
From aa768a8a130e3b1bad67568398c0e9424db5a2e7 Mon Sep 17 00:00:00 2001
From: Ed Burns
Date: Fri, 15 May 2026 17:17:17 -0700
Subject: [PATCH 16/51] Fix: Ensure dependencies label on PRs before
codegen-agentic-fix pushes
Fixes https://github.com/github/copilot-sdk-java/issues/199
The codegen-agentic-fix workflow's push-to-pull-request-branch safe-output
requires the target PR to have the `dependencies` label. Two gaps allowed
PRs to reach the agentic fix without this label:
1. update-copilot-dependency.yml: When the PR branch already exists from a
prior run, the workflow reused it without adding the label. Now calls
`gh pr edit --add-label dependencies` in that path.
2. codegen-check.yml: When triggering the agentic fix from any PR that
touches codegen paths, the PR might not have the label (e.g., a manual
PR or one created before the fix). Now ensures the label is present
before dispatching codegen-agentic-fix.lock.yml.
---
.github/workflows/codegen-check.yml | 3 +++
.github/workflows/update-copilot-dependency.yml | 1 +
2 files changed, 4 insertions(+)
diff --git a/.github/workflows/codegen-check.yml b/.github/workflows/codegen-check.yml
index b6f161d852..95e9365782 100644
--- a/.github/workflows/codegen-check.yml
+++ b/.github/workflows/codegen-check.yml
@@ -128,6 +128,9 @@ jobs:
run: |
ERROR_SUMMARY=$(cat /tmp/error-summary.txt)
+ # Ensure PR has dependencies label (required by codegen-agentic-fix safe-output)
+ gh pr edit "$PR_NUMBER" --add-label dependencies
+
gh workflow run codegen-agentic-fix.lock.yml \
-f branch="$BRANCH" \
-f pr_number="$PR_NUMBER" \
diff --git a/.github/workflows/update-copilot-dependency.yml b/.github/workflows/update-copilot-dependency.yml
index 854661d5bd..d29da6acb7 100644
--- a/.github/workflows/update-copilot-dependency.yml
+++ b/.github/workflows/update-copilot-dependency.yml
@@ -147,6 +147,7 @@ jobs:
if gh pr view "$BRANCH" >/dev/null 2>&1; then
echo "Pull request for branch '$BRANCH' already exists; updated branch only."
PR_NUMBER=$(gh pr view "$BRANCH" --json number --jq .number)
+ gh pr edit "$PR_NUMBER" --add-label dependencies
else
PR_NUMBER=$(gh pr create \
--title "Update @github/copilot to $VERSION" \
From a002e4256ad6d6fa41aff6f2f2e79955949f0148 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Sat, 16 May 2026 00:23:56 +0000
Subject: [PATCH 17/51] docs: update version references to 1.0.0-beta-java.4
---
CHANGELOG.md | 8 ++++++--
README.md | 6 +++---
jbang-example.java | 2 +-
src/site/markdown/cookbook/error-handling.md | 14 +++++++-------
src/site/markdown/cookbook/managing-local-files.md | 4 ++--
src/site/markdown/cookbook/multiple-sessions.md | 4 ++--
src/site/markdown/cookbook/persisting-sessions.md | 6 +++---
src/site/markdown/cookbook/pr-visualization.md | 2 +-
8 files changed, 25 insertions(+), 21 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5eb0397d56..8e174dd216 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,8 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [Unreleased]
-> **Reference implementation sync:** [`github/copilot-sdk@4a0437b`](https://github.com/github/copilot-sdk/commit/4a0437bb03a0b60a1867f14ae8e3faf053afa5aa)
+> **Reference implementation sync:** [`github/copilot-sdk@e20f5be`](https://github.com/github/copilot-sdk/commit/e20f5bef125860accb30c60d1b35109371a77f16)
+
+## [1.0.0-beta-java.4] - 2026-05-16
+> **Reference implementation sync:** [`github/copilot-sdk@e20f5be`](https://github.com/github/copilot-sdk/commit/e20f5bef125860accb30c60d1b35109371a77f16)
## [1.0.0-beta-java.3] - 2026-05-11
> **Reference implementation sync:** [`github/copilot-sdk@4a0437b`](https://github.com/github/copilot-sdk/commit/4a0437bb03a0b60a1867f14ae8e3faf053afa5aa)
@@ -506,7 +509,8 @@ New types: `GetForegroundSessionResponse`, `SetForegroundSessionResponse`
- Pre-commit hook for Spotless code formatting
- Comprehensive API documentation
-[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.3...HEAD
+[Unreleased]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.4...HEAD
+[1.0.0-beta-java.4]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.3...v1.0.0-beta-java.4
[1.0.0-beta-java.3]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.2...v1.0.0-beta-java.3
[1.0.0-beta-java.2]: https://github.com/github/copilot-sdk-java/compare/v1.0.0-beta-java.1...v1.0.0-beta-java.2
[1.0.0-beta-java.1]: https://github.com/github/copilot-sdk-java/compare/v0.3.0-java.2...v1.0.0-beta-java.1
diff --git a/README.md b/README.md
index c1aac6a5ab..f2b342dfc3 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ Java SDK for programmatic control of GitHub Copilot CLI, enabling you to build A
com.githubcopilot-sdk-java
- 1.0.0-beta-java.3
+ 1.0.0-beta-java.4
```
@@ -53,14 +53,14 @@ Snapshot builds of the next development version are published to Maven Central S
com.githubcopilot-sdk-java
- 1.0.0-beta-java.3-SNAPSHOT
+ 1.0.0-beta-java.5-SNAPSHOT
```
### Gradle
```groovy
-implementation 'com.github:copilot-sdk-java:1.0.0-beta-java.3'
+implementation 'com.github:copilot-sdk-java:1.0.0-beta-java.4'
```
## Quick Start
diff --git a/jbang-example.java b/jbang-example.java
index 78763bea9c..1c41679cdf 100644
--- a/jbang-example.java
+++ b/jbang-example.java
@@ -1,5 +1,5 @@
///usr/bin/env jbang "$0" "$@" ; exit $?
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.SessionUsageInfoEvent;
diff --git a/src/site/markdown/cookbook/error-handling.md b/src/site/markdown/cookbook/error-handling.md
index 42c9e3a9c6..963b8b0933 100644
--- a/src/site/markdown/cookbook/error-handling.md
+++ b/src/site/markdown/cookbook/error-handling.md
@@ -30,7 +30,7 @@ jbang BasicErrorHandling.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -64,7 +64,7 @@ public class BasicErrorHandling {
## Handling specific error types
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import java.util.concurrent.ExecutionException;
@@ -99,7 +99,7 @@ public class SpecificErrorHandling {
## Timeout handling
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotSession;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -130,7 +130,7 @@ public class TimeoutHandling {
## Aborting a request
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotSession;
import com.github.copilot.sdk.json.MessageOptions;
import java.util.concurrent.Executors;
@@ -162,7 +162,7 @@ public class AbortRequest {
## Graceful shutdown
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
public class GracefulShutdown {
@@ -192,7 +192,7 @@ public class GracefulShutdown {
## Try-with-resources pattern
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -224,7 +224,7 @@ public class TryWithResources {
## Handling tool errors
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
diff --git a/src/site/markdown/cookbook/managing-local-files.md b/src/site/markdown/cookbook/managing-local-files.md
index 788a712b60..2a7b5540f9 100644
--- a/src/site/markdown/cookbook/managing-local-files.md
+++ b/src/site/markdown/cookbook/managing-local-files.md
@@ -34,7 +34,7 @@ jbang ManagingLocalFiles.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.SessionIdleEvent;
@@ -161,7 +161,7 @@ session.send(new MessageOptions().setPrompt(prompt));
## Interactive file organization
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import java.io.BufferedReader;
import java.io.InputStreamReader;
diff --git a/src/site/markdown/cookbook/multiple-sessions.md b/src/site/markdown/cookbook/multiple-sessions.md
index c6f9666779..84da5a2556 100644
--- a/src/site/markdown/cookbook/multiple-sessions.md
+++ b/src/site/markdown/cookbook/multiple-sessions.md
@@ -30,7 +30,7 @@ jbang MultipleSessions.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -123,7 +123,7 @@ try {
## Managing session lifecycle with CompletableFuture
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import java.util.concurrent.CompletableFuture;
import java.util.List;
diff --git a/src/site/markdown/cookbook/persisting-sessions.md b/src/site/markdown/cookbook/persisting-sessions.md
index 6c9440a510..ef80fd3d09 100644
--- a/src/site/markdown/cookbook/persisting-sessions.md
+++ b/src/site/markdown/cookbook/persisting-sessions.md
@@ -30,7 +30,7 @@ jbang PersistingSessions.java
**Code:**
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.json.MessageOptions;
@@ -127,7 +127,7 @@ public class DeleteSession {
## Getting session history
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.UserMessageEvent;
@@ -162,7 +162,7 @@ public class SessionHistory {
## Complete example with session management
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import java.util.Scanner;
public class SessionManager {
diff --git a/src/site/markdown/cookbook/pr-visualization.md b/src/site/markdown/cookbook/pr-visualization.md
index d193e4487e..1036bb0f7d 100644
--- a/src/site/markdown/cookbook/pr-visualization.md
+++ b/src/site/markdown/cookbook/pr-visualization.md
@@ -34,7 +34,7 @@ jbang PRVisualization.java github/copilot-sdk
## Full example: PRVisualization.java
```java
-//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.3
+//DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.ToolExecutionStartEvent;
From 09f58de9a106043e44df9f60124b59527063da42 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Sat, 16 May 2026 00:24:21 +0000
Subject: [PATCH 18/51] [maven-release-plugin] prepare release
v1.0.0-beta-java.4
---
pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 80130ca280..a925a81cfd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.githubcopilot-sdk-java
- 1.0.0-beta-java.4-SNAPSHOT
+ 1.0.0-beta-java.4jarGitHub Copilot SDK :: Java
@@ -33,7 +33,7 @@
scm:git:https://github.com/github/copilot-sdk-java.gitscm:git:https://github.com/github/copilot-sdk-java.githttps://github.com/github/copilot-sdk-java
- HEAD
+ v1.0.0-beta-java.4
From 8809949a155d12fbab11d0eda4994b335404813f Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Sat, 16 May 2026 00:24:24 +0000
Subject: [PATCH 19/51] [maven-release-plugin] prepare for next development
iteration
---
pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index a925a81cfd..be73738041 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
com.githubcopilot-sdk-java
- 1.0.0-beta-java.4
+ 1.0.0-beta-java.5-SNAPSHOTjarGitHub Copilot SDK :: Java
@@ -33,7 +33,7 @@
scm:git:https://github.com/github/copilot-sdk-java.gitscm:git:https://github.com/github/copilot-sdk-java.githttps://github.com/github/copilot-sdk-java
- v1.0.0-beta-java.4
+ HEAD
From 8d357f4d4b0039354d0e0d9e980d2f42041fdf0c Mon Sep 17 00:00:00 2001
From: brunoborges <129743+brunoborges@users.noreply.github.com>
Date: Sun, 17 May 2026 00:52:28 +0000
Subject: [PATCH 20/51] Update JaCoCo coverage badge
---
.github/badges/jacoco.svg | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/badges/jacoco.svg b/.github/badges/jacoco.svg
index b90843bcc4..56a1a015fa 100644
--- a/.github/badges/jacoco.svg
+++ b/.github/badges/jacoco.svg
@@ -12,7 +12,7 @@
coveragecoverage
- 81.9%
- 81.9%
+ 80.2%
+ 80.2%
From 3df4e75e1c18798852d82e9a3a01da59426089cf Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 18 May 2026 17:14:00 +0000
Subject: [PATCH 21/51] Initial plan
From d505fc18e4890970fd36c8bc4c9a2492d43a159a Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 18 May 2026 17:14:00 +0000
Subject: [PATCH 22/51] Initial plan
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
.../copilot/sdk/SessionRequestBuilder.java | 1 +
.../copilot/sdk/json/CloudSessionOptions.java | 43 +++++++++
.../sdk/json/CloudSessionRepository.java | 89 +++++++++++++++++++
.../sdk/json/CreateSessionRequest.java | 13 +++
.../copilot/sdk/json/CustomAgentConfig.java | 27 ++++++
.../sdk/json/PostToolUseHookInput.java | 24 +++++
.../copilot/sdk/json/PreToolUseHookInput.java | 24 +++++
.../copilot/sdk/json/SessionConfig.java | 31 +++++++
.../copilot/sdk/json/SessionEndHookInput.java | 5 +-
.../sdk/json/SessionStartHookInput.java | 5 +-
.../json/UserPromptSubmittedHookInput.java | 5 +-
src/site/markdown/advanced.md | 22 +++++
src/site/markdown/hooks.md | 11 ++-
13 files changed, 294 insertions(+), 6 deletions(-)
create mode 100644 src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java
create mode 100644 src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java
diff --git a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java b/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
index 52bfb3337f..0cdc4f942b 100644
--- a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
+++ b/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java
@@ -152,6 +152,7 @@ static CreateSessionRequest buildCreateRequest(SessionConfig config, String sess
}
request.setGitHubToken(config.getGitHubToken());
request.setRemoteSession(config.getRemoteSession());
+ request.setCloud(config.getCloud());
return request;
}
diff --git a/src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java b/src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java
new file mode 100644
index 0000000000..897d07edaf
--- /dev/null
+++ b/src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java
@@ -0,0 +1,43 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+package com.github.copilot.sdk.json;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/**
+ * Options for creating a remote session in the cloud.
+ *
+ * @since 1.5.0
+ */
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class CloudSessionOptions {
+
+ @JsonProperty("repository")
+ private CloudSessionRepository repository;
+
+ /**
+ * Gets the optional GitHub repository metadata to associate with the cloud
+ * session.
+ *
+ * @return the repository metadata, or {@code null} if not set
+ */
+ public CloudSessionRepository getRepository() {
+ return repository;
+ }
+
+ /**
+ * Sets the optional GitHub repository metadata to associate with the cloud
+ * session.
+ *
+ * @param repository
+ * the repository metadata
+ * @return this instance for method chaining
+ */
+ public CloudSessionOptions setRepository(CloudSessionRepository repository) {
+ this.repository = repository;
+ return this;
+ }
+}
diff --git a/src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java b/src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java
new file mode 100644
index 0000000000..5806c22cd7
--- /dev/null
+++ b/src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java
@@ -0,0 +1,89 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+package com.github.copilot.sdk.json;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/**
+ * GitHub repository metadata to associate with a cloud session.
+ *
+ * @since 1.5.0
+ */
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class CloudSessionRepository {
+
+ @JsonProperty("owner")
+ private String owner;
+
+ @JsonProperty("name")
+ private String name;
+
+ @JsonProperty("branch")
+ private String branch;
+
+ /**
+ * Gets the repository owner.
+ *
+ * @return the repository owner
+ */
+ public String getOwner() {
+ return owner;
+ }
+
+ /**
+ * Sets the repository owner.
+ *
+ * @param owner
+ * the repository owner
+ * @return this instance for method chaining
+ */
+ public CloudSessionRepository setOwner(String owner) {
+ this.owner = owner;
+ return this;
+ }
+
+ /**
+ * Gets the repository name.
+ *
+ * @return the repository name
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the repository name.
+ *
+ * @param name
+ * the repository name
+ * @return this instance for method chaining
+ */
+ public CloudSessionRepository setName(String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * Gets the optional branch name.
+ *
+ * @return the branch name, or {@code null} if not set
+ */
+ public String getBranch() {
+ return branch;
+ }
+
+ /**
+ * Sets the optional branch name.
+ *
+ * @param branch
+ * the branch name
+ * @return this instance for method chaining
+ */
+ public CloudSessionRepository setBranch(String branch) {
+ this.branch = branch;
+ return this;
+ }
+}
diff --git a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java b/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
index d6bcc7b2b7..881840a736 100644
--- a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
+++ b/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java
@@ -127,6 +127,9 @@ public final class CreateSessionRequest {
@JsonProperty("remoteSession")
private String remoteSession;
+ @JsonProperty("cloud")
+ private CloudSessionOptions cloud;
+
/** Gets the model name. @return the model */
public String getModel() {
return model;
@@ -543,4 +546,14 @@ public String getRemoteSession() {
public void setRemoteSession(String remoteSession) {
this.remoteSession = remoteSession;
}
+
+ /** Gets the cloud session options. @return the cloud session options */
+ public CloudSessionOptions getCloud() {
+ return cloud;
+ }
+
+ /** Sets the cloud session options. @param cloud the cloud session options */
+ public void setCloud(CloudSessionOptions cloud) {
+ this.cloud = cloud;
+ }
}
diff --git a/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java b/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java
index bb9520055e..cb2dbf452b 100644
--- a/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java
+++ b/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java
@@ -60,6 +60,9 @@ public class CustomAgentConfig {
@JsonProperty("skills")
private List skills;
+ @JsonProperty("model")
+ private String model;
+
/**
* Gets the unique identifier name for this agent.
*
@@ -255,4 +258,28 @@ public CustomAgentConfig setSkills(List skills) {
this.skills = skills;
return this;
}
+
+ /**
+ * Gets the model identifier for this agent.
+ *
+ * @return the model identifier, or {@code null} if not set
+ */
+ public String getModel() {
+ return model;
+ }
+
+ /**
+ * Sets the model identifier for this agent.
+ *
+ * When set, the runtime will attempt to use this model for the agent, falling
+ * back to the parent session model if unavailable.
+ *
+ * @param model
+ * the model identifier (e.g., "claude-haiku-4.5")
+ * @return this config for method chaining
+ */
+ public CustomAgentConfig setModel(String model) {
+ this.model = model;
+ return this;
+ }
}
diff --git a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java b/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java
index 18e9201b54..4ac3985064 100644
--- a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java
+++ b/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java
@@ -16,6 +16,9 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public class PostToolUseHookInput {
+ @JsonProperty("sessionId")
+ private String sessionId;
+
@JsonProperty("timestamp")
private long timestamp;
@@ -31,6 +34,27 @@ public class PostToolUseHookInput {
@JsonProperty("toolResult")
private JsonNode toolResult;
+ /**
+ * Gets the runtime session ID of the session that triggered the hook.
+ *
+ * @return the session ID
+ */
+ public String getSessionId() {
+ return sessionId;
+ }
+
+ /**
+ * Sets the runtime session ID of the session that triggered the hook.
+ *
+ * @param sessionId
+ * the session ID
+ * @return this instance for method chaining
+ */
+ public PostToolUseHookInput setSessionId(String sessionId) {
+ this.sessionId = sessionId;
+ return this;
+ }
+
/**
* Gets the timestamp of the hook invocation.
*
diff --git a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java b/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java
index 63785e98d3..6cbab78b7f 100644
--- a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java
+++ b/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java
@@ -16,6 +16,9 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public class PreToolUseHookInput {
+ @JsonProperty("sessionId")
+ private String sessionId;
+
@JsonProperty("timestamp")
private long timestamp;
@@ -28,6 +31,27 @@ public class PreToolUseHookInput {
@JsonProperty("toolArgs")
private JsonNode toolArgs;
+ /**
+ * Gets the runtime session ID of the session that triggered the hook.
+ *
+ * @return the session ID
+ */
+ public String getSessionId() {
+ return sessionId;
+ }
+
+ /**
+ * Sets the runtime session ID of the session that triggered the hook.
+ *
+ * @param sessionId
+ * the session ID
+ * @return this instance for method chaining
+ */
+ public PreToolUseHookInput setSessionId(String sessionId) {
+ this.sessionId = sessionId;
+ return this;
+ }
+
/**
* Gets the timestamp of the hook invocation.
*
diff --git a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java b/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
index f1a383402f..ddf06cca7f 100644
--- a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
+++ b/src/main/java/com/github/copilot/sdk/json/SessionConfig.java
@@ -72,6 +72,7 @@ public class SessionConfig {
private AutoModeSwitchHandler onAutoModeSwitch;
private String gitHubToken;
private String remoteSession;
+ private CloudSessionOptions cloud;
/**
* Gets the custom session ID.
@@ -979,6 +980,35 @@ public SessionConfig setRemoteSession(String remoteSession) {
return this;
}
+ /**
+ * Gets the cloud session options.
+ *
+ * When set, creates a remote session in the cloud instead of a local session.
+ * The optional repository is associated with the cloud session.
+ *
+ * @return the cloud session options, or {@code null} if not set
+ * @since 1.5.0
+ */
+ public CloudSessionOptions getCloud() {
+ return cloud;
+ }
+
+ /**
+ * Sets the cloud session options.
+ *
+ * When set, creates a remote session in the cloud instead of a local session.
+ * The optional repository is associated with the cloud session.
+ *
+ * @param cloud
+ * the cloud session options
+ * @return this config instance for method chaining
+ * @since 1.5.0
+ */
+ public SessionConfig setCloud(CloudSessionOptions cloud) {
+ this.cloud = cloud;
+ return this;
+ }
+
/**
* Creates a shallow clone of this {@code SessionConfig} instance.
*
@@ -1029,6 +1059,7 @@ public SessionConfig clone() {
copy.onAutoModeSwitch = this.onAutoModeSwitch;
copy.gitHubToken = this.gitHubToken;
copy.remoteSession = this.remoteSession;
+ copy.cloud = this.cloud;
return copy;
}
}
diff --git a/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java b/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java
index 79f63fbb93..0d3d3e2945 100644
--- a/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java
+++ b/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java
@@ -13,6 +13,8 @@
* This hook is invoked when a session ends, allowing you to perform cleanup or
* logging.
*
+ * @param sessionId
+ * the runtime session ID of the session that triggered the hook
* @param timestamp
* the timestamp in milliseconds since epoch when the session ended
* @param cwd
@@ -27,7 +29,8 @@
* @since 1.0.7
*/
@JsonIgnoreProperties(ignoreUnknown = true)
-public record SessionEndHookInput(@JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
+public record SessionEndHookInput(@JsonProperty("sessionId") String sessionId,
+ @JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
@JsonProperty("reason") String reason, @JsonProperty("finalMessage") String finalMessage,
@JsonProperty("error") String error) {
}
diff --git a/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java b/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java
index 2047175572..55bff3e262 100644
--- a/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java
+++ b/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java
@@ -13,6 +13,8 @@
* This hook is invoked when a session starts, allowing you to perform
* initialization or modify the session configuration.
*
+ * @param sessionId
+ * the runtime session ID of the session that triggered the hook
* @param timestamp
* the timestamp in milliseconds since epoch when the session started
* @param cwd
@@ -24,6 +26,7 @@
* @since 1.0.7
*/
@JsonIgnoreProperties(ignoreUnknown = true)
-public record SessionStartHookInput(@JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
+public record SessionStartHookInput(@JsonProperty("sessionId") String sessionId,
+ @JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
@JsonProperty("source") String source, @JsonProperty("initialPrompt") String initialPrompt) {
}
diff --git a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java b/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java
index bbfdf85bb3..2f3a0948df 100644
--- a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java
+++ b/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java
@@ -13,6 +13,8 @@
* This hook is invoked when the user submits a prompt, allowing you to
* intercept and modify the prompt before it is processed.
*
+ * @param sessionId
+ * the runtime session ID of the session that triggered the hook
* @param timestamp
* the timestamp in milliseconds since epoch when the prompt was
* submitted
@@ -23,6 +25,7 @@
* @since 1.0.7
*/
@JsonIgnoreProperties(ignoreUnknown = true)
-public record UserPromptSubmittedHookInput(@JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
+public record UserPromptSubmittedHookInput(@JsonProperty("sessionId") String sessionId,
+ @JsonProperty("timestamp") long timestamp, @JsonProperty("cwd") String cwd,
@JsonProperty("prompt") String prompt) {
}
diff --git a/src/site/markdown/advanced.md b/src/site/markdown/advanced.md
index 9b5d00c5ac..5f15d726b0 100644
--- a/src/site/markdown/advanced.md
+++ b/src/site/markdown/advanced.md
@@ -565,6 +565,8 @@ session.send("@code-reviewer Review src/Main.java").get();
| `tools` | List<String> | Tool names available to this agent |
| `mcpServers` | Map | MCP servers available to this agent |
| `infer` | Boolean | Whether the agent can be auto-selected based on context |
+| `skills` | List<String> | Skill names to preload into the agent's context |
+| `model` | String | Model identifier for this agent (e.g., "claude-haiku-4.5"); falls back to the parent session model if unavailable |
### Multiple Agents
@@ -1379,6 +1381,26 @@ try (var client = new CopilotClient(options)) {
- The session's working directory must be a GitHub repository
- This option is only used when the SDK spawns the CLI process; it is ignored when connecting to an external server via `setCliUrl()`
+### Cloud Sessions
+
+Cloud sessions create a remote session in the cloud instead of a local session. Optionally associate repository metadata with the cloud session:
+
+```java
+var cloudOptions = new CloudSessionOptions()
+ .setRepository(new CloudSessionRepository()
+ .setOwner("my-org")
+ .setName("my-repo")
+ .setBranch("main"));
+
+var session = client.createSession(
+ new SessionConfig()
+ .setOnPermissionRequest(PermissionHandler.APPROVE_ALL)
+ .setCloud(cloudOptions)
+).get();
+```
+
+See [CloudSessionOptions](apidocs/com/github/copilot/sdk/json/CloudSessionOptions.html) and [CloudSessionRepository](apidocs/com/github/copilot/sdk/json/CloudSessionRepository.html) Javadoc for details.
+
---
## Next Steps
diff --git a/src/site/markdown/hooks.md b/src/site/markdown/hooks.md
index 97c7468915..392f3fbf94 100644
--- a/src/site/markdown/hooks.md
+++ b/src/site/markdown/hooks.md
@@ -53,6 +53,7 @@ Called **before** a tool executes. Use this to:
| Field | Type | Description |
|-------|------|-------------|
+| `getSessionId()` | `String` | Runtime session ID of the session that triggered the hook |
| `getToolName()` | `String` | Name of the tool being called |
| `getToolArgs()` | `JsonNode` | Arguments passed to the tool |
| `getCwd()` | `String` | Current working directory |
@@ -130,6 +131,7 @@ Called **after** a tool executes. Use this to:
| Field | Type | Description |
|-------|------|-------------|
+| `getSessionId()` | `String` | Runtime session ID of the session that triggered the hook |
| `getToolName()` | `String` | Name of the tool that was called |
| `getToolArgs()` | `JsonNode` | Arguments that were passed |
| `getToolResult()` | `JsonNode` | Result from the tool |
@@ -187,8 +189,9 @@ Called when the user submits a prompt, before the LLM processes it. This is an o
| Field | Type | Description |
|-------|------|-------------|
+| `sessionId()` | `String` | Runtime session ID of the session that triggered the hook |
| `prompt()` | `String` | The user's prompt text |
-| `getTimestamp()` | `long` | Timestamp in milliseconds |
+| `timestamp()` | `long` | Timestamp in milliseconds |
### Output
@@ -221,8 +224,9 @@ Called when a session starts (either new or resumed).
| Field | Type | Description |
|-------|------|-------------|
+| `sessionId()` | `String` | Runtime session ID of the session that triggered the hook |
| `source()` | `String` | `"startup"`, `"resume"`, or `"new"` |
-| `getTimestamp()` | `long` | Timestamp in milliseconds |
+| `timestamp()` | `long` | Timestamp in milliseconds |
### Output
@@ -253,8 +257,9 @@ Called when a session ends.
| Field | Type | Description |
|-------|------|-------------|
+| `sessionId()` | `String` | Runtime session ID of the session that triggered the hook |
| `reason()` | `String` | Why the session ended |
-| `getTimestamp()` | `long` | Timestamp in milliseconds |
+| `timestamp()` | `long` | Timestamp in milliseconds |
### Output
From 86e0cd54a1e411a4e2b59149a87f6cdeb37027be Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 18 May 2026 17:41:40 +0000
Subject: [PATCH 23/51] Update .lastmerge to
f6c1adf8329ad4206e5ed2e8d12fb8082bc841a2, sync pom.xml CLI version, and
update scripts/codegen @github/copilot version
Co-authored-by: edburns <75821+edburns@users.noreply.github.com>
---
.lastmerge | 2 +-
pom.xml | 2 +-
scripts/codegen/package-lock.json | 78 ++++++++++---------------------
scripts/codegen/package.json | 2 +-
4 files changed, 27 insertions(+), 57 deletions(-)
diff --git a/.lastmerge b/.lastmerge
index 600b63a547..88ed2a9523 100644
--- a/.lastmerge
+++ b/.lastmerge
@@ -1 +1 @@
-e20f5bef125860accb30c60d1b35109371a77f16
+f6c1adf8329ad4206e5ed2e8d12fb8082bc841a2
diff --git a/pom.xml b/pom.xml
index be73738041..d251fbce6e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,7 +94,7 @@
reference-impl-sync workflow and deal with the subsequent
PR.
-->
- ^1.0.48
+ ^1.0.49-1
diff --git a/scripts/codegen/package-lock.json b/scripts/codegen/package-lock.json
index 36d7689a71..c1d610b39d 100644
--- a/scripts/codegen/package-lock.json
+++ b/scripts/codegen/package-lock.json
@@ -6,7 +6,7 @@
"": {
"name": "copilot-sdk-java-codegen",
"dependencies": {
- "@github/copilot": "^1.0.48",
+ "@github/copilot": "^1.0.49-1",
"json-schema": "^0.4.0",
"tsx": "^4.20.6"
}
@@ -428,26 +428,28 @@
}
},
"node_modules/@github/copilot": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot/-/copilot-1.0.48.tgz",
- "integrity": "sha512-U5SzyTEq376UU9A4Sd3TEKz+Y2nRUd90cLO4Hc1otaB8yFSy9Ur2UVGcI2/wCoodL3a39k6WbdgNzFxr0gWFRQ==",
+ "version": "1.0.49-3",
+ "resolved": "https://registry.npmjs.org/@github/copilot/-/copilot-1.0.49-3.tgz",
+ "integrity": "sha512-MoaUolkTfeDTeUpKjzLNZLyykdJmhW7xNEzSmM+zz9erZE0St1ACFz3TigJMM05r4L1cPR6j1TY37XfPExqdyg==",
"license": "SEE LICENSE IN LICENSE.md",
"bin": {
"copilot": "npm-loader.js"
},
"optionalDependencies": {
- "@github/copilot-darwin-arm64": "1.0.48",
- "@github/copilot-darwin-x64": "1.0.48",
- "@github/copilot-linux-arm64": "1.0.48",
- "@github/copilot-linux-x64": "1.0.48",
- "@github/copilot-win32-arm64": "1.0.48",
- "@github/copilot-win32-x64": "1.0.48"
+ "@github/copilot-darwin-arm64": "1.0.49-3",
+ "@github/copilot-darwin-x64": "1.0.49-3",
+ "@github/copilot-linux-arm64": "1.0.49-3",
+ "@github/copilot-linux-x64": "1.0.49-3",
+ "@github/copilot-linuxmusl-arm64": "1.0.49-3",
+ "@github/copilot-linuxmusl-x64": "1.0.49-3",
+ "@github/copilot-win32-arm64": "1.0.49-3",
+ "@github/copilot-win32-x64": "1.0.49-3"
}
},
"node_modules/@github/copilot-darwin-arm64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-darwin-arm64/-/copilot-darwin-arm64-1.0.48.tgz",
- "integrity": "sha512-82MLoMQwPVVFM8EYssihFxSEPUYtZADE8rMzQ3jG9HgRg2qjQSfnHQS1mKe64dlXswZUK/onw6/8kjnW5I4pPg==",
+ "version": "1.0.49-3",
+ "resolved": "https://registry.npmjs.org/@github/copilot-darwin-arm64/-/copilot-darwin-arm64-1.0.49-3.tgz",
+ "integrity": "sha512-z6WpgoT+aro2nuA2zGfpxsMPtGSS3ZNACXERjfBxBzEoVjTMJi8kD1tpHFIPPCcLfaLniIi01Q6rvxMmZC6iKw==",
"cpu": [
"arm64"
],
@@ -461,9 +463,9 @@
}
},
"node_modules/@github/copilot-darwin-x64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-darwin-x64/-/copilot-darwin-x64-1.0.48.tgz",
- "integrity": "sha512-1VQ5r5F0h8GwboXmZTcutqcJT+iCpPXAF27QqodmpKEvW9aYfG8g9X2kFJOzDZoX+SA3Uaka9qXdYKF2xT6Uog==",
+ "version": "1.0.49-3",
+ "resolved": "https://registry.npmjs.org/@github/copilot-darwin-x64/-/copilot-darwin-x64-1.0.49-3.tgz",
+ "integrity": "sha512-ox9zs0uaFroB5SujopKFMz6/1shs2JsI5eIx4Kb/gugDrwU+Y3VVJJLw+dbEElJjQOCsb33kD9n+MsV1T6dubA==",
"cpu": [
"x64"
],
@@ -477,9 +479,9 @@
}
},
"node_modules/@github/copilot-linux-arm64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-linux-arm64/-/copilot-linux-arm64-1.0.48.tgz",
- "integrity": "sha512-PmsGnb0DZlI+Bf53l9HM1PAHHkUcMyB4y8v/7tnC/jDOV5dGF124n0HnDNfJLOLiJGiQGodthIif6QtPaAxpeA==",
+ "version": "1.0.49-3",
+ "resolved": "https://registry.npmjs.org/@github/copilot-linux-arm64/-/copilot-linux-arm64-1.0.49-3.tgz",
+ "integrity": "sha512-1uZaRtTH5H8HcPWKiN7eWJHsmmaW+tq6Eaxdme95Dfup4G9hemZMDHfdTjPXjZ6xykuoVKqWgC6knlk71JTWxQ==",
"cpu": [
"arm64"
],
@@ -493,9 +495,9 @@
}
},
"node_modules/@github/copilot-linux-x64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-linux-x64/-/copilot-linux-x64-1.0.48.tgz",
- "integrity": "sha512-b2cc4euSlke9fYHXXsS2EL9UYbctN0h4lZvtAcKUDY+RCnpYAQOVBZK+c1R9dQrtsT6Z/yUv7PuFPSs8qdtc2Q==",
+ "version": "1.0.49-3",
+ "resolved": "https://registry.npmjs.org/@github/copilot-linux-x64/-/copilot-linux-x64-1.0.49-3.tgz",
+ "integrity": "sha512-OebfGDDFFn+KbiEbSHX8TvXRe77JeH1SBJyzle5QRSD/nBqNGEkNClRMGm8M5/cqyke6TbRP2XmmAQAApJmaQA==",
"cpu": [
"x64"
],
@@ -508,38 +510,6 @@
"copilot-linux-x64": "copilot"
}
},
- "node_modules/@github/copilot-win32-arm64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-win32-arm64/-/copilot-win32-arm64-1.0.48.tgz",
- "integrity": "sha512-VEEOwddtpJ3DTbXGhnK6K8im4ofl9m08q1m/K++sNvWV8wkkOSOQBTiPdyUsuU/TXAoFhb8tZMIJv+6NnMBtMw==",
- "cpu": [
- "arm64"
- ],
- "license": "SEE LICENSE IN LICENSE.md",
- "optional": true,
- "os": [
- "win32"
- ],
- "bin": {
- "copilot-win32-arm64": "copilot.exe"
- }
- },
- "node_modules/@github/copilot-win32-x64": {
- "version": "1.0.48",
- "resolved": "https://registry.npmjs.org/@github/copilot-win32-x64/-/copilot-win32-x64-1.0.48.tgz",
- "integrity": "sha512-93BzvXLPHTyy1gWBXQY/IWIHor4IAwZuuo7/obG80/Qa6U0WeaN9slz/FBJvrsgVNrrRfEID5Xm3At+S6Kj67Q==",
- "cpu": [
- "x64"
- ],
- "license": "SEE LICENSE IN LICENSE.md",
- "optional": true,
- "os": [
- "win32"
- ],
- "bin": {
- "copilot-win32-x64": "copilot.exe"
- }
- },
"node_modules/esbuild": {
"version": "0.27.7",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
diff --git a/scripts/codegen/package.json b/scripts/codegen/package.json
index 82454e774e..8726bacc12 100644
--- a/scripts/codegen/package.json
+++ b/scripts/codegen/package.json
@@ -7,7 +7,7 @@
"generate:java": "tsx java.ts"
},
"dependencies": {
- "@github/copilot": "^1.0.48",
+ "@github/copilot": "^1.0.49-1",
"json-schema": "^0.4.0",
"tsx": "^4.20.6"
}
From 9f71da83df4f194a855d9cb4ed316a13c081daae Mon Sep 17 00:00:00 2001
From: Ed Burns
Date: Mon, 18 May 2026 11:37:41 -0700
Subject: [PATCH 24/51] Drift management policy
---
.github/aw/actions-lock.json | 6 +-
.../workflows/reference-impl-sync.lock.yml | 214 +++++++++++-------
.github/workflows/reference-impl-sync.md | 2 +-
3 files changed, 135 insertions(+), 87 deletions(-)
diff --git a/.github/aw/actions-lock.json b/.github/aw/actions-lock.json
index 6a6fa53d9f..71291dd03b 100644
--- a/.github/aw/actions-lock.json
+++ b/.github/aw/actions-lock.json
@@ -40,10 +40,10 @@
"version": "v7.0.1",
"sha": "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
},
- "github/gh-aw-actions/setup@v0.71.5": {
+ "github/gh-aw-actions/setup@v0.74.4": {
"repo": "github/gh-aw-actions/setup",
- "version": "v0.71.5",
- "sha": "b8068426813005612b960b5ab0b8bd2c27142323"
+ "version": "v0.74.4",
+ "sha": "d3abfe96a194bce3a523ed2093ddedd5704cdf62"
},
"github/gh-aw/actions/setup@v0.51.6": {
"repo": "github/gh-aw/actions/setup",
diff --git a/.github/workflows/reference-impl-sync.lock.yml b/.github/workflows/reference-impl-sync.lock.yml
index 72ae7105b7..98fd0d0d0b 100644
--- a/.github/workflows/reference-impl-sync.lock.yml
+++ b/.github/workflows/reference-impl-sync.lock.yml
@@ -1,5 +1,5 @@
-# gh-aw-metadata: {"schema_version":"v3","frontmatter_hash":"54b1896209b363ceadbcb123b6c46dbbcc0118d9140313360c341b09d03bbb96","compiler_version":"v0.71.5","strict":true,"agent_id":"copilot"}
-# gh-aw-manifest: {"version":1,"secrets":["COPILOT_GITHUB_TOKEN","GH_AW_AGENT_TOKEN","GH_AW_GITHUB_MCP_SERVER_TOKEN","GH_AW_GITHUB_TOKEN","GITHUB_TOKEN"],"actions":[{"repo":"actions/checkout","sha":"de0fac2e4500dabe0009e67214ff5f5447ce83dd","version":"v6.0.2"},{"repo":"actions/download-artifact","sha":"3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c","version":"v8.0.1"},{"repo":"actions/github-script","sha":"373c709c69115d41ff229c7e5df9f8788daa9553","version":"v9"},{"repo":"actions/github-script","sha":"3a2844b7e9c422d3c10d287c895573f7108da1b3","version":"v9.0.0"},{"repo":"actions/setup-node","sha":"48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e","version":"v6.4.0"},{"repo":"actions/upload-artifact","sha":"043fb46d1a93c77aae656e7c1c64a875d1fc6a0a","version":"v7.0.1"},{"repo":"github/gh-aw-actions/setup","sha":"b8068426813005612b960b5ab0b8bd2c27142323","version":"v0.71.5"}],"containers":[{"image":"ghcr.io/github/gh-aw-firewall/agent:0.25.40","digest":"sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504","pinned_image":"ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504"},{"image":"ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40","digest":"sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280","pinned_image":"ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280"},{"image":"ghcr.io/github/gh-aw-firewall/squid:0.25.40","digest":"sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51","pinned_image":"ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51"},{"image":"ghcr.io/github/gh-aw-mcpg:v0.3.6","digest":"sha256:2bb8eef86006a4c5963c55616a9c51c32f27bfdecb023b8aa6f91f6718d9171c","pinned_image":"ghcr.io/github/gh-aw-mcpg:v0.3.6@sha256:2bb8eef86006a4c5963c55616a9c51c32f27bfdecb023b8aa6f91f6718d9171c"},{"image":"ghcr.io/github/github-mcp-server:v1.0.3","digest":"sha256:2ac27ef03461ef2b877031b838a7d1fd7f12b12d4ace7796d8cad91446d55959","pinned_image":"ghcr.io/github/github-mcp-server:v1.0.3@sha256:2ac27ef03461ef2b877031b838a7d1fd7f12b12d4ace7796d8cad91446d55959"},{"image":"node:lts-alpine","digest":"sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f","pinned_image":"node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f"}]}
+# gh-aw-metadata: {"schema_version":"v3","frontmatter_hash":"d3b88eb52d0d4007c7a64118dfa3866bcbba7589a38004bb5c47695bee9e7ac7","compiler_version":"v0.74.4","strict":true,"agent_id":"copilot"}
+# gh-aw-manifest: {"version":1,"secrets":["COPILOT_GITHUB_TOKEN","GH_AW_AGENT_TOKEN","GH_AW_GITHUB_MCP_SERVER_TOKEN","GH_AW_GITHUB_TOKEN","GITHUB_TOKEN"],"actions":[{"repo":"actions/checkout","sha":"de0fac2e4500dabe0009e67214ff5f5447ce83dd","version":"v6.0.2"},{"repo":"actions/download-artifact","sha":"3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c","version":"v8.0.1"},{"repo":"actions/github-script","sha":"373c709c69115d41ff229c7e5df9f8788daa9553","version":"v9"},{"repo":"actions/github-script","sha":"3a2844b7e9c422d3c10d287c895573f7108da1b3","version":"v9.0.0"},{"repo":"actions/setup-node","sha":"48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e","version":"v6.4.0"},{"repo":"actions/upload-artifact","sha":"043fb46d1a93c77aae656e7c1c64a875d1fc6a0a","version":"v7.0.1"},{"repo":"github/gh-aw-actions/setup","sha":"d3abfe96a194bce3a523ed2093ddedd5704cdf62","version":"v0.74.4"}],"containers":[{"image":"ghcr.io/github/gh-aw-firewall/agent:0.25.46"},{"image":"ghcr.io/github/gh-aw-firewall/api-proxy:0.25.46"},{"image":"ghcr.io/github/gh-aw-firewall/squid:0.25.46"},{"image":"ghcr.io/github/gh-aw-mcpg:v0.3.9","digest":"sha256:64828b42a4482f58fab16509d7f8f495a6d97c972a98a68aff20543531ac0388","pinned_image":"ghcr.io/github/gh-aw-mcpg:v0.3.9@sha256:64828b42a4482f58fab16509d7f8f495a6d97c972a98a68aff20543531ac0388"},{"image":"ghcr.io/github/github-mcp-server:v1.0.4"},{"image":"node:lts-alpine","digest":"sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f","pinned_image":"node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f"}]}
# ___ _ _
# / _ \ | | (_)
# | |_| | __ _ ___ _ __ | |_ _ ___
@@ -14,7 +14,7 @@
# \ /\ / (_) | | | | ( | | | | (_) \ V V /\__ \
# \/ \/ \___/|_| |_|\_\|_| |_|\___/ \_/\_/ |___/
#
-# This file was automatically generated by gh-aw (v0.71.5). DO NOT EDIT.
+# This file was automatically generated by gh-aw (v0.74.4). DO NOT EDIT.
#
# To update this file, edit the corresponding .md file and run:
# gh aw compile
@@ -39,21 +39,21 @@
# - actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
# - actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
# - actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
-# - github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+# - github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
#
# Container images used:
-# - ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504
-# - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280
-# - ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51
-# - ghcr.io/github/gh-aw-mcpg:v0.3.6@sha256:2bb8eef86006a4c5963c55616a9c51c32f27bfdecb023b8aa6f91f6718d9171c
-# - ghcr.io/github/github-mcp-server:v1.0.3@sha256:2ac27ef03461ef2b877031b838a7d1fd7f12b12d4ace7796d8cad91446d55959
+# - ghcr.io/github/gh-aw-firewall/agent:0.25.46
+# - ghcr.io/github/gh-aw-firewall/api-proxy:0.25.46
+# - ghcr.io/github/gh-aw-firewall/squid:0.25.46
+# - ghcr.io/github/gh-aw-mcpg:v0.3.9@sha256:64828b42a4482f58fab16509d7f8f495a6d97c972a98a68aff20543531ac0388
+# - ghcr.io/github/github-mcp-server:v1.0.4
# - node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f
name: "Reference Implementation Sync"
-"on":
+on:
schedule:
- - cron: "10 16 * * *"
- # Friendly format: daily (scattered)
+ - cron: "25 2 * * 5"
+ # Friendly format: weekly on friday (scattered)
workflow_dispatch:
inputs:
aw_context:
@@ -82,35 +82,38 @@ jobs:
lockdown_check_failed: ${{ steps.generate_aw_info.outputs.lockdown_check_failed == 'true' }}
model: ${{ steps.generate_aw_info.outputs.model }}
secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }}
+ setup-parent-span-id: ${{ steps.setup.outputs.parent-span-id || steps.setup.outputs.span-id }}
+ setup-span-id: ${{ steps.setup.outputs.span-id }}
setup-trace-id: ${{ steps.setup.outputs.trace-id }}
stale_lock_file_failed: ${{ steps.check-lock-file.outputs.stale_lock_file_failed == 'true' }}
steps:
- name: Setup Scripts
id: setup
- uses: github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+ uses: github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
with:
destination: ${{ runner.temp }}/gh-aw/actions
job-name: ${{ github.job }}
env:
GH_AW_SETUP_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_CURRENT_WORKFLOW_REF: ${{ github.repository }}/.github/workflows/reference-impl-sync.lock.yml@${{ github.ref }}
- GH_AW_INFO_VERSION: "1.0.40"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_ENGINE_ID: "copilot"
- name: Generate agentic run info
id: generate_aw_info
env:
GH_AW_INFO_ENGINE_ID: "copilot"
GH_AW_INFO_ENGINE_NAME: "GitHub Copilot CLI"
GH_AW_INFO_MODEL: ${{ vars.GH_AW_MODEL_AGENT_COPILOT || 'claude-sonnet-4.6' }}
- GH_AW_INFO_VERSION: "1.0.40"
- GH_AW_INFO_AGENT_VERSION: "1.0.40"
- GH_AW_INFO_CLI_VERSION: "v0.71.5"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_AGENT_VERSION: "1.0.48"
+ GH_AW_INFO_CLI_VERSION: "v0.74.4"
GH_AW_INFO_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_INFO_EXPERIMENTAL: "false"
GH_AW_INFO_SUPPORTS_TOOLS_ALLOWLIST: "true"
GH_AW_INFO_STAGED: "false"
GH_AW_INFO_ALLOWED_DOMAINS: '["defaults","github"]'
GH_AW_INFO_FIREWALL_ENABLED: "true"
- GH_AW_INFO_AWF_VERSION: "v0.25.40"
+ GH_AW_INFO_AWF_VERSION: "v0.25.46"
GH_AW_INFO_AWMG_VERSION: ""
GH_AW_INFO_FIREWALL_TYPE: "squid"
GH_AW_COMPILED_STRICT: "true"
@@ -162,7 +165,7 @@ jobs:
- name: Check compile-agentic version
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
- GH_AW_COMPILED_VERSION: "v0.71.5"
+ GH_AW_COMPILED_VERSION: "v0.74.4"
with:
script: |
const { setupGlobals } = require('${{ runner.temp }}/gh-aw/actions/setup_globals.cjs');
@@ -173,11 +176,11 @@ jobs:
env:
GH_AW_PROMPT: /tmp/gh-aw/aw-prompts/prompt.txt
GH_AW_SAFE_OUTPUTS: ${{ runner.temp }}/gh-aw/safeoutputs/outputs.jsonl
+ GH_AW_EXPR_1A3A194A: ${{ github.event.discussion.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'discussion' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_463A214A: ${{ github.event.pull_request.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'pull_request' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_802A9F6A: ${{ github.event.issue.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'issue' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_FF1D34CE: ${{ github.event.comment.id || fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').comment_id }}
GH_AW_GITHUB_ACTOR: ${{ github.actor }}
- GH_AW_GITHUB_EVENT_COMMENT_ID: ${{ github.event.comment.id }}
- GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }}
- GH_AW_GITHUB_EVENT_ISSUE_NUMBER: ${{ github.event.issue.number }}
- GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
GH_AW_GITHUB_REPOSITORY: ${{ github.repository }}
GH_AW_GITHUB_RUN_ID: ${{ github.run_id }}
GH_AW_GITHUB_WORKSPACE: ${{ github.workspace }}
@@ -185,54 +188,54 @@ jobs:
run: |
bash "${RUNNER_TEMP}/gh-aw/actions/create_prompt_first.sh"
{
- cat << 'GH_AW_PROMPT_c9d6e485c3f68bea_EOF'
+ cat << 'GH_AW_PROMPT_5937f7f329fed3c9_EOF'
- GH_AW_PROMPT_c9d6e485c3f68bea_EOF
+ GH_AW_PROMPT_5937f7f329fed3c9_EOF
cat "${RUNNER_TEMP}/gh-aw/prompts/xpia.md"
cat "${RUNNER_TEMP}/gh-aw/prompts/temp_folder_prompt.md"
cat "${RUNNER_TEMP}/gh-aw/prompts/markdown.md"
cat "${RUNNER_TEMP}/gh-aw/prompts/safe_outputs_prompt.md"
- cat << 'GH_AW_PROMPT_c9d6e485c3f68bea_EOF'
+ cat << 'GH_AW_PROMPT_5937f7f329fed3c9_EOF'
Tools: add_comment(max:10), create_issue, close_issue(max:10), close_pull_request(max:10), assign_to_agent, missing_tool, missing_data, noop
- GH_AW_PROMPT_c9d6e485c3f68bea_EOF
+ GH_AW_PROMPT_5937f7f329fed3c9_EOF
cat "${RUNNER_TEMP}/gh-aw/prompts/mcp_cli_tools_prompt.md"
- cat << 'GH_AW_PROMPT_c9d6e485c3f68bea_EOF'
+ cat << 'GH_AW_PROMPT_5937f7f329fed3c9_EOF'
The following GitHub context information is available for this workflow:
- {{#if __GH_AW_GITHUB_ACTOR__ }}
+ {{#if github.actor}}
- **actor**: __GH_AW_GITHUB_ACTOR__
{{/if}}
- {{#if __GH_AW_GITHUB_REPOSITORY__ }}
+ {{#if github.repository}}
- **repository**: __GH_AW_GITHUB_REPOSITORY__
{{/if}}
- {{#if __GH_AW_GITHUB_WORKSPACE__ }}
+ {{#if github.workspace}}
- **workspace**: __GH_AW_GITHUB_WORKSPACE__
{{/if}}
- {{#if __GH_AW_GITHUB_EVENT_ISSUE_NUMBER__ }}
- - **issue-number**: #__GH_AW_GITHUB_EVENT_ISSUE_NUMBER__
+ {{#if github.event.issue.number || (github.aw.context.item_type == 'issue' && github.aw.context.item_number)}}
+ - **issue-number**: #__GH_AW_EXPR_802A9F6A__
{{/if}}
- {{#if __GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER__ }}
- - **discussion-number**: #__GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER__
+ {{#if github.event.discussion.number || (github.aw.context.item_type == 'discussion' && github.aw.context.item_number)}}
+ - **discussion-number**: #__GH_AW_EXPR_1A3A194A__
{{/if}}
- {{#if __GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER__ }}
- - **pull-request-number**: #__GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER__
+ {{#if github.event.pull_request.number || (github.aw.context.item_type == 'pull_request' && github.aw.context.item_number)}}
+ - **pull-request-number**: #__GH_AW_EXPR_463A214A__
{{/if}}
- {{#if __GH_AW_GITHUB_EVENT_COMMENT_ID__ }}
- - **comment-id**: __GH_AW_GITHUB_EVENT_COMMENT_ID__
+ {{#if github.event.comment.id || github.aw.context.comment_id}}
+ - **comment-id**: __GH_AW_EXPR_FF1D34CE__
{{/if}}
- {{#if __GH_AW_GITHUB_RUN_ID__ }}
+ {{#if github.run_id}}
- **workflow-run-id**: __GH_AW_GITHUB_RUN_ID__
{{/if}}
- GH_AW_PROMPT_c9d6e485c3f68bea_EOF
+ GH_AW_PROMPT_5937f7f329fed3c9_EOF
cat "${RUNNER_TEMP}/gh-aw/prompts/github_mcp_tools_with_safeoutputs_prompt.md"
- cat << 'GH_AW_PROMPT_c9d6e485c3f68bea_EOF'
+ cat << 'GH_AW_PROMPT_5937f7f329fed3c9_EOF'
{{#runtime-import .github/workflows/reference-impl-sync.md}}
- GH_AW_PROMPT_c9d6e485c3f68bea_EOF
+ GH_AW_PROMPT_5937f7f329fed3c9_EOF
} > "$GH_AW_PROMPT"
- name: Interpolate variables and render templates
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
@@ -249,11 +252,11 @@ jobs:
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
GH_AW_PROMPT: /tmp/gh-aw/aw-prompts/prompt.txt
+ GH_AW_EXPR_1A3A194A: ${{ github.event.discussion.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'discussion' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_463A214A: ${{ github.event.pull_request.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'pull_request' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_802A9F6A: ${{ github.event.issue.number || (fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_type == 'issue' && fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').item_number) }}
+ GH_AW_EXPR_FF1D34CE: ${{ github.event.comment.id || fromJSON(github.event.inputs.aw_context || github.event.client_payload.aw_context || '{}').comment_id }}
GH_AW_GITHUB_ACTOR: ${{ github.actor }}
- GH_AW_GITHUB_EVENT_COMMENT_ID: ${{ github.event.comment.id }}
- GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }}
- GH_AW_GITHUB_EVENT_ISSUE_NUMBER: ${{ github.event.issue.number }}
- GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
GH_AW_GITHUB_REPOSITORY: ${{ github.repository }}
GH_AW_GITHUB_RUN_ID: ${{ github.run_id }}
GH_AW_GITHUB_WORKSPACE: ${{ github.workspace }}
@@ -269,11 +272,11 @@ jobs:
return await substitutePlaceholders({
file: process.env.GH_AW_PROMPT,
substitutions: {
+ GH_AW_EXPR_1A3A194A: process.env.GH_AW_EXPR_1A3A194A,
+ GH_AW_EXPR_463A214A: process.env.GH_AW_EXPR_463A214A,
+ GH_AW_EXPR_802A9F6A: process.env.GH_AW_EXPR_802A9F6A,
+ GH_AW_EXPR_FF1D34CE: process.env.GH_AW_EXPR_FF1D34CE,
GH_AW_GITHUB_ACTOR: process.env.GH_AW_GITHUB_ACTOR,
- GH_AW_GITHUB_EVENT_COMMENT_ID: process.env.GH_AW_GITHUB_EVENT_COMMENT_ID,
- GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER: process.env.GH_AW_GITHUB_EVENT_DISCUSSION_NUMBER,
- GH_AW_GITHUB_EVENT_ISSUE_NUMBER: process.env.GH_AW_GITHUB_EVENT_ISSUE_NUMBER,
- GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER: process.env.GH_AW_GITHUB_EVENT_PULL_REQUEST_NUMBER,
GH_AW_GITHUB_REPOSITORY: process.env.GH_AW_GITHUB_REPOSITORY,
GH_AW_GITHUB_RUN_ID: process.env.GH_AW_GITHUB_RUN_ID,
GH_AW_GITHUB_WORKSPACE: process.env.GH_AW_GITHUB_WORKSPACE,
@@ -299,8 +302,11 @@ jobs:
path: |
/tmp/gh-aw/aw_info.json
/tmp/gh-aw/aw-prompts/prompt.txt
+ /tmp/gh-aw/aw-prompts/prompt-template.txt
+ /tmp/gh-aw/aw-prompts/prompt-import-tree.json
/tmp/gh-aw/github_rate_limits.jsonl
/tmp/gh-aw/base
+ /tmp/gh-aw/.github/agents
if-no-files-found: ignore
retention-days: 1
@@ -325,6 +331,7 @@ jobs:
agentic_engine_timeout: ${{ steps.detect-copilot-errors.outputs.agentic_engine_timeout || 'false' }}
checkout_pr_success: ${{ steps.checkout-pr.outputs.checkout_pr_success || 'true' }}
effective_tokens: ${{ steps.parse-mcp-gateway.outputs.effective_tokens }}
+ effective_tokens_rate_limit_error: ${{ steps.parse-mcp-gateway.outputs.effective_tokens_rate_limit_error || 'false' }}
has_patch: ${{ steps.collect_output.outputs.has_patch }}
inference_access_error: ${{ steps.detect-copilot-errors.outputs.inference_access_error || 'false' }}
mcp_policy_error: ${{ steps.detect-copilot-errors.outputs.mcp_policy_error || 'false' }}
@@ -332,19 +339,23 @@ jobs:
model_not_supported_error: ${{ steps.detect-copilot-errors.outputs.model_not_supported_error || 'false' }}
output: ${{ steps.collect_output.outputs.output }}
output_types: ${{ steps.collect_output.outputs.output_types }}
+ setup-parent-span-id: ${{ steps.setup.outputs.parent-span-id || steps.setup.outputs.span-id }}
+ setup-span-id: ${{ steps.setup.outputs.span-id }}
setup-trace-id: ${{ steps.setup.outputs.trace-id }}
steps:
- name: Setup Scripts
id: setup
- uses: github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+ uses: github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
with:
destination: ${{ runner.temp }}/gh-aw/actions
job-name: ${{ github.job }}
trace-id: ${{ needs.activation.outputs.setup-trace-id }}
+ parent-span-id: ${{ needs.activation.outputs.setup-parent-span-id || needs.activation.outputs.setup-span-id }}
env:
GH_AW_SETUP_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_CURRENT_WORKFLOW_REF: ${{ github.repository }}/.github/workflows/reference-impl-sync.lock.yml@${{ github.ref }}
- GH_AW_INFO_VERSION: "1.0.40"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_ENGINE_ID: "copilot"
- name: Set runtime paths
id: set-runtime-paths
run: |
@@ -391,11 +402,11 @@ jobs:
const { main } = require('${{ runner.temp }}/gh-aw/actions/checkout_pr_branch.cjs');
await main();
- name: Install GitHub Copilot CLI
- run: bash "${RUNNER_TEMP}/gh-aw/actions/install_copilot_cli.sh" 1.0.40
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/install_copilot_cli.sh" 1.0.48
env:
GH_HOST: github.com
- name: Install AWF binary
- run: bash "${RUNNER_TEMP}/gh-aw/actions/install_awf_binary.sh" v0.25.40
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/install_awf_binary.sh" v0.25.46
- name: Determine automatic lockdown mode for GitHub MCP Server
id: determine-automatic-lockdown
uses: actions/github-script@373c709c69115d41ff229c7e5df9f8788daa9553 # v9
@@ -417,16 +428,21 @@ jobs:
GH_AW_AGENT_FOLDERS: ".agents .claude .codex .crush .gemini .github .opencode .pi"
GH_AW_AGENT_FILES: ".crush.json AGENTS.md CLAUDE.md GEMINI.md PI.md opencode.jsonc"
run: bash "${RUNNER_TEMP}/gh-aw/actions/restore_base_github_folders.sh"
+ - name: Restore inline sub-agents from activation artifact
+ env:
+ GH_AW_SUB_AGENT_DIR: ".github/agents"
+ GH_AW_SUB_AGENT_EXT: ".agent.md"
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/restore_inline_sub_agents.sh"
- name: Download container images
- run: bash "${RUNNER_TEMP}/gh-aw/actions/download_docker_images.sh" ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504 ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280 ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51 ghcr.io/github/gh-aw-mcpg:v0.3.6@sha256:2bb8eef86006a4c5963c55616a9c51c32f27bfdecb023b8aa6f91f6718d9171c ghcr.io/github/github-mcp-server:v1.0.3@sha256:2ac27ef03461ef2b877031b838a7d1fd7f12b12d4ace7796d8cad91446d55959 node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/download_docker_images.sh" ghcr.io/github/gh-aw-firewall/agent:0.25.46 ghcr.io/github/gh-aw-firewall/api-proxy:0.25.46 ghcr.io/github/gh-aw-firewall/squid:0.25.46 ghcr.io/github/gh-aw-mcpg:v0.3.9@sha256:64828b42a4482f58fab16509d7f8f495a6d97c972a98a68aff20543531ac0388 ghcr.io/github/github-mcp-server:v1.0.4 node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f
- name: Generate Safe Outputs Config
run: |
mkdir -p "${RUNNER_TEMP}/gh-aw/safeoutputs"
mkdir -p /tmp/gh-aw/safeoutputs
mkdir -p /tmp/gh-aw/mcp-logs/safeoutputs
- cat > "${RUNNER_TEMP}/gh-aw/safeoutputs/config.json" << 'GH_AW_SAFE_OUTPUTS_CONFIG_06a3a494957bf1f1_EOF'
+ cat > "${RUNNER_TEMP}/gh-aw/safeoutputs/config.json" << 'GH_AW_SAFE_OUTPUTS_CONFIG_8434d42e1eaff150_EOF'
{"add_comment":{"max":10,"target":"*"},"assign_to_agent":{"max":1,"model":"claude-opus-4.6","name":"copilot","target":"*"},"close_issue":{"max":10,"required_labels":["reference-impl-sync"],"target":"*"},"close_pull_request":{"max":10,"target":"*"},"create_issue":{"expires":144,"labels":["reference-impl-sync"],"max":1,"title_prefix":"[reference-impl-sync] "},"create_report_incomplete_issue":{},"missing_data":{},"missing_tool":{},"noop":{"max":1,"report-as-issue":"false"},"report_incomplete":{}}
- GH_AW_SAFE_OUTPUTS_CONFIG_06a3a494957bf1f1_EOF
+ GH_AW_SAFE_OUTPUTS_CONFIG_8434d42e1eaff150_EOF
- name: Generate Safe Outputs Tools
env:
GH_AW_TOOLS_META_JSON: |
@@ -535,6 +551,9 @@ jobs:
"sanitize": true,
"maxLength": 65000
},
+ "fields": {
+ "type": "array"
+ },
"labels": {
"type": "array",
"itemType": "string",
@@ -708,17 +727,22 @@ jobs:
export GH_AW_ENGINE="copilot"
MCP_GATEWAY_UID=$(id -u 2>/dev/null || echo '0')
MCP_GATEWAY_GID=$(id -g 2>/dev/null || echo '0')
- DOCKER_SOCK_GID=$(stat -c '%g' /var/run/docker.sock 2>/dev/null || echo '0')
- export MCP_GATEWAY_DOCKER_COMMAND='docker run -i --rm --network host --add-host host.docker.internal:127.0.0.1 --user '"${MCP_GATEWAY_UID}"':'"${MCP_GATEWAY_GID}"' --group-add '"${DOCKER_SOCK_GID}"' -v /var/run/docker.sock:/var/run/docker.sock -e MCP_GATEWAY_PORT -e MCP_GATEWAY_DOMAIN -e MCP_GATEWAY_API_KEY -e MCP_GATEWAY_PAYLOAD_DIR -e MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD -e DEBUG -e MCP_GATEWAY_LOG_DIR -e GH_AW_MCP_LOG_DIR -e GH_AW_SAFE_OUTPUTS -e GH_AW_SAFE_OUTPUTS_CONFIG_PATH -e GH_AW_SAFE_OUTPUTS_TOOLS_PATH -e GH_AW_ASSETS_BRANCH -e GH_AW_ASSETS_MAX_SIZE_KB -e GH_AW_ASSETS_ALLOWED_EXTS -e DEFAULT_BRANCH -e GITHUB_MCP_SERVER_TOKEN -e GITHUB_MCP_GUARD_MIN_INTEGRITY -e GITHUB_MCP_GUARD_REPOS -e GITHUB_REPOSITORY -e GITHUB_SERVER_URL -e GITHUB_SHA -e GITHUB_WORKSPACE -e GITHUB_TOKEN -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RUN_ATTEMPT -e GITHUB_JOB -e GITHUB_ACTION -e GITHUB_EVENT_NAME -e GITHUB_EVENT_PATH -e GITHUB_ACTOR -e GITHUB_ACTOR_ID -e GITHUB_TRIGGERING_ACTOR -e GITHUB_WORKFLOW -e GITHUB_WORKFLOW_REF -e GITHUB_WORKFLOW_SHA -e GITHUB_REF -e GITHUB_REF_NAME -e GITHUB_REF_TYPE -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GH_AW_SAFE_OUTPUTS_PORT -e GH_AW_SAFE_OUTPUTS_API_KEY -v /tmp/gh-aw/mcp-payloads:/tmp/gh-aw/mcp-payloads:rw -v /opt:/opt:ro -v /tmp:/tmp:rw -v '"${GITHUB_WORKSPACE}"':'"${GITHUB_WORKSPACE}"':rw ghcr.io/github/gh-aw-mcpg:v0.3.6'
+ case "${DOCKER_HOST:-}" in
+ unix://* ) DOCKER_SOCK_PATH="${DOCKER_HOST#unix://}" ;;
+ /* ) DOCKER_SOCK_PATH="$DOCKER_HOST" ;;
+ * ) DOCKER_SOCK_PATH=/var/run/docker.sock ;;
+ esac
+ DOCKER_SOCK_GID=$(stat -c '%g' "$DOCKER_SOCK_PATH" 2>/dev/null || echo '0')
+ export MCP_GATEWAY_DOCKER_COMMAND='docker run -i --rm --network host --add-host host.docker.internal:127.0.0.1 --user '"${MCP_GATEWAY_UID}"':'"${MCP_GATEWAY_GID}"' --group-add '"${DOCKER_SOCK_GID}"' -v '"${DOCKER_SOCK_PATH}"':/var/run/docker.sock -e MCP_GATEWAY_PORT -e MCP_GATEWAY_DOMAIN -e MCP_GATEWAY_API_KEY -e MCP_GATEWAY_PAYLOAD_DIR -e MCP_GATEWAY_PAYLOAD_SIZE_THRESHOLD -e DOCKER_HOST=unix:///var/run/docker.sock -e DEBUG -e MCP_GATEWAY_LOG_DIR -e GH_AW_MCP_LOG_DIR -e GH_AW_SAFE_OUTPUTS -e GH_AW_SAFE_OUTPUTS_CONFIG_PATH -e GH_AW_SAFE_OUTPUTS_TOOLS_PATH -e GH_AW_ASSETS_BRANCH -e GH_AW_ASSETS_MAX_SIZE_KB -e GH_AW_ASSETS_ALLOWED_EXTS -e DEFAULT_BRANCH -e GITHUB_MCP_SERVER_TOKEN -e GITHUB_MCP_GUARD_MIN_INTEGRITY -e GITHUB_MCP_GUARD_REPOS -e GITHUB_REPOSITORY -e GITHUB_SERVER_URL -e GITHUB_SHA -e GITHUB_WORKSPACE -e GITHUB_TOKEN -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RUN_ATTEMPT -e GITHUB_JOB -e GITHUB_ACTION -e GITHUB_EVENT_NAME -e GITHUB_EVENT_PATH -e GITHUB_ACTOR -e GITHUB_ACTOR_ID -e GITHUB_TRIGGERING_ACTOR -e GITHUB_WORKFLOW -e GITHUB_WORKFLOW_REF -e GITHUB_WORKFLOW_SHA -e GITHUB_REF -e GITHUB_REF_NAME -e GITHUB_REF_TYPE -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GH_AW_SAFE_OUTPUTS_PORT -e GH_AW_SAFE_OUTPUTS_API_KEY -v /tmp/gh-aw/mcp-payloads:/tmp/gh-aw/mcp-payloads:rw -v /opt:/opt:ro -v /tmp:/tmp:rw -v '"${GITHUB_WORKSPACE}"':'"${GITHUB_WORKSPACE}"':rw ghcr.io/github/gh-aw-mcpg:v0.3.9'
mkdir -p /home/runner/.copilot
GH_AW_NODE=$(which node 2>/dev/null || command -v node 2>/dev/null || echo node)
- cat << GH_AW_MCP_CONFIG_03f014fbed5a3560_EOF | "$GH_AW_NODE" "${RUNNER_TEMP}/gh-aw/actions/start_mcp_gateway.cjs"
+ cat << GH_AW_MCP_CONFIG_91f5ce417df04baa_EOF | "$GH_AW_NODE" "${RUNNER_TEMP}/gh-aw/actions/start_mcp_gateway.cjs"
{
"mcpServers": {
"github": {
"type": "stdio",
- "container": "ghcr.io/github/github-mcp-server:v1.0.3",
+ "container": "ghcr.io/github/github-mcp-server:v1.0.4",
"env": {
"GITHUB_HOST": "\${GITHUB_SERVER_URL}",
"GITHUB_PERSONAL_ACCESS_TOKEN": "\${GITHUB_MCP_SERVER_TOKEN}",
@@ -754,7 +778,7 @@ jobs:
"payloadDir": "${MCP_GATEWAY_PAYLOAD_DIR}"
}
}
- GH_AW_MCP_CONFIG_03f014fbed5a3560_EOF
+ GH_AW_MCP_CONFIG_91f5ce417df04baa_EOF
- name: Mount MCP servers as CLIs
id: mount-mcp-clis
continue-on-error: true
@@ -782,15 +806,21 @@ jobs:
timeout-minutes: 20
run: |
set -o pipefail
+ printf '%s' "$(date +%s%3N)" > /tmp/gh-aw/agent_cli_start_ms.txt
touch /tmp/gh-aw/agent-step-summary.md
GH_AW_NODE_BIN=$(command -v node 2>/dev/null || true)
export GH_AW_NODE_BIN
(umask 177 && touch /tmp/gh-aw/agent-stdio.log)
- printf '%s\n' '{"$schema":"https://github.com/github/gh-aw-firewall/releases/download/v0.25.40/awf-config.schema.json","network":{"allowDomains":["*.githubusercontent.com","api.business.githubcopilot.com","api.enterprise.githubcopilot.com","api.github.com","api.githubcopilot.com","api.individual.githubcopilot.com","api.snapcraft.io","archive.ubuntu.com","azure.archive.ubuntu.com","codeload.github.com","crl.geotrust.com","crl.globalsign.com","crl.identrust.com","crl.sectigo.com","crl.thawte.com","crl.usertrust.com","crl.verisign.com","crl3.digicert.com","crl4.digicert.com","crls.ssl.com","docs.github.com","github-cloud.githubusercontent.com","github-cloud.s3.amazonaws.com","github.blog","github.com","github.githubassets.com","host.docker.internal","json-schema.org","json.schemastore.org","keyserver.ubuntu.com","lfs.github.com","objects.githubusercontent.com","ocsp.digicert.com","ocsp.geotrust.com","ocsp.globalsign.com","ocsp.identrust.com","ocsp.sectigo.com","ocsp.ssl.com","ocsp.thawte.com","ocsp.usertrust.com","ocsp.verisign.com","packagecloud.io","packages.cloud.google.com","packages.microsoft.com","ppa.launchpad.net","raw.githubusercontent.com","registry.npmjs.org","s.symcb.com","s.symcd.com","security.ubuntu.com","telemetry.enterprise.githubcopilot.com","ts-crl.ws.symantec.com","ts-ocsp.ws.symantec.com","www.googleapis.com"]},"apiProxy":{"enabled":true,"models":{"auto":["large"],"deep-research":["copilot/deep-research*","google/deep-research*"],"gemini-flash":["copilot/gemini-*flash*","google/gemini-*flash*"],"gemini-pro":["copilot/gemini-*pro*","google/gemini-*pro*"],"gpt-4.1":["copilot/gpt-4.1*","openai/gpt-4.1*"],"gpt-5":["copilot/gpt-5*","openai/gpt-5*"],"gpt-5-codex":["copilot/gpt-5*codex*","openai/gpt-5*codex*"],"gpt-5-mini":["copilot/gpt-5*mini*","openai/gpt-5*mini*"],"gpt-5-nano":["copilot/gpt-5*nano*","openai/gpt-5*nano*"],"gpt-5-pro":["copilot/gpt-5*pro*","openai/gpt-5*pro*"],"haiku":["copilot/*haiku*","anthropic/*haiku*"],"large":["sonnet","gpt-5-pro","gpt-5","gemini-pro"],"mini":["haiku","gpt-5-mini","gpt-5-nano","gemini-flash"],"opus":["copilot/*opus*","anthropic/*opus*"],"reasoning":["copilot/o1*","copilot/o3*","copilot/o4*","openai/o1*","openai/o3*","openai/o4*"],"small":["mini"],"sonnet":["copilot/*sonnet*","anthropic/*sonnet*"]}},"container":{"imageTag":"0.25.40,squid=sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51,agent=sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504,api-proxy=sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280,cli-proxy=sha256:3e7152911d4b4b7b97beef9d3d7d924ff7902227e86001ef3838fb728d5d514c"}}' > "${RUNNER_TEMP}/gh-aw/awf-config.json" && cp "${RUNNER_TEMP}/gh-aw/awf-config.json" /tmp/gh-aw/awf-config.json
+ printf '%s\n' '{"$schema":"https://github.com/github/gh-aw-firewall/releases/download/v0.25.46/awf-config.schema.json","network":{"allowDomains":["*.githubusercontent.com","api.business.githubcopilot.com","api.enterprise.githubcopilot.com","api.github.com","api.githubcopilot.com","api.individual.githubcopilot.com","api.snapcraft.io","archive.ubuntu.com","azure.archive.ubuntu.com","codeload.github.com","crl.geotrust.com","crl.globalsign.com","crl.identrust.com","crl.sectigo.com","crl.thawte.com","crl.usertrust.com","crl.verisign.com","crl3.digicert.com","crl4.digicert.com","crls.ssl.com","docs.github.com","github-cloud.githubusercontent.com","github-cloud.s3.amazonaws.com","github.blog","github.com","github.githubassets.com","host.docker.internal","json-schema.org","json.schemastore.org","keyserver.ubuntu.com","lfs.github.com","objects.githubusercontent.com","ocsp.digicert.com","ocsp.geotrust.com","ocsp.globalsign.com","ocsp.identrust.com","ocsp.sectigo.com","ocsp.ssl.com","ocsp.thawte.com","ocsp.usertrust.com","ocsp.verisign.com","packagecloud.io","packages.cloud.google.com","packages.microsoft.com","ppa.launchpad.net","raw.githubusercontent.com","registry.npmjs.org","s.symcb.com","s.symcd.com","security.ubuntu.com","telemetry.enterprise.githubcopilot.com","ts-crl.ws.symantec.com","ts-ocsp.ws.symantec.com","www.googleapis.com"]},"apiProxy":{"enabled":true,"enableTokenSteering":true,"maxRuns":500,"maxEffectiveTokens":25000000,"models":{"auto":["large"],"coding":["copilot/gpt-5*codex*","openai/gpt-5*codex*","gpt-5-codex"],"deep-research":["copilot/deep-research*","copilot/o3-deep-research*","copilot/o4-mini-deep-research*","google/deep-research*","gemini/deep-research*","openai/o3-deep-research*","openai/o4-mini-deep-research*"],"gemini-flash":["copilot/gemini-*flash*","google/gemini-*flash*","gemini/gemini-*flash*"],"gemini-flash-lite":["copilot/gemini-*flash*lite*","google/gemini-*flash*lite*","gemini/gemini-*flash*lite*"],"gemini-pro":["copilot/gemini-*pro*","google/gemini-*pro*","gemini/gemini-*pro*"],"gemma":["copilot/gemma*","google/gemma*","gemini/gemma*"],"gpt-4.1":["copilot/gpt-4.1*","openai/gpt-4.1*"],"gpt-5":["copilot/gpt-5*","openai/gpt-5*"],"gpt-5-codex":["copilot/gpt-5*codex*","openai/gpt-5*codex*"],"gpt-5-mini":["copilot/gpt-5*mini*","openai/gpt-5*mini*"],"gpt-5-nano":["copilot/gpt-5*nano*","openai/gpt-5*nano*"],"gpt-5-pro":["copilot/gpt-5*pro*","openai/gpt-5*pro*"],"haiku":["copilot/*haiku*","anthropic/*haiku*"],"large":["sonnet","gpt-5-pro","gpt-5","gemini-pro"],"mini":["haiku","gpt-5-mini","gpt-5-nano","gemini-flash-lite"],"opus":["copilot/*opus*","anthropic/*opus*"],"reasoning":["copilot/o1*","copilot/o3*","copilot/o4*","openai/o1*","openai/o3*","openai/o4*"],"small":["mini"],"sonnet":["copilot/*sonnet*","anthropic/*sonnet*"],"vision":["copilot/gemini-*image*","gemini/gemini-*image*","copilot/gemini-*flash*","gemini/gemini-*flash*"]}},"container":{"imageTag":"0.25.46"}}' > "${RUNNER_TEMP}/gh-aw/awf-config.json" && cp "${RUNNER_TEMP}/gh-aw/awf-config.json" /tmp/gh-aw/awf-config.json
+ GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS=""
+ if [[ "${DOCKER_HOST:-}" =~ ^tcp:// ]]; then
+ GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS="--docker-host-path-prefix /tmp/gh-aw"
+ fi
# shellcheck disable=SC1003
- sudo -E awf --config "${RUNNER_TEMP}/gh-aw/awf-config.json" --container-workdir "${GITHUB_WORKSPACE}" --mount "${RUNNER_TEMP}/gh-aw:${RUNNER_TEMP}/gh-aw:ro" --mount "${RUNNER_TEMP}/gh-aw:/host${RUNNER_TEMP}/gh-aw:ro" --env-all --exclude-env COPILOT_GITHUB_TOKEN --exclude-env GITHUB_MCP_SERVER_TOKEN --exclude-env MCP_GATEWAY_API_KEY --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs --audit-dir /tmp/gh-aw/sandbox/firewall/audit --enable-host-access --allow-host-ports 80,443,8080 --skip-pull \
- -- /bin/bash -c 'export PATH="${RUNNER_TEMP}/gh-aw/mcp-cli/bin:$PATH" && export PATH="$(find /opt/hostedtoolcache /home/runner/work/_tool -maxdepth 4 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || echo node)"; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --allow-all-paths --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/agent-stdio.log
+ sudo -E awf --config "${RUNNER_TEMP}/gh-aw/awf-config.json" --container-workdir "${GITHUB_WORKSPACE}" --mount "${RUNNER_TEMP}/gh-aw:${RUNNER_TEMP}/gh-aw:ro" --mount "${RUNNER_TEMP}/gh-aw:/host${RUNNER_TEMP}/gh-aw:ro" ${GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS} --env-all --exclude-env COPILOT_GITHUB_TOKEN --exclude-env GITHUB_MCP_SERVER_TOKEN --exclude-env MCP_GATEWAY_API_KEY --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs --audit-dir /tmp/gh-aw/sandbox/firewall/audit --enable-host-access --allow-host-ports 80,443,8080 --skip-pull \
+ -- /bin/bash -c 'export PATH="${RUNNER_TEMP}/gh-aw/mcp-cli/bin:$PATH" && export PATH="$(find /opt/hostedtoolcache /home/runner/work/_tool -maxdepth 5 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || true)"; fi; if [ -z "$GH_AW_NODE_EXEC" ]; then echo "node runtime missing on this runner — check runtimes.node in workflow YAML" >&2; exit 127; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --allow-all-paths --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/agent-stdio.log
env:
+ AWF_REFLECT_ENABLED: 1
COPILOT_AGENT_RUNNER_TYPE: STANDALONE
COPILOT_API_KEY: dummy-byok-key-for-offline-mode
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
@@ -799,7 +829,7 @@ jobs:
GH_AW_PHASE: agent
GH_AW_PROMPT: /tmp/gh-aw/aw-prompts/prompt.txt
GH_AW_SAFE_OUTPUTS: ${{ steps.set-runtime-paths.outputs.GH_AW_SAFE_OUTPUTS }}
- GH_AW_VERSION: v0.71.5
+ GH_AW_VERSION: v0.74.4
GITHUB_API_URL: ${{ github.api_url }}
GITHUB_AW: true
GITHUB_COPILOT_INTEGRATION_ID: agentic-workflows
@@ -914,7 +944,7 @@ jobs:
run: |
# Fix permissions on firewall logs/audit dirs so they can be uploaded as artifacts
# AWF runs with sudo, creating files owned by root
- sudo chmod -R a+r /tmp/gh-aw/sandbox/firewall 2>/dev/null || true
+ sudo chmod -R a+rX /tmp/gh-aw/sandbox/firewall 2>/dev/null || true
# Only run awf logs summary if awf command exists (it may not be installed if workflow failed before install step)
if command -v awf &> /dev/null; then
awf logs summary | tee -a "$GITHUB_STEP_SUMMARY"
@@ -991,6 +1021,7 @@ jobs:
concurrency:
group: "gh-aw-conclusion-reference-impl-sync"
cancel-in-progress: false
+ queue: max
outputs:
incomplete_count: ${{ steps.report_incomplete.outputs.incomplete_count }}
noop_message: ${{ steps.noop.outputs.noop_message }}
@@ -999,15 +1030,17 @@ jobs:
steps:
- name: Setup Scripts
id: setup
- uses: github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+ uses: github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
with:
destination: ${{ runner.temp }}/gh-aw/actions
job-name: ${{ github.job }}
trace-id: ${{ needs.activation.outputs.setup-trace-id }}
+ parent-span-id: ${{ needs.activation.outputs.setup-parent-span-id || needs.activation.outputs.setup-span-id }}
env:
GH_AW_SETUP_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_CURRENT_WORKFLOW_REF: ${{ github.repository }}/.github/workflows/reference-impl-sync.lock.yml@${{ github.ref }}
- GH_AW_INFO_VERSION: "1.0.40"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_ENGINE_ID: "copilot"
- name: Download agent output artifact
id: download-agent-output
continue-on-error: true
@@ -1097,6 +1130,8 @@ jobs:
GH_AW_ENGINE_ID: "copilot"
GH_AW_SECRET_VERIFICATION_RESULT: ${{ needs.activation.outputs.secret_verification_result }}
GH_AW_CHECKOUT_PR_SUCCESS: ${{ needs.agent.outputs.checkout_pr_success }}
+ GH_AW_EFFECTIVE_TOKENS: ${{ needs.agent.outputs.effective_tokens || '' }}
+ GH_AW_EFFECTIVE_TOKENS_RATE_LIMIT_ERROR: ${{ needs.agent.outputs.effective_tokens_rate_limit_error || 'false' }}
GH_AW_INFERENCE_ACCESS_ERROR: ${{ needs.agent.outputs.inference_access_error }}
GH_AW_MCP_POLICY_ERROR: ${{ needs.agent.outputs.mcp_policy_error }}
GH_AW_AGENTIC_ENGINE_TIMEOUT: ${{ needs.agent.outputs.agentic_engine_timeout }}
@@ -1111,6 +1146,7 @@ jobs:
GH_AW_MISSING_TOOL_REPORT_AS_FAILURE: "true"
GH_AW_MISSING_DATA_REPORT_AS_FAILURE: "true"
GH_AW_TIMEOUT_MINUTES: "20"
+ GH_AW_MAX_EFFECTIVE_TOKENS: "25000000"
with:
github-token: ${{ secrets.GH_AW_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
script: |
@@ -1135,15 +1171,17 @@ jobs:
steps:
- name: Setup Scripts
id: setup
- uses: github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+ uses: github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
with:
destination: ${{ runner.temp }}/gh-aw/actions
job-name: ${{ github.job }}
trace-id: ${{ needs.activation.outputs.setup-trace-id }}
+ parent-span-id: ${{ needs.activation.outputs.setup-parent-span-id || needs.activation.outputs.setup-span-id }}
env:
GH_AW_SETUP_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_CURRENT_WORKFLOW_REF: ${{ github.repository }}/.github/workflows/reference-impl-sync.lock.yml@${{ github.ref }}
- GH_AW_INFO_VERSION: "1.0.40"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_ENGINE_ID: "copilot"
- name: Download agent output artifact
id: download-agent-output
continue-on-error: true
@@ -1169,7 +1207,7 @@ jobs:
rm -rf /tmp/gh-aw/sandbox/firewall/logs
rm -rf /tmp/gh-aw/sandbox/firewall/audit
- name: Download container images
- run: bash "${RUNNER_TEMP}/gh-aw/actions/download_docker_images.sh" ghcr.io/github/gh-aw-firewall/agent:0.25.40@sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504 ghcr.io/github/gh-aw-firewall/api-proxy:0.25.40@sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280 ghcr.io/github/gh-aw-firewall/squid:0.25.40@sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/download_docker_images.sh" ghcr.io/github/gh-aw-firewall/agent:0.25.46 ghcr.io/github/gh-aw-firewall/api-proxy:0.25.46 ghcr.io/github/gh-aw-firewall/squid:0.25.46
- name: Check if detection needed
id: detection_guard
if: always()
@@ -1228,11 +1266,11 @@ jobs:
node-version: '24'
package-manager-cache: false
- name: Install GitHub Copilot CLI
- run: bash "${RUNNER_TEMP}/gh-aw/actions/install_copilot_cli.sh" 1.0.40
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/install_copilot_cli.sh" 1.0.48
env:
GH_HOST: github.com
- name: Install AWF binary
- run: bash "${RUNNER_TEMP}/gh-aw/actions/install_awf_binary.sh" v0.25.40
+ run: bash "${RUNNER_TEMP}/gh-aw/actions/install_awf_binary.sh" v0.25.46
- name: Execute GitHub Copilot CLI
if: always() && steps.detection_guard.outputs.run_detection == 'true'
continue-on-error: true
@@ -1241,22 +1279,28 @@ jobs:
timeout-minutes: 20
run: |
set -o pipefail
+ printf '%s' "$(date +%s%3N)" > /tmp/gh-aw/agent_cli_start_ms.txt
touch /tmp/gh-aw/agent-step-summary.md
GH_AW_NODE_BIN=$(command -v node 2>/dev/null || true)
export GH_AW_NODE_BIN
(umask 177 && touch /tmp/gh-aw/threat-detection/detection.log)
- printf '%s\n' '{"$schema":"https://github.com/github/gh-aw-firewall/releases/download/v0.25.40/awf-config.schema.json","network":{"allowDomains":["api.business.githubcopilot.com","api.enterprise.githubcopilot.com","api.github.com","api.githubcopilot.com","api.individual.githubcopilot.com","github.com","host.docker.internal","telemetry.enterprise.githubcopilot.com"]},"apiProxy":{"enabled":true},"container":{"imageTag":"0.25.40,squid=sha256:b084f4a2c771f584ee68084ced52fa6b3245197a1889645d817462d307d3ac51,agent=sha256:14ff567e8d9d4c2fbc5e55c973488381c71d7e0fdbe72d30ee7b8a738fd86504,api-proxy=sha256:2883ca3e5ae9f330cafdd9345bfd4ae17fc8da36c96d4c9a1f76e922b4c45280,cli-proxy=sha256:3e7152911d4b4b7b97beef9d3d7d924ff7902227e86001ef3838fb728d5d514c"}}' > "${RUNNER_TEMP}/gh-aw/awf-config.json" && cp "${RUNNER_TEMP}/gh-aw/awf-config.json" /tmp/gh-aw/awf-config.json
+ printf '%s\n' '{"$schema":"https://github.com/github/gh-aw-firewall/releases/download/v0.25.46/awf-config.schema.json","network":{"allowDomains":["api.business.githubcopilot.com","api.enterprise.githubcopilot.com","api.github.com","api.githubcopilot.com","api.individual.githubcopilot.com","github.com","host.docker.internal","telemetry.enterprise.githubcopilot.com"]},"apiProxy":{"enabled":true,"enableTokenSteering":true,"maxRuns":500,"maxEffectiveTokens":25000000},"container":{"imageTag":"0.25.46"}}' > "${RUNNER_TEMP}/gh-aw/awf-config.json" && cp "${RUNNER_TEMP}/gh-aw/awf-config.json" /tmp/gh-aw/awf-config.json
+ GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS=""
+ if [[ "${DOCKER_HOST:-}" =~ ^tcp:// ]]; then
+ GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS="--docker-host-path-prefix /tmp/gh-aw"
+ fi
# shellcheck disable=SC1003
- sudo -E awf --config "${RUNNER_TEMP}/gh-aw/awf-config.json" --container-workdir "${GITHUB_WORKSPACE}" --mount "${RUNNER_TEMP}/gh-aw:${RUNNER_TEMP}/gh-aw:ro" --mount "${RUNNER_TEMP}/gh-aw:/host${RUNNER_TEMP}/gh-aw:ro" --env-all --exclude-env COPILOT_GITHUB_TOKEN --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs --audit-dir /tmp/gh-aw/sandbox/firewall/audit --enable-host-access --allow-host-ports 80,443,8080 --skip-pull \
- -- /bin/bash -c 'export PATH="$(find /opt/hostedtoolcache /home/runner/work/_tool -maxdepth 4 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || echo node)"; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/threat-detection/detection.log
+ sudo -E awf --config "${RUNNER_TEMP}/gh-aw/awf-config.json" --container-workdir "${GITHUB_WORKSPACE}" --mount "${RUNNER_TEMP}/gh-aw:${RUNNER_TEMP}/gh-aw:ro" --mount "${RUNNER_TEMP}/gh-aw:/host${RUNNER_TEMP}/gh-aw:ro" ${GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS} --env-all --exclude-env COPILOT_GITHUB_TOKEN --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs --audit-dir /tmp/gh-aw/sandbox/firewall/audit --enable-host-access --allow-host-ports 80,443,8080 --skip-pull \
+ -- /bin/bash -c 'export PATH="$(find /opt/hostedtoolcache /home/runner/work/_tool -maxdepth 5 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || true)"; fi; if [ -z "$GH_AW_NODE_EXEC" ]; then echo "node runtime missing on this runner — check runtimes.node in workflow YAML" >&2; exit 127; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/threat-detection/detection.log
env:
+ AWF_REFLECT_ENABLED: 1
COPILOT_AGENT_RUNNER_TYPE: STANDALONE
COPILOT_API_KEY: dummy-byok-key-for-offline-mode
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
COPILOT_MODEL: ${{ vars.GH_AW_MODEL_DETECTION_COPILOT || 'claude-sonnet-4.6' }}
GH_AW_PHASE: detection
GH_AW_PROMPT: /tmp/gh-aw/aw-prompts/prompt.txt
- GH_AW_VERSION: v0.71.5
+ GH_AW_VERSION: v0.74.4
GITHUB_API_URL: ${{ github.api_url }}
GITHUB_AW: true
GITHUB_COPILOT_INTEGRATION_ID: agentic-workflows
@@ -1284,6 +1328,7 @@ jobs:
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
env:
RUN_DETECTION: ${{ steps.detection_guard.outputs.run_detection }}
+ DETECTION_AGENTIC_EXECUTION_OUTCOME: ${{ steps.detection_agentic_execution.outcome }}
GH_AW_DETECTION_CONTINUE_ON_ERROR: "true"
with:
script: |
@@ -1294,10 +1339,11 @@ jobs:
await main();
} catch (loadErr) {
const continueOnError = process.env.GH_AW_DETECTION_CONTINUE_ON_ERROR !== 'false';
+ const detectionExecutionFailed = process.env.DETECTION_AGENTIC_EXECUTION_OUTCOME === 'failure';
const msg = 'ERR_SYSTEM: \u274C Unexpected error loading threat detection module: ' + (loadErr && loadErr.message ? loadErr.message : String(loadErr));
core.error(msg);
core.setOutput('reason', 'parse_error');
- if (continueOnError) {
+ if (continueOnError && !detectionExecutionFailed) {
core.warning('\u26A0\uFE0F ' + msg);
core.setOutput('conclusion', 'warning');
core.setOutput('success', 'false');
@@ -1328,7 +1374,7 @@ jobs:
GH_AW_EFFECTIVE_TOKENS: ${{ needs.agent.outputs.effective_tokens }}
GH_AW_ENGINE_ID: "copilot"
GH_AW_ENGINE_MODEL: ${{ needs.agent.outputs.model }}
- GH_AW_ENGINE_VERSION: "1.0.40"
+ GH_AW_ENGINE_VERSION: "1.0.48"
GH_AW_WORKFLOW_ID: "reference-impl-sync"
GH_AW_WORKFLOW_NAME: "Reference Implementation Sync"
outputs:
@@ -1348,15 +1394,17 @@ jobs:
steps:
- name: Setup Scripts
id: setup
- uses: github/gh-aw-actions/setup@b8068426813005612b960b5ab0b8bd2c27142323 # v0.71.5
+ uses: github/gh-aw-actions/setup@d3abfe96a194bce3a523ed2093ddedd5704cdf62 # v0.74.4
with:
destination: ${{ runner.temp }}/gh-aw/actions
job-name: ${{ github.job }}
trace-id: ${{ needs.activation.outputs.setup-trace-id }}
+ parent-span-id: ${{ needs.activation.outputs.setup-parent-span-id || needs.activation.outputs.setup-span-id }}
env:
GH_AW_SETUP_WORKFLOW_NAME: "Reference Implementation Sync"
GH_AW_CURRENT_WORKFLOW_REF: ${{ github.repository }}/.github/workflows/reference-impl-sync.lock.yml@${{ github.ref }}
- GH_AW_INFO_VERSION: "1.0.40"
+ GH_AW_INFO_VERSION: "1.0.48"
+ GH_AW_INFO_ENGINE_ID: "copilot"
- name: Download agent output artifact
id: download-agent-output
continue-on-error: true
diff --git a/.github/workflows/reference-impl-sync.md b/.github/workflows/reference-impl-sync.md
index 20cad89e14..297ef6dbdf 100644
--- a/.github/workflows/reference-impl-sync.md
+++ b/.github/workflows/reference-impl-sync.md
@@ -4,7 +4,7 @@ description: |
Copilot SDK (github/copilot-sdk) and assigns to Copilot to port changes.
on:
- schedule: daily
+ schedule: weekly on friday
workflow_dispatch:
permissions:
From 86f469513d1cda60683bdd94af61d39c31169430 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 18 May 2026 18:47:34 +0000
Subject: [PATCH 25/51] Regenerate codegen output
Auto-committed by codegen-check workflow.
---
.../copilot/sdk/generated/AbortEvent.java | 2 +-
.../sdk/generated/AssistantIntentEvent.java | 2 +-
.../generated/AssistantMessageDeltaEvent.java | 2 +-
.../sdk/generated/AssistantMessageEvent.java | 2 +-
.../generated/AssistantMessageStartEvent.java | 2 +-
.../AssistantReasoningDeltaEvent.java | 2 +-
.../generated/AssistantReasoningEvent.java | 2 +-
.../AssistantStreamingDeltaEvent.java | 2 +-
.../sdk/generated/AssistantTurnEndEvent.java | 2 +-
.../generated/AssistantTurnStartEvent.java | 2 +-
.../sdk/generated/AssistantUsageEvent.java | 4 +-
.../AssistantUsageQuotaSnapshot.java | 5 ++
.../AutoModeSwitchCompletedEvent.java | 6 +--
.../AutoModeSwitchRequestedEvent.java | 2 +-
.../sdk/generated/AutoModeSwitchResponse.java | 37 ++++++++++++++
.../generated/CapabilitiesChangedEvent.java | 2 +-
.../sdk/generated/CommandCompletedEvent.java | 2 +-
.../sdk/generated/CommandExecuteEvent.java | 2 +-
.../sdk/generated/CommandQueuedEvent.java | 2 +-
.../sdk/generated/CommandsChangedCommand.java | 7 +++
.../sdk/generated/CommandsChangedEvent.java | 2 +-
.../generated/CustomAgentsUpdatedAgent.java | 5 ++
.../generated/ElicitationCompletedEvent.java | 2 +-
.../generated/ElicitationRequestedEvent.java | 2 +-
.../sdk/generated/ExitPlanModeAction.java | 39 +++++++++++++++
.../generated/ExitPlanModeCompletedEvent.java | 6 +--
.../generated/ExitPlanModeRequestedEvent.java | 10 ++--
.../generated/ExtensionsLoadedExtension.java | 5 ++
.../generated/ExternalToolCompletedEvent.java | 2 +-
.../generated/ExternalToolRequestedEvent.java | 2 +-
.../copilot/sdk/generated/HookEndEvent.java | 2 +-
.../copilot/sdk/generated/HookStartEvent.java | 2 +-
.../sdk/generated/McpOauthCompletedEvent.java | 2 +-
.../sdk/generated/McpOauthRequiredEvent.java | 2 +-
.../sdk/generated/McpServerSource.java | 39 +++++++++++++++
.../sdk/generated/McpServerStatus.java | 43 +++++++++++++++++
.../sdk/generated/McpServersLoadedServer.java | 9 +++-
.../sdk/generated/ModelCallFailureEvent.java | 2 +-
.../PendingMessagesModifiedEvent.java | 2 +-
.../generated/PermissionCompletedEvent.java | 2 +-
.../generated/PermissionRequestedEvent.java | 2 +-
.../sdk/generated/ReasoningSummary.java | 37 ++++++++++++++
.../sdk/generated/SamplingCompletedEvent.java | 2 +-
.../sdk/generated/SamplingRequestedEvent.java | 2 +-
.../SessionBackgroundTasksChangedEvent.java | 2 +-
.../SessionCompactionCompleteEvent.java | 2 +-
.../SessionCompactionStartEvent.java | 2 +-
.../generated/SessionContextChangedEvent.java | 2 +-
.../SessionCustomAgentsUpdatedEvent.java | 2 +-
.../SessionCustomNotificationEvent.java | 2 +-
.../sdk/generated/SessionErrorEvent.java | 2 +-
.../SessionExtensionsLoadedEvent.java | 2 +-
.../sdk/generated/SessionHandoffEvent.java | 2 +-
.../sdk/generated/SessionIdleEvent.java | 2 +-
.../sdk/generated/SessionInfoEvent.java | 2 +-
.../SessionMcpServerStatusChangedEvent.java | 6 +--
.../SessionMcpServersLoadedEvent.java | 2 +-
.../copilot/sdk/generated/SessionMode.java | 37 ++++++++++++++
.../generated/SessionModeChangedEvent.java | 10 ++--
.../generated/SessionModelChangeEvent.java | 6 ++-
.../generated/SessionPlanChangedEvent.java | 2 +-
.../SessionRemoteSteerableChangedEvent.java | 4 +-
.../sdk/generated/SessionResumeEvent.java | 8 ++--
.../SessionScheduleCancelledEvent.java | 2 +-
.../SessionScheduleCreatedEvent.java | 6 ++-
.../sdk/generated/SessionShutdownEvent.java | 2 +-
.../generated/SessionSkillsLoadedEvent.java | 2 +-
.../generated/SessionSnapshotRewindEvent.java | 2 +-
.../sdk/generated/SessionStartEvent.java | 8 ++--
.../generated/SessionTaskCompleteEvent.java | 2 +-
.../generated/SessionTitleChangedEvent.java | 2 +-
.../generated/SessionToolsUpdatedEvent.java | 3 +-
.../sdk/generated/SessionTruncationEvent.java | 2 +-
.../sdk/generated/SessionUsageInfoEvent.java | 2 +-
.../sdk/generated/SessionWarningEvent.java | 2 +-
.../SessionWorkspaceFileChangedEvent.java | 2 +-
.../sdk/generated/ShutdownModelMetric.java | 5 ++
.../ShutdownModelMetricTokenDetail.java | 5 ++
.../sdk/generated/ShutdownTokenDetail.java | 5 ++
.../sdk/generated/SkillInvokedEvent.java | 2 +-
.../copilot/sdk/generated/SkillSource.java | 45 +++++++++++++++++
.../sdk/generated/SkillsLoadedSkill.java | 9 +++-
.../sdk/generated/SubagentCompletedEvent.java | 2 +-
.../generated/SubagentDeselectedEvent.java | 2 +-
.../sdk/generated/SubagentFailedEvent.java | 2 +-
.../sdk/generated/SubagentSelectedEvent.java | 2 +-
.../sdk/generated/SubagentStartedEvent.java | 2 +-
.../sdk/generated/SystemMessageEvent.java | 2 +-
.../generated/SystemNotificationEvent.java | 2 +-
.../generated/ToolExecutionCompleteEvent.java | 2 +-
.../ToolExecutionPartialResultEvent.java | 2 +-
.../generated/ToolExecutionProgressEvent.java | 2 +-
.../generated/ToolExecutionStartEvent.java | 2 +-
.../sdk/generated/ToolUserRequestedEvent.java | 2 +-
.../generated/UserInputCompletedEvent.java | 2 +-
.../generated/UserInputRequestedEvent.java | 2 +-
.../sdk/generated/UserMessageEvent.java | 2 +-
.../generated/rpc/AccountGetQuotaResult.java | 2 +-
.../generated/rpc/AccountQuotaSnapshot.java | 10 +++-
.../copilot/sdk/generated/rpc/AgentInfo.java | 5 ++
.../sdk/generated/rpc/ConnectParams.java | 2 +-
.../sdk/generated/rpc/ConnectResult.java | 2 +-
.../rpc/ConnectedRemoteSessionMetadata.java | 48 +++++++++++++++++++
.../ConnectedRemoteSessionMetadataKind.java | 35 ++++++++++++++
...nectedRemoteSessionMetadataRepository.java | 31 ++++++++++++
.../generated/rpc/DiscoveredMcpServer.java | 11 +++--
.../rpc/DiscoveredMcpServerType.java | 2 +-
.../copilot/sdk/generated/rpc/Extension.java | 5 ++
.../generated/rpc/InstructionsSources.java | 5 ++
.../sdk/generated/rpc/McpConfigAddParams.java | 4 +-
.../generated/rpc/McpConfigDisableParams.java | 2 +-
.../generated/rpc/McpConfigEnableParams.java | 2 +-
.../generated/rpc/McpConfigListResult.java | 2 +-
.../generated/rpc/McpConfigRemoveParams.java | 2 +-
.../generated/rpc/McpConfigUpdateParams.java | 4 +-
.../sdk/generated/rpc/McpDiscoverParams.java | 2 +-
.../sdk/generated/rpc/McpDiscoverResult.java | 2 +-
.../copilot/sdk/generated/rpc/McpServer.java | 5 ++
.../copilot/sdk/generated/rpc/Model.java | 5 ++
.../rpc/ModelCapabilitiesOverrideLimits.java | 3 ++
...ModelCapabilitiesOverrideLimitsVision.java | 5 ++
.../ModelCapabilitiesOverrideSupports.java | 2 +
.../sdk/generated/rpc/ModelPolicy.java | 2 +-
.../sdk/generated/rpc/ModelPolicyState.java | 37 ++++++++++++++
.../sdk/generated/rpc/ModelsListResult.java | 2 +-
.../copilot/sdk/generated/rpc/PingParams.java | 2 +-
.../copilot/sdk/generated/rpc/PingResult.java | 2 +-
.../copilot/sdk/generated/rpc/Plugin.java | 5 ++
.../sdk/generated/rpc/ReasoningSummary.java | 37 ++++++++++++++
.../sdk/generated/rpc/RemoteSessionMode.java | 2 +-
.../sdk/generated/rpc/ServerAccountApi.java | 2 +-
.../sdk/generated/rpc/ServerMcpApi.java | 2 +-
.../sdk/generated/rpc/ServerMcpConfigApi.java | 12 ++---
.../sdk/generated/rpc/ServerModelsApi.java | 2 +-
.../copilot/sdk/generated/rpc/ServerRpc.java | 4 +-
.../sdk/generated/rpc/ServerSessionFsApi.java | 2 +-
.../sdk/generated/rpc/ServerSessionsApi.java | 12 ++++-
.../sdk/generated/rpc/ServerSkill.java | 7 ++-
.../sdk/generated/rpc/ServerSkillsApi.java | 2 +-
.../generated/rpc/ServerSkillsConfigApi.java | 2 +-
.../sdk/generated/rpc/ServerToolsApi.java | 2 +-
.../sdk/generated/rpc/SessionAgentApi.java | 10 ++--
.../rpc/SessionAgentDeselectParams.java | 2 +-
.../rpc/SessionAgentGetCurrentParams.java | 2 +-
.../rpc/SessionAgentGetCurrentResult.java | 2 +-
.../generated/rpc/SessionAgentListParams.java | 2 +-
.../generated/rpc/SessionAgentListResult.java | 2 +-
.../rpc/SessionAgentReloadParams.java | 2 +-
.../rpc/SessionAgentReloadResult.java | 2 +-
.../rpc/SessionAgentSelectParams.java | 2 +-
.../rpc/SessionAgentSelectResult.java | 2 +-
.../sdk/generated/rpc/SessionAuthApi.java | 2 +-
.../rpc/SessionAuthGetStatusParams.java | 2 +-
.../rpc/SessionAuthGetStatusResult.java | 2 +-
.../sdk/generated/rpc/SessionCommandsApi.java | 8 ++--
...ionCommandsHandlePendingCommandParams.java | 2 +-
...ionCommandsHandlePendingCommandResult.java | 2 +-
.../rpc/SessionCommandsInvokeParams.java | 2 +-
.../rpc/SessionCommandsListParams.java | 2 +-
.../rpc/SessionCommandsListResult.java | 2 +-
...nCommandsRespondToQueuedCommandParams.java | 2 +-
...nCommandsRespondToQueuedCommandResult.java | 2 +-
.../generated/rpc/SessionExtensionsApi.java | 8 ++--
.../rpc/SessionExtensionsDisableParams.java | 2 +-
.../rpc/SessionExtensionsEnableParams.java | 2 +-
.../rpc/SessionExtensionsListParams.java | 2 +-
.../rpc/SessionExtensionsListResult.java | 2 +-
.../rpc/SessionExtensionsReloadParams.java | 2 +-
.../sdk/generated/rpc/SessionFleetApi.java | 2 +-
.../rpc/SessionFleetStartParams.java | 2 +-
.../rpc/SessionFleetStartResult.java | 2 +-
.../rpc/SessionFsAppendFileParams.java | 2 +-
.../generated/rpc/SessionFsExistsParams.java | 2 +-
.../generated/rpc/SessionFsExistsResult.java | 2 +-
.../generated/rpc/SessionFsMkdirParams.java | 2 +-
.../rpc/SessionFsReadFileParams.java | 2 +-
.../rpc/SessionFsReadFileResult.java | 2 +-
.../generated/rpc/SessionFsReaddirParams.java | 2 +-
.../generated/rpc/SessionFsReaddirResult.java | 2 +-
.../rpc/SessionFsReaddirWithTypesEntry.java | 5 ++
.../rpc/SessionFsReaddirWithTypesParams.java | 2 +-
.../rpc/SessionFsReaddirWithTypesResult.java | 2 +-
.../generated/rpc/SessionFsRenameParams.java | 2 +-
.../sdk/generated/rpc/SessionFsRmParams.java | 2 +-
.../rpc/SessionFsSetProviderCapabilities.java | 27 +++++++++++
.../rpc/SessionFsSetProviderParams.java | 6 ++-
.../rpc/SessionFsSetProviderResult.java | 2 +-
.../rpc/SessionFsSqliteExistsParams.java | 27 +++++++++++
.../rpc/SessionFsSqliteExistsResult.java | 27 +++++++++++
.../rpc/SessionFsSqliteQueryParams.java | 34 +++++++++++++
.../rpc/SessionFsSqliteQueryResult.java | 37 ++++++++++++++
.../rpc/SessionFsSqliteQueryType.java | 37 ++++++++++++++
.../generated/rpc/SessionFsStatParams.java | 2 +-
.../generated/rpc/SessionFsStatResult.java | 2 +-
.../rpc/SessionFsWriteFileParams.java | 2 +-
.../sdk/generated/rpc/SessionHistoryApi.java | 4 +-
.../rpc/SessionHistoryCompactParams.java | 2 +-
.../rpc/SessionHistoryCompactResult.java | 2 +-
.../rpc/SessionHistoryTruncateParams.java | 2 +-
.../rpc/SessionHistoryTruncateResult.java | 2 +-
.../generated/rpc/SessionInstructionsApi.java | 2 +-
.../SessionInstructionsGetSourcesParams.java | 2 +-
.../SessionInstructionsGetSourcesResult.java | 2 +-
.../sdk/generated/rpc/SessionLogParams.java | 2 +-
.../sdk/generated/rpc/SessionLogResult.java | 2 +-
.../sdk/generated/rpc/SessionMcpApi.java | 8 ++--
.../rpc/SessionMcpDisableParams.java | 2 +-
.../generated/rpc/SessionMcpEnableParams.java | 2 +-
.../generated/rpc/SessionMcpListParams.java | 2 +-
.../generated/rpc/SessionMcpListResult.java | 2 +-
.../sdk/generated/rpc/SessionMcpOauthApi.java | 2 +-
.../rpc/SessionMcpOauthLoginParams.java | 2 +-
.../rpc/SessionMcpOauthLoginResult.java | 2 +-
.../generated/rpc/SessionMcpReloadParams.java | 2 +-
.../sdk/generated/rpc/SessionMode.java | 2 +-
.../sdk/generated/rpc/SessionModeApi.java | 4 +-
.../generated/rpc/SessionModeGetParams.java | 2 +-
.../generated/rpc/SessionModeSetParams.java | 4 +-
.../sdk/generated/rpc/SessionModelApi.java | 4 +-
.../rpc/SessionModelGetCurrentParams.java | 2 +-
.../rpc/SessionModelGetCurrentResult.java | 2 +-
.../rpc/SessionModelSwitchToParams.java | 6 ++-
.../rpc/SessionModelSwitchToResult.java | 2 +-
.../sdk/generated/rpc/SessionNameApi.java | 4 +-
.../generated/rpc/SessionNameGetParams.java | 2 +-
.../generated/rpc/SessionNameGetResult.java | 2 +-
.../generated/rpc/SessionNameSetParams.java | 2 +-
.../generated/rpc/SessionPermissionsApi.java | 6 +--
...sHandlePendingPermissionRequestParams.java | 3 +-
...sHandlePendingPermissionRequestResult.java | 2 +-
...ermissionsResetSessionApprovalsParams.java | 2 +-
...ermissionsResetSessionApprovalsResult.java | 2 +-
...SessionPermissionsSetApproveAllParams.java | 2 +-
...SessionPermissionsSetApproveAllResult.java | 2 +-
.../sdk/generated/rpc/SessionPlanApi.java | 6 +--
.../rpc/SessionPlanDeleteParams.java | 2 +-
.../generated/rpc/SessionPlanReadParams.java | 2 +-
.../generated/rpc/SessionPlanReadResult.java | 2 +-
.../rpc/SessionPlanUpdateParams.java | 2 +-
.../sdk/generated/rpc/SessionPluginsApi.java | 2 +-
.../rpc/SessionPluginsListParams.java | 2 +-
.../rpc/SessionPluginsListResult.java | 2 +-
.../sdk/generated/rpc/SessionRemoteApi.java | 4 +-
.../rpc/SessionRemoteDisableParams.java | 2 +-
.../rpc/SessionRemoteEnableParams.java | 4 +-
.../rpc/SessionRemoteEnableResult.java | 4 +-
.../copilot/sdk/generated/rpc/SessionRpc.java | 4 +-
.../sdk/generated/rpc/SessionShellApi.java | 4 +-
.../generated/rpc/SessionShellExecParams.java | 2 +-
.../generated/rpc/SessionShellExecResult.java | 2 +-
.../generated/rpc/SessionShellKillParams.java | 2 +-
.../generated/rpc/SessionShellKillResult.java | 2 +-
.../sdk/generated/rpc/SessionSkillsApi.java | 8 ++--
.../rpc/SessionSkillsDisableParams.java | 2 +-
.../rpc/SessionSkillsEnableParams.java | 2 +-
.../rpc/SessionSkillsListParams.java | 2 +-
.../rpc/SessionSkillsListResult.java | 2 +-
.../rpc/SessionSkillsReloadParams.java | 2 +-
.../rpc/SessionSkillsReloadResult.java | 2 +-
.../generated/rpc/SessionSuspendParams.java | 2 +-
.../sdk/generated/rpc/SessionTasksApi.java | 12 ++---
.../rpc/SessionTasksCancelParams.java | 2 +-
.../rpc/SessionTasksCancelResult.java | 2 +-
.../generated/rpc/SessionTasksListParams.java | 2 +-
.../generated/rpc/SessionTasksListResult.java | 2 +-
...SessionTasksPromoteToBackgroundParams.java | 2 +-
...SessionTasksPromoteToBackgroundResult.java | 2 +-
.../rpc/SessionTasksRemoveParams.java | 2 +-
.../rpc/SessionTasksRemoveResult.java | 2 +-
.../rpc/SessionTasksSendMessageParams.java | 2 +-
.../rpc/SessionTasksSendMessageResult.java | 2 +-
.../rpc/SessionTasksStartAgentParams.java | 2 +-
.../rpc/SessionTasksStartAgentResult.java | 2 +-
.../sdk/generated/rpc/SessionToolsApi.java | 2 +-
...ssionToolsHandlePendingToolCallParams.java | 2 +-
...ssionToolsHandlePendingToolCallResult.java | 2 +-
.../sdk/generated/rpc/SessionUiApi.java | 4 +-
.../rpc/SessionUiElicitationParams.java | 2 +-
...ssionUiHandlePendingElicitationParams.java | 2 +-
...ssionUiHandlePendingElicitationResult.java | 2 +-
.../sdk/generated/rpc/SessionUsageApi.java | 2 +-
.../rpc/SessionUsageGetMetricsParams.java | 2 +-
.../rpc/SessionUsageGetMetricsResult.java | 2 +-
.../generated/rpc/SessionWorkspacesApi.java | 8 ++--
.../SessionWorkspacesCreateFileParams.java | 2 +-
.../SessionWorkspacesGetWorkspaceParams.java | 2 +-
.../SessionWorkspacesGetWorkspaceResult.java | 2 +-
.../rpc/SessionWorkspacesListFilesParams.java | 2 +-
.../rpc/SessionWorkspacesListFilesResult.java | 2 +-
.../rpc/SessionWorkspacesReadFileParams.java | 2 +-
.../rpc/SessionWorkspacesReadFileResult.java | 2 +-
.../generated/rpc/SessionsConnectParams.java | 27 +++++++++++
.../generated/rpc/SessionsConnectResult.java | 29 +++++++++++
.../sdk/generated/rpc/SessionsForkParams.java | 2 +-
.../sdk/generated/rpc/SessionsForkResult.java | 2 +-
.../copilot/sdk/generated/rpc/Skill.java | 9 +++-
.../sdk/generated/rpc/SkillSource.java | 45 +++++++++++++++++
.../SkillsConfigSetDisabledSkillsParams.java | 2 +-
.../generated/rpc/SkillsDiscoverParams.java | 2 +-
.../generated/rpc/SkillsDiscoverResult.java | 2 +-
.../sdk/generated/rpc/SlashCommandInfo.java | 5 ++
.../copilot/sdk/generated/rpc/Tool.java | 5 ++
.../sdk/generated/rpc/ToolsListParams.java | 2 +-
.../sdk/generated/rpc/ToolsListResult.java | 2 +-
.../rpc/UsageMetricsModelMetric.java | 5 ++
.../UsageMetricsModelMetricTokenDetail.java | 5 ++
.../rpc/UsageMetricsTokenDetail.java | 5 ++
307 files changed, 1259 insertions(+), 340 deletions(-)
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/SessionMode.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/SkillSource.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderCapabilities.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsParams.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsResult.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryParams.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryResult.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryType.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectParams.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectResult.java
create mode 100644 src/generated/java/com/github/copilot/sdk/generated/rpc/SkillSource.java
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java
index 16cfabc0e6..297f23f722 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code abort} session event.
+ * Session event "abort". Turn abort information including the reason for termination
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java
index a1c22edfb1..332daeb179 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.intent} session event.
+ * Session event "assistant.intent". Agent intent description for current activity or plan
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java
index 128608a1e1..ff84f757d5 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.message_delta} session event.
+ * Session event "assistant.message_delta". Streaming assistant message delta for incremental response updates
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java
index 3ac0b9780a..98af7b90ad 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.message} session event.
+ * Session event "assistant.message". Assistant response containing text content, optional tool requests, and interaction metadata
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java
index 8cf1a9c8e7..8a83da9439 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.message_start} session event.
+ * Session event "assistant.message_start". Streaming assistant message start metadata
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java
index 7c11ad59e7..5c7a6f94b9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.reasoning_delta} session event.
+ * Session event "assistant.reasoning_delta". Streaming reasoning delta for incremental extended thinking updates
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java
index 292b191b14..58a7e665d4 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.reasoning} session event.
+ * Session event "assistant.reasoning". Assistant reasoning content for timeline display with complete thinking text
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java
index 71ec8f4884..70707a56e3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.streaming_delta} session event.
+ * Session event "assistant.streaming_delta". Streaming response progress with cumulative byte count
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java
index a8e0b16525..e349711dc8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.turn_end} session event.
+ * Session event "assistant.turn_end". Turn completion metadata including the turn identifier
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java
index 921623801d..245803774e 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.turn_start} session event.
+ * Session event "assistant.turn_start". Turn initialization metadata including identifier and interaction tracking
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
index ba97e03958..d704a862c3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code assistant.usage} session event.
+ * Session event "assistant.usage". LLM API call usage metrics including tokens, costs, quotas, and billing information
*
* @since 1.0.0
*/
@@ -70,7 +70,7 @@ public record AssistantUsageEventData(
@JsonProperty("quotaSnapshots") Map quotaSnapshots,
/** Per-request cost and usage data from the CAPI copilot_usage response field */
@JsonProperty("copilotUsage") AssistantUsageCopilotUsage copilotUsage,
- /** Reasoning effort level used for model calls, if applicable (e.g. "low", "medium", "high", "xhigh") */
+ /** Reasoning effort level used for model calls, if applicable (e.g. "none", "low", "medium", "high", "xhigh", "max") */
@JsonProperty("reasoningEffort") String reasoningEffort
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java
index 0986f67d71..9e5675360e 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java
@@ -13,6 +13,11 @@
import java.time.OffsetDateTime;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `AssistantUsageQuotaSnapshot` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java
index a6d994d6b8..09c15cc1a8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code auto_mode_switch.completed} session event.
+ * Session event "auto_mode_switch.completed". Auto mode switch completion notification
*
* @since 1.0.0
*/
@@ -37,8 +37,8 @@ public final class AutoModeSwitchCompletedEvent extends SessionEvent {
public record AutoModeSwitchCompletedEventData(
/** Request ID of the resolved request; clients should dismiss any UI for this request */
@JsonProperty("requestId") String requestId,
- /** The user's choice: 'yes', 'yes_always', or 'no' */
- @JsonProperty("response") String response
+ /** The user's auto-mode-switch choice */
+ @JsonProperty("response") AutoModeSwitchResponse response
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java
index e234ccd287..b1a768adc9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code auto_mode_switch.requested} session event.
+ * Session event "auto_mode_switch.requested". Auto mode switch request notification requiring user approval
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java
new file mode 100644
index 0000000000..3f677ca202
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * The user's auto-mode-switch choice
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum AutoModeSwitchResponse {
+ /** The {@code yes} variant. */
+ YES("yes"),
+ /** The {@code yes_always} variant. */
+ YES_ALWAYS("yes_always"),
+ /** The {@code no} variant. */
+ NO("no");
+
+ private final String value;
+ AutoModeSwitchResponse(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static AutoModeSwitchResponse fromValue(String value) {
+ for (AutoModeSwitchResponse v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown AutoModeSwitchResponse value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java
index 6ee7768fbb..ff359b04a0 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code capabilities.changed} session event.
+ * Session event "capabilities.changed". Session capability change notification
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java
index d2075f09d3..584cde38b3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code command.completed} session event.
+ * Session event "command.completed". Queued command completion notification signaling UI dismissal
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java b/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java
index a9b0608dba..5d07300e8b 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code command.execute} session event.
+ * Session event "command.execute". Registered command dispatch request routed to the owning client
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java
index 6599f4da64..f724f52993 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code command.queued} session event.
+ * Session event "command.queued". Queued slash command dispatch request for client execution
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java b/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java
index 30c8e99627..cb446ee24c 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java
@@ -12,11 +12,18 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `CommandsChangedCommand` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public record CommandsChangedCommand(
+ /** Slash command name without the leading slash. */
@JsonProperty("name") String name,
+ /** Optional human-readable command description. */
@JsonProperty("description") String description
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java
index 48576c314a..7b2d3c2c12 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code commands.changed} session event.
+ * Session event "commands.changed". SDK command registration change notification
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java b/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java
index 0d9dbc295b..154e763778 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java
@@ -13,6 +13,11 @@
import java.util.List;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `CustomAgentsUpdatedAgent` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java
index ae94b6bf31..ee713a1002 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code elicitation.completed} session event.
+ * Session event "elicitation.completed". Elicitation request completion with the user's response
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java
index fd5773df6f..000c242c9a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code elicitation.requested} session event.
+ * Session event "elicitation.requested". Elicitation request; may be form-based (structured input) or URL-based (browser redirect)
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java
new file mode 100644
index 0000000000..a8b85ad943
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java
@@ -0,0 +1,39 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Exit plan mode action
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ExitPlanModeAction {
+ /** The {@code exit_only} variant. */
+ EXIT_ONLY("exit_only"),
+ /** The {@code interactive} variant. */
+ INTERACTIVE("interactive"),
+ /** The {@code autopilot} variant. */
+ AUTOPILOT("autopilot"),
+ /** The {@code autopilot_fleet} variant. */
+ AUTOPILOT_FLEET("autopilot_fleet");
+
+ private final String value;
+ ExitPlanModeAction(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ExitPlanModeAction fromValue(String value) {
+ for (ExitPlanModeAction v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ExitPlanModeAction value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java
index 56c2c66813..3788532933 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code exit_plan_mode.completed} session event.
+ * Session event "exit_plan_mode.completed". Plan mode exit completion with the user's approval decision and optional feedback
*
* @since 1.0.0
*/
@@ -39,8 +39,8 @@ public record ExitPlanModeCompletedEventData(
@JsonProperty("requestId") String requestId,
/** Whether the plan was approved by the user */
@JsonProperty("approved") Boolean approved,
- /** Which action the user selected (e.g. 'autopilot', 'interactive', 'exit_only') */
- @JsonProperty("selectedAction") String selectedAction,
+ /** Action selected by the user */
+ @JsonProperty("selectedAction") ExitPlanModeAction selectedAction,
/** Whether edits should be auto-approved without confirmation */
@JsonProperty("autoApproveEdits") Boolean autoApproveEdits,
/** Free-form feedback from the user if they requested changes to the plan */
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java
index de2bf45a84..e96124bc7e 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code exit_plan_mode.requested} session event.
+ * Session event "exit_plan_mode.requested". Plan approval request with plan content and available user actions
*
* @since 1.0.0
*/
@@ -42,10 +42,10 @@ public record ExitPlanModeRequestedEventData(
@JsonProperty("summary") String summary,
/** Full content of the plan file */
@JsonProperty("planContent") String planContent,
- /** Available actions the user can take (e.g., approve, edit, reject) */
- @JsonProperty("actions") List actions,
- /** The recommended action for the user to take */
- @JsonProperty("recommendedAction") String recommendedAction
+ /** Available actions the user can take */
+ @JsonProperty("actions") List actions,
+ /** Recommended action to preselect for the user */
+ @JsonProperty("recommendedAction") ExitPlanModeAction recommendedAction
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java b/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java
index 366ea550cd..32e8ae4601 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `ExtensionsLoadedExtension` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java
index e9526c6faf..be086cb6d8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code external_tool.completed} session event.
+ * Session event "external_tool.completed". External tool completion notification signaling UI dismissal
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java
index 8e646c1a5c..72591dd47c 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code external_tool.requested} session event.
+ * Session event "external_tool.requested". External tool invocation request for client-side tool execution
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java b/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java
index c2a80b0f3d..71b148fb13 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code hook.end} session event.
+ * Session event "hook.end". Hook invocation completion details including output, success status, and error information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java
index ffca1dfe0b..0505c4182a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code hook.start} session event.
+ * Session event "hook.start". Hook invocation start details including type and input data
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java
index 3d410bf2d2..33a56f8248 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code mcp.oauth_completed} session event.
+ * Session event "mcp.oauth_completed". MCP OAuth request completion notification
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java b/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java
index c7ef7a12af..c2e9843da1 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code mcp.oauth_required} session event.
+ * Session event "mcp.oauth_required". OAuth authentication request for an MCP server
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java b/src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java
new file mode 100644
index 0000000000..15cff507a4
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java
@@ -0,0 +1,39 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Configuration source: user, workspace, plugin, or builtin
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum McpServerSource {
+ /** The {@code user} variant. */
+ USER("user"),
+ /** The {@code workspace} variant. */
+ WORKSPACE("workspace"),
+ /** The {@code plugin} variant. */
+ PLUGIN("plugin"),
+ /** The {@code builtin} variant. */
+ BUILTIN("builtin");
+
+ private final String value;
+ McpServerSource(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static McpServerSource fromValue(String value) {
+ for (McpServerSource v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown McpServerSource value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java b/src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java
new file mode 100644
index 0000000000..f9c948f10c
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java
@@ -0,0 +1,43 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Connection status: connected, failed, needs-auth, pending, disabled, or not_configured
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum McpServerStatus {
+ /** The {@code connected} variant. */
+ CONNECTED("connected"),
+ /** The {@code failed} variant. */
+ FAILED("failed"),
+ /** The {@code needs-auth} variant. */
+ NEEDS_AUTH("needs-auth"),
+ /** The {@code pending} variant. */
+ PENDING("pending"),
+ /** The {@code disabled} variant. */
+ DISABLED("disabled"),
+ /** The {@code not_configured} variant. */
+ NOT_CONFIGURED("not_configured");
+
+ private final String value;
+ McpServerStatus(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static McpServerStatus fromValue(String value) {
+ for (McpServerStatus v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown McpServerStatus value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java b/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java
index 9e17180ded..dbd08ede71 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `McpServersLoadedServer` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@@ -19,9 +24,9 @@ public record McpServersLoadedServer(
/** Server name (config key) */
@JsonProperty("name") String name,
/** Connection status: connected, failed, needs-auth, pending, disabled, or not_configured */
- @JsonProperty("status") McpServersLoadedServerStatus status,
+ @JsonProperty("status") McpServerStatus status,
/** Configuration source: user, workspace, plugin, or builtin */
- @JsonProperty("source") String source,
+ @JsonProperty("source") McpServerSource source,
/** Error message if the server failed to connect */
@JsonProperty("error") String error
) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java
index 939e49ef55..33a3f86189 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code model.call_failure} session event.
+ * Session event "model.call_failure". Failed LLM API call metadata for telemetry
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java
index 56f8ed520e..7cdcf1d3a8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code pending_messages.modified} session event.
+ * Session event "pending_messages.modified". Empty payload; the event signals that the pending message queue has changed
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java
index 0b8da105e2..feeb4ca822 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code permission.completed} session event.
+ * Session event "permission.completed". Permission request completion notification signaling UI dismissal
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java
index 7892d3afe5..fda4db42f3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code permission.requested} session event.
+ * Session event "permission.requested". Permission request notification requiring client approval with request details
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java b/src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java
new file mode 100644
index 0000000000..98897bbc92
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Reasoning summary mode used for model calls, if applicable (e.g. "none", "concise", "detailed")
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ReasoningSummary {
+ /** The {@code none} variant. */
+ NONE("none"),
+ /** The {@code concise} variant. */
+ CONCISE("concise"),
+ /** The {@code detailed} variant. */
+ DETAILED("detailed");
+
+ private final String value;
+ ReasoningSummary(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ReasoningSummary fromValue(String value) {
+ for (ReasoningSummary v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ReasoningSummary value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java
index ae21575094..2c6b264aa9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code sampling.completed} session event.
+ * Session event "sampling.completed". Sampling request completion notification signaling UI dismissal
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java
index 7b92f5fafe..2be3cfc491 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code sampling.requested} session event.
+ * Session event "sampling.requested". Sampling request from an MCP server; contains the server name and a requestId for correlation
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java
index fa996cf0e3..062954dfbf 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.background_tasks_changed} session event.
+ * Session event "session.background_tasks_changed".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java
index 5f37980987..b6a3775e9d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.compaction_complete} session event.
+ * Session event "session.compaction_complete". Conversation compaction results including success status, metrics, and optional error details
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java
index 2e0fb6d6f4..2ff7ace484 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.compaction_start} session event.
+ * Session event "session.compaction_start". Context window breakdown at the start of LLM-powered conversation compaction
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java
index 0eb9e7e34b..6cc775d528 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.context_changed} session event.
+ * Session event "session.context_changed". Updated working directory and git context after the change
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java
index be5e15e91a..ec10ed9c93 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.custom_agents_updated} session event.
+ * Session event "session.custom_agents_updated".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
index 8d3e3b68ac..3078895b7a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.custom_notification} session event.
+ * Session event "session.custom_notification". Opaque custom notification data. Consumers may branch on source and name, but payload semantics are source-defined.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
index 5c174c4357..48ae04ade0 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.error} session event.
+ * Session event "session.error". Error details for timeline display including message and optional diagnostic information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java
index 4d3420174e..a1b9b8fcef 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.extensions_loaded} session event.
+ * Session event "session.extensions_loaded".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java
index 86706272f5..11599defae 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.handoff} session event.
+ * Session event "session.handoff". Session handoff metadata including source, context, and repository information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java
index 86376ae7c1..cdb38a3444 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.idle} session event.
+ * Session event "session.idle". Payload indicating the session is idle with no background agents in flight
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java
index 01c1e0efbe..c0613dfa20 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.info} session event.
+ * Session event "session.info". Informational message for timeline display with categorization
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java
index c422bf29a9..27cf4d9cc6 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.mcp_server_status_changed} session event.
+ * Session event "session.mcp_server_status_changed".
*
* @since 1.0.0
*/
@@ -37,8 +37,8 @@ public final class SessionMcpServerStatusChangedEvent extends SessionEvent {
public record SessionMcpServerStatusChangedEventData(
/** Name of the MCP server whose status changed */
@JsonProperty("serverName") String serverName,
- /** New connection status: connected, failed, needs-auth, pending, disabled, or not_configured */
- @JsonProperty("status") McpServerStatusChangedStatus status
+ /** Connection status: connected, failed, needs-auth, pending, disabled, or not_configured */
+ @JsonProperty("status") McpServerStatus status
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java
index be2d4cf744..0a0b7bc50b 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.mcp_servers_loaded} session event.
+ * Session event "session.mcp_servers_loaded".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMode.java b/src/generated/java/com/github/copilot/sdk/generated/SessionMode.java
new file mode 100644
index 0000000000..f6359c0df9
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionMode.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * The session mode the agent is operating in
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum SessionMode {
+ /** The {@code interactive} variant. */
+ INTERACTIVE("interactive"),
+ /** The {@code plan} variant. */
+ PLAN("plan"),
+ /** The {@code autopilot} variant. */
+ AUTOPILOT("autopilot");
+
+ private final String value;
+ SessionMode(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static SessionMode fromValue(String value) {
+ for (SessionMode v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown SessionMode value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java
index 82ae9ff39c..c997f9850d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.mode_changed} session event.
+ * Session event "session.mode_changed". Agent mode change details including previous and new modes
*
* @since 1.0.0
*/
@@ -35,10 +35,10 @@ public final class SessionModeChangedEvent extends SessionEvent {
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public record SessionModeChangedEventData(
- /** Agent mode before the change (e.g., "interactive", "plan", "autopilot") */
- @JsonProperty("previousMode") String previousMode,
- /** Agent mode after the change (e.g., "interactive", "plan", "autopilot") */
- @JsonProperty("newMode") String newMode
+ /** The session mode the agent is operating in */
+ @JsonProperty("previousMode") SessionMode previousMode,
+ /** The session mode the agent is operating in */
+ @JsonProperty("newMode") SessionMode newMode
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java
index 812cff0e81..8225fc78f9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.model_change} session event.
+ * Session event "session.model_change". Model change details including previous and new model identifiers
*
* @since 1.0.0
*/
@@ -43,6 +43,10 @@ public record SessionModelChangeEventData(
@JsonProperty("previousReasoningEffort") String previousReasoningEffort,
/** Reasoning effort level after the model change, if applicable */
@JsonProperty("reasoningEffort") String reasoningEffort,
+ /** Reasoning summary mode before the model change, if applicable */
+ @JsonProperty("previousReasoningSummary") ReasoningSummary previousReasoningSummary,
+ /** Reasoning summary mode after the model change, if applicable */
+ @JsonProperty("reasoningSummary") ReasoningSummary reasoningSummary,
/** Reason the change happened, when not user-initiated. Currently `"rate_limit_auto_switch"` for changes triggered by the auto-mode-switch rate-limit recovery path. UI clients can use this to render contextual copy. */
@JsonProperty("cause") String cause
) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java
index 4677d1cdb3..266ec307dc 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.plan_changed} session event.
+ * Session event "session.plan_changed". Plan file operation details indicating what changed
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java
index ba752f4c62..5ba9423155 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.remote_steerable_changed} session event.
+ * Session event "session.remote_steerable_changed". Notifies that the session's remote steering capability has changed
*
* @since 1.0.0
*/
@@ -35,7 +35,7 @@ public final class SessionRemoteSteerableChangedEvent extends SessionEvent {
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public record SessionRemoteSteerableChangedEventData(
- /** Whether this session now supports remote steering via Mission Control */
+ /** Whether this session now supports remote steering via GitHub */
@JsonProperty("remoteSteerable") Boolean remoteSteerable
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java
index 31bd3b4c36..93316117ba 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.resume} session event.
+ * Session event "session.resume". Session resume metadata including current context and event count
*
* @since 1.0.0
*/
@@ -42,15 +42,17 @@ public record SessionResumeEventData(
@JsonProperty("eventCount") Double eventCount,
/** Model currently selected at resume time */
@JsonProperty("selectedModel") String selectedModel,
- /** Reasoning effort level used for model calls, if applicable (e.g. "low", "medium", "high", "xhigh") */
+ /** Reasoning effort level used for model calls, if applicable (e.g. "none", "low", "medium", "high", "xhigh", "max") */
@JsonProperty("reasoningEffort") String reasoningEffort,
+ /** Reasoning summary mode used for model calls, if applicable (e.g. "none", "concise", "detailed") */
+ @JsonProperty("reasoningSummary") ReasoningSummary reasoningSummary,
/** Updated working directory and git context at resume time */
@JsonProperty("context") WorkingDirectoryContext context,
/** Whether the session was already in use by another client at resume time */
@JsonProperty("alreadyInUse") Boolean alreadyInUse,
/** True when this resume attached to a session that the runtime already had running in-memory (for example, an extension joining a session another client was actively driving). False (or omitted) for cold resumes — the runtime had to reconstitute the session from its persisted event log. */
@JsonProperty("sessionWasActive") Boolean sessionWasActive,
- /** Whether this session supports remote steering via Mission Control */
+ /** Whether this session supports remote steering via GitHub */
@JsonProperty("remoteSteerable") Boolean remoteSteerable,
/** When true, tool calls and permission requests left in flight by the previous session lifetime remain pending after resume and the agentic loop awaits their results. User sends are queued behind the pending work until all such requests reach a terminal state. When false (the default), any such tool calls and permission requests are immediately marked as interrupted on resume. */
@JsonProperty("continuePendingWork") Boolean continuePendingWork
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java
index 01cd6e4619..2c480a7575 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.schedule_cancelled} session event.
+ * Session event "session.schedule_cancelled". Scheduled prompt cancelled from the schedule manager dialog
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
index bf0be67caf..eb051a0142 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.schedule_created} session event.
+ * Session event "session.schedule_created". Scheduled prompt registered via /every or /after
*
* @since 1.0.0
*/
@@ -42,7 +42,9 @@ public record SessionScheduleCreatedEventData(
/** Prompt text that gets enqueued on every tick */
@JsonProperty("prompt") String prompt,
/** Whether the schedule re-arms after each tick (`/every`) or fires once (`/after`) */
- @JsonProperty("recurring") Boolean recurring
+ @JsonProperty("recurring") Boolean recurring,
+ /** Optional user-facing label shown in the timeline instead of the actual prompt (e.g. `/skill-name args` when the prompt is a skill invocation expansion) */
+ @JsonProperty("displayPrompt") String displayPrompt
) {
}
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java
index 97d5060d32..269416994b 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.shutdown} session event.
+ * Session event "session.shutdown". Session termination metrics including usage statistics, code changes, and shutdown reason
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java
index b5e64465df..c429125bf8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.skills_loaded} session event.
+ * Session event "session.skills_loaded".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java
index 8842827fbc..0b564f2910 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.snapshot_rewind} session event.
+ * Session event "session.snapshot_rewind". Session rewind details including target event and count of removed events
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java
index f5d6378fcd..d3484b3e14 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.start} session event.
+ * Session event "session.start". Session initialization metadata including context and configuration
*
* @since 1.0.0
*/
@@ -48,13 +48,15 @@ public record SessionStartEventData(
@JsonProperty("startTime") OffsetDateTime startTime,
/** Model selected at session creation time, if any */
@JsonProperty("selectedModel") String selectedModel,
- /** Reasoning effort level used for model calls, if applicable (e.g. "low", "medium", "high", "xhigh") */
+ /** Reasoning effort level used for model calls, if applicable (e.g. "none", "low", "medium", "high", "xhigh", "max") */
@JsonProperty("reasoningEffort") String reasoningEffort,
+ /** Reasoning summary mode used for model calls, if applicable (e.g. "none", "concise", "detailed") */
+ @JsonProperty("reasoningSummary") ReasoningSummary reasoningSummary,
/** Working directory and git context at session start */
@JsonProperty("context") WorkingDirectoryContext context,
/** Whether the session was already in use by another client at start time */
@JsonProperty("alreadyInUse") Boolean alreadyInUse,
- /** Whether this session supports remote steering via Mission Control */
+ /** Whether this session supports remote steering via GitHub */
@JsonProperty("remoteSteerable") Boolean remoteSteerable,
/** When set, identifies a parent session whose context this session continues — e.g., a detached headless rem-agent run launched on the parent's interactive shutdown. Telemetry from this session is reported under the parent's session_id. */
@JsonProperty("detachedFromSpawningParentSessionId") String detachedFromSpawningParentSessionId
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java
index 1af7e699bf..f114ff82b3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.task_complete} session event.
+ * Session event "session.task_complete". Task completion notification with summary from the agent
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java
index 3093301883..4d6086bf3e 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.title_changed} session event.
+ * Session event "session.title_changed". Session title change payload containing the new display title
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java
index a3b5313cf7..0cb8614c7a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.tools_updated} session event.
+ * Session event "session.tools_updated".
*
* @since 1.0.0
*/
@@ -35,6 +35,7 @@ public final class SessionToolsUpdatedEvent extends SessionEvent {
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public record SessionToolsUpdatedEventData(
+ /** Identifier of the model the resolved tools apply to. */
@JsonProperty("model") String model
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java
index 103d1d0173..b2ffad48f0 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.truncation} session event.
+ * Session event "session.truncation". Conversation truncation statistics including token counts and removed content metrics
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java
index f83c360246..7c9c19eafd 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.usage_info} session event.
+ * Session event "session.usage_info". Current context window usage statistics including token and message counts
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java
index 1870a26e8a..fc0a0778e6 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.warning} session event.
+ * Session event "session.warning". Warning message for timeline display with categorization
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java
index 9dedc7a5e3..ba9032664d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code session.workspace_file_changed} session event.
+ * Session event "session.workspace_file_changed". Workspace file change details including path and operation type
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java b/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java
index e7a831ca67..bc7d41d8b3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java
@@ -13,6 +13,11 @@
import java.util.Map;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `ShutdownModelMetric` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java b/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java
index 9f7cde6301..658efe35a7 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `ShutdownModelMetricTokenDetail` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java b/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java
index ec51804886..6a9b3188a5 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `ShutdownTokenDetail` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java
index e6c696eb0b..6aa2385443 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code skill.invoked} session event.
+ * Session event "skill.invoked". Skill invocation details including content, allowed tools, and plugin metadata
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillSource.java b/src/generated/java/com/github/copilot/sdk/generated/SkillSource.java
new file mode 100644
index 0000000000..9951c1da93
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/SkillSource.java
@@ -0,0 +1,45 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: session-events.schema.json
+
+package com.github.copilot.sdk.generated;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Source location type (e.g., project, personal-copilot, plugin, builtin)
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum SkillSource {
+ /** The {@code project} variant. */
+ PROJECT("project"),
+ /** The {@code inherited} variant. */
+ INHERITED("inherited"),
+ /** The {@code personal-copilot} variant. */
+ PERSONAL_COPILOT("personal-copilot"),
+ /** The {@code personal-agents} variant. */
+ PERSONAL_AGENTS("personal-agents"),
+ /** The {@code plugin} variant. */
+ PLUGIN("plugin"),
+ /** The {@code custom} variant. */
+ CUSTOM("custom"),
+ /** The {@code builtin} variant. */
+ BUILTIN("builtin");
+
+ private final String value;
+ SkillSource(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static SkillSource fromValue(String value) {
+ for (SkillSource v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown SkillSource value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java b/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java
index 2183dad5c4..21f0dc0f45 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `SkillsLoadedSkill` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@@ -20,8 +25,8 @@ public record SkillsLoadedSkill(
@JsonProperty("name") String name,
/** Description of what the skill does */
@JsonProperty("description") String description,
- /** Source location type of the skill (e.g., project, personal, plugin) */
- @JsonProperty("source") String source,
+ /** Source location type (e.g., project, personal-copilot, plugin, builtin) */
+ @JsonProperty("source") SkillSource source,
/** Whether the skill can be invoked by the user as a slash command */
@JsonProperty("userInvocable") Boolean userInvocable,
/** Whether the skill is currently enabled */
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java
index b2cce20c31..f61235b4a8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code subagent.completed} session event.
+ * Session event "subagent.completed". Sub-agent completion details for successful execution
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java
index 3db9429dbf..391df6d49a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code subagent.deselected} session event.
+ * Session event "subagent.deselected". Empty payload; the event signals that the custom agent was deselected, returning to the default agent
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java
index 490532fc38..19644eee15 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code subagent.failed} session event.
+ * Session event "subagent.failed". Sub-agent failure details including error message and agent information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java
index e910bc9c27..b342e4230c 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code subagent.selected} session event.
+ * Session event "subagent.selected". Custom agent selection details including name and available tools
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java
index 4bc945c9c0..737d773f12 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code subagent.started} session event.
+ * Session event "subagent.started". Sub-agent startup details including parent tool call and agent information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java
index 07ae27000b..82976c0044 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code system.message} session event.
+ * Session event "system.message". System/developer instruction content with role and optional template metadata
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java b/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java
index 877b3db984..ba11910e03 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code system.notification} session event.
+ * Session event "system.notification". System-generated notification for runtime events like background task completion
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java
index a1deeeab56..b4ac9b7999 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code tool.execution_complete} session event.
+ * Session event "tool.execution_complete". Tool execution completion results including success status, detailed output, and error information
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java
index 5fbddc5cca..e548cc1b03 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code tool.execution_partial_result} session event.
+ * Session event "tool.execution_partial_result". Streaming tool execution output for incremental result display
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java
index 2a77c05ffe..d2b20312a3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code tool.execution_progress} session event.
+ * Session event "tool.execution_progress". Tool execution progress notification with status message
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java
index 5a48cdd977..a98f7dec3d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code tool.execution_start} session event.
+ * Session event "tool.execution_start". Tool execution startup details including MCP server information when applicable
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java
index ac798fd3f3..ffd69535dd 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code tool.user_requested} session event.
+ * Session event "tool.user_requested". User-initiated tool invocation request with tool name and arguments
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java
index 7b69bfd926..66883aa629 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code user_input.completed} session event.
+ * Session event "user_input.completed". User input request completion with the user's response
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java b/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java
index 69581e20a2..bb903191b3 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code user_input.requested} session event.
+ * Session event "user_input.requested". User input request notification with question and optional predefined choices
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java b/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
index fa680d3e64..bf30633b04 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * The {@code user.message} session event.
+ * Session event "user.message".
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java
index 47e3b55ee6..4685196234 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code account.getQuota} RPC method.
+ * Quota usage snapshots for the resolved user, keyed by quota type.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java
index c6d8149300..2bd1ac2f6b 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java
@@ -10,15 +10,21 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
+import java.time.OffsetDateTime;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `AccountQuotaSnapshot` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public record AccountQuotaSnapshot(
/** Whether the user has an unlimited usage entitlement */
@JsonProperty("isUnlimitedEntitlement") Boolean isUnlimitedEntitlement,
- /** Number of requests included in the entitlement */
+ /** Number of requests included in the entitlement, or -1 for unlimited entitlements */
@JsonProperty("entitlementRequests") Long entitlementRequests,
/** Number of requests used so far this period */
@JsonProperty("usedRequests") Long usedRequests,
@@ -31,6 +37,6 @@ public record AccountQuotaSnapshot(
/** Whether overage is allowed when quota is exhausted */
@JsonProperty("overageAllowedWithExhaustedQuota") Boolean overageAllowedWithExhaustedQuota,
/** Date when the quota resets (ISO 8601 string) */
- @JsonProperty("resetDate") String resetDate
+ @JsonProperty("resetDate") OffsetDateTime resetDate
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java
index 4695ff9fb9..66493bce29 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `AgentInfo` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java
index 665cd9694c..b22245ed93 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code connect} RPC method.
+ * Optional connection token presented by the SDK client during the handshake.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java
index 56666b2523..f51b1a9c39 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code connect} RPC method.
+ * Handshake result reporting the server's protocol version and package version on success.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java
new file mode 100644
index 0000000000..006b750c17
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java
@@ -0,0 +1,48 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.time.OffsetDateTime;
+import javax.annotation.processing.Generated;
+
+/**
+ * Metadata for a connected remote session.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record ConnectedRemoteSessionMetadata(
+ /** SDK session ID for the connected remote session. */
+ @JsonProperty("sessionId") String sessionId,
+ /** Optional friendly session name. */
+ @JsonProperty("name") String name,
+ /** Optional session summary. */
+ @JsonProperty("summary") String summary,
+ /** Session start time as an ISO 8601 string. */
+ @JsonProperty("startTime") OffsetDateTime startTime,
+ /** Last session update time as an ISO 8601 string. */
+ @JsonProperty("modifiedTime") OffsetDateTime modifiedTime,
+ /** Repository associated with the connected remote session. */
+ @JsonProperty("repository") ConnectedRemoteSessionMetadataRepository repository,
+ /** Pull request number associated with the session. */
+ @JsonProperty("pullRequestNumber") Long pullRequestNumber,
+ /** Original remote resource identifier. */
+ @JsonProperty("resourceId") String resourceId,
+ /** Neutral SDK discriminator for the connected remote session kind. */
+ @JsonProperty("kind") ConnectedRemoteSessionMetadataKind kind,
+ /** Remote session staleness deadline as an ISO 8601 string. */
+ @JsonProperty("staleAt") OffsetDateTime staleAt,
+ /** Remote session state returned by the backing service. */
+ @JsonProperty("state") String state
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java
new file mode 100644
index 0000000000..14e4e4b22a
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java
@@ -0,0 +1,35 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Neutral SDK discriminator for the connected remote session kind.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ConnectedRemoteSessionMetadataKind {
+ /** The {@code remote-session} variant. */
+ REMOTE_SESSION("remote-session"),
+ /** The {@code coding-agent} variant. */
+ CODING_AGENT("coding-agent");
+
+ private final String value;
+ ConnectedRemoteSessionMetadataKind(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ConnectedRemoteSessionMetadataKind fromValue(String value) {
+ for (ConnectedRemoteSessionMetadataKind v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ConnectedRemoteSessionMetadataKind value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java
new file mode 100644
index 0000000000..562dfba8ab
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java
@@ -0,0 +1,31 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import javax.annotation.processing.Generated;
+
+/**
+ * Repository associated with the connected remote session.
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+@JsonIgnoreProperties(ignoreUnknown = true)
+public record ConnectedRemoteSessionMetadataRepository(
+ /** Repository owner or organization login. */
+ @JsonProperty("owner") String owner,
+ /** Repository name. */
+ @JsonProperty("name") String name,
+ /** Branch associated with the remote session. */
+ @JsonProperty("branch") String branch
+) {
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java
index 0429b26e13..2cfe49334d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java
@@ -12,16 +12,21 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `DiscoveredMcpServer` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public record DiscoveredMcpServer(
/** Server name (config key) */
@JsonProperty("name") String name,
- /** Server transport type: stdio, http, sse, or memory (local configs are normalized to stdio) */
+ /** Server transport type: stdio, http, sse, or memory */
@JsonProperty("type") DiscoveredMcpServerType type,
- /** Configuration source */
- @JsonProperty("source") DiscoveredMcpServerSource source,
+ /** Configuration source: user, workspace, plugin, or builtin */
+ @JsonProperty("source") McpServerSource source,
/** Whether the server is enabled (not in the disabled list) */
@JsonProperty("enabled") Boolean enabled
) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java
index 1ed5520217..0d4293d9a9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java
@@ -10,7 +10,7 @@
import javax.annotation.processing.Generated;
/**
- * Server transport type: stdio, http, sse, or memory (local configs are normalized to stdio)
+ * Server transport type: stdio, http, sse, or memory
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java
index 14af4c77d8..7784fa5a44 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `Extension` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java
index 7ca267a1b8..d0a23b337d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `InstructionsSources` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java
index 0f33fdcdad..a865e900e4 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.config.add} RPC method.
+ * MCP server name and configuration to add to user configuration.
*
* @since 1.0.0
*/
@@ -23,7 +23,7 @@
public record McpConfigAddParams(
/** Unique name for the MCP server */
@JsonProperty("name") String name,
- /** MCP server configuration (local/stdio or remote/http) */
+ /** MCP server configuration (stdio process or remote HTTP/SSE) */
@JsonProperty("config") Object config
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java
index cef02e1ae8..49664f8e86 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.config.disable} RPC method.
+ * MCP server names to disable for new sessions.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java
index 78ba76b7b8..4bf6284655 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.config.enable} RPC method.
+ * MCP server names to enable for new sessions.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java
index 1391b451cb..f2be8641a9 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code mcp.config.list} RPC method.
+ * User-configured MCP servers, keyed by server name.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java
index 6c24be4311..9e87063c4b 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.config.remove} RPC method.
+ * MCP server name to remove from user configuration.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java
index 327234515f..8c2df60725 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.config.update} RPC method.
+ * MCP server name and replacement configuration to write to user configuration.
*
* @since 1.0.0
*/
@@ -23,7 +23,7 @@
public record McpConfigUpdateParams(
/** Name of the MCP server to update */
@JsonProperty("name") String name,
- /** MCP server configuration (local/stdio or remote/http) */
+ /** MCP server configuration (stdio process or remote HTTP/SSE) */
@JsonProperty("config") Object config
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java
index 24d52cffcd..29b3860520 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code mcp.discover} RPC method.
+ * Optional working directory used as context for MCP server discovery.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java
index 3f107275bf..074aedc613 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code mcp.discover} RPC method.
+ * MCP servers discovered from user, workspace, plugin, and built-in sources.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java
index 2f4b2b36ef..e8b71f7e8f 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `McpServer` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
index 9bda6a3007..1a808911ca 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java
@@ -13,6 +13,11 @@
import java.util.List;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `Model` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java
index 8794ae2589..f5b0b4e5e8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java
@@ -21,10 +21,13 @@
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public record ModelCapabilitiesOverrideLimits(
+ /** Maximum number of prompt/input tokens */
@JsonProperty("max_prompt_tokens") Long maxPromptTokens,
+ /** Maximum number of output/completion tokens */
@JsonProperty("max_output_tokens") Long maxOutputTokens,
/** Maximum total context window size in tokens */
@JsonProperty("max_context_window_tokens") Long maxContextWindowTokens,
+ /** Vision-specific limits */
@JsonProperty("vision") ModelCapabilitiesOverrideLimitsVision vision
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java
index 5d53ca6b82..0d53e85321 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java
@@ -13,6 +13,11 @@
import java.util.List;
import javax.annotation.processing.Generated;
+/**
+ * Vision-specific limits
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java
index bc8e3f4952..23304c82d8 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java
@@ -21,7 +21,9 @@
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public record ModelCapabilitiesOverrideSupports(
+ /** Whether this model supports vision/image input */
@JsonProperty("vision") Boolean vision,
+ /** Whether this model supports reasoning effort configuration */
@JsonProperty("reasoningEffort") Boolean reasoningEffort
) {
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java
index d3d218bec2..a6cdeb5d56 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java
@@ -22,7 +22,7 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public record ModelPolicy(
/** Current policy state for this model */
- @JsonProperty("state") String state,
+ @JsonProperty("state") ModelPolicyState state,
/** Usage terms or conditions for this model */
@JsonProperty("terms") String terms
) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java
new file mode 100644
index 0000000000..1673080d0d
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Current policy state for this model
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ModelPolicyState {
+ /** The {@code enabled} variant. */
+ ENABLED("enabled"),
+ /** The {@code disabled} variant. */
+ DISABLED("disabled"),
+ /** The {@code unconfigured} variant. */
+ UNCONFIGURED("unconfigured");
+
+ private final String value;
+ ModelPolicyState(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ModelPolicyState fromValue(String value) {
+ for (ModelPolicyState v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ModelPolicyState value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java
index a56eeb9d6e..db9dd791a2 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code models.list} RPC method.
+ * List of Copilot models available to the resolved user, including capabilities and billing metadata.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java
index 892d5cbb2d..564478b175 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code ping} RPC method.
+ * Optional message to echo back to the caller.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java
index b91b2fb02b..299d8f3584 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code ping} RPC method.
+ * Server liveness response, including the echoed message, current timestamp, and protocol version.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java
index 64edf086ec..1b09c22cee 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `Plugin` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java
new file mode 100644
index 0000000000..5e534e214c
--- /dev/null
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java
@@ -0,0 +1,37 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------------------------------------------*/
+
+// AUTO-GENERATED FILE - DO NOT EDIT
+// Generated from: api.schema.json
+
+package com.github.copilot.sdk.generated.rpc;
+
+import javax.annotation.processing.Generated;
+
+/**
+ * Reasoning summary mode to request for supported model clients
+ *
+ * @since 1.0.0
+ */
+@javax.annotation.processing.Generated("copilot-sdk-codegen")
+public enum ReasoningSummary {
+ /** The {@code none} variant. */
+ NONE("none"),
+ /** The {@code concise} variant. */
+ CONCISE("concise"),
+ /** The {@code detailed} variant. */
+ DETAILED("detailed");
+
+ private final String value;
+ ReasoningSummary(String value) { this.value = value; }
+ @com.fasterxml.jackson.annotation.JsonValue
+ public String getValue() { return value; }
+ @com.fasterxml.jackson.annotation.JsonCreator
+ public static ReasoningSummary fromValue(String value) {
+ for (ReasoningSummary v : values()) {
+ if (v.value.equals(value)) return v;
+ }
+ throw new IllegalArgumentException("Unknown ReasoningSummary value: " + value);
+ }
+}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
index 4f659bb6b6..93238eef44 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java
@@ -10,7 +10,7 @@
import javax.annotation.processing.Generated;
/**
- * Per-session remote mode. "off" disables remote, "export" exports session events to Mission Control without enabling remote steering, "on" enables both export and remote steering.
+ * Per-session remote mode. "off" disables remote, "export" exports session events to GitHub without enabling remote steering, "on" enables both export and remote steering.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java
index ecbe8a1057..583e110851 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java
@@ -26,7 +26,7 @@ public final class ServerAccountApi {
}
/**
- * Invokes {@code account.getQuota}.
+ * Optional GitHub token used to look up quota for a specific user instead of the global auth context.
* @since 1.0.0
*/
public CompletableFuture getQuota() {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java
index 6c376d0fe9..db70171c97 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java
@@ -30,7 +30,7 @@ public final class ServerMcpApi {
}
/**
- * Invokes {@code mcp.discover}.
+ * Optional working directory used as context for MCP server discovery.
* @since 1.0.0
*/
public CompletableFuture discover(McpDiscoverParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java
index 9e9677e42a..cec231c61c 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java
@@ -26,7 +26,7 @@ public final class ServerMcpConfigApi {
}
/**
- * Invokes {@code mcp.config.list}.
+ * User-configured MCP servers, keyed by server name.
* @since 1.0.0
*/
public CompletableFuture list() {
@@ -34,7 +34,7 @@ public CompletableFuture list() {
}
/**
- * Invokes {@code mcp.config.add}.
+ * MCP server name and configuration to add to user configuration.
* @since 1.0.0
*/
public CompletableFuture add(McpConfigAddParams params) {
@@ -42,7 +42,7 @@ public CompletableFuture add(McpConfigAddParams params) {
}
/**
- * Invokes {@code mcp.config.update}.
+ * MCP server name and replacement configuration to write to user configuration.
* @since 1.0.0
*/
public CompletableFuture update(McpConfigUpdateParams params) {
@@ -50,7 +50,7 @@ public CompletableFuture update(McpConfigUpdateParams params) {
}
/**
- * Invokes {@code mcp.config.remove}.
+ * MCP server name to remove from user configuration.
* @since 1.0.0
*/
public CompletableFuture remove(McpConfigRemoveParams params) {
@@ -58,7 +58,7 @@ public CompletableFuture remove(McpConfigRemoveParams params) {
}
/**
- * Invokes {@code mcp.config.enable}.
+ * MCP server names to enable for new sessions.
* @since 1.0.0
*/
public CompletableFuture enable(McpConfigEnableParams params) {
@@ -66,7 +66,7 @@ public CompletableFuture enable(McpConfigEnableParams params) {
}
/**
- * Invokes {@code mcp.config.disable}.
+ * MCP server names to disable for new sessions.
* @since 1.0.0
*/
public CompletableFuture disable(McpConfigDisableParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java
index c3f83b45cc..e062c6f0a4 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java
@@ -26,7 +26,7 @@ public final class ServerModelsApi {
}
/**
- * Invokes {@code models.list}.
+ * Optional GitHub token used to list models for a specific user instead of the global auth context.
* @since 1.0.0
*/
public CompletableFuture list() {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java
index b82c49ec23..9de3df51c4 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java
@@ -56,7 +56,7 @@ public ServerRpc(RpcCaller caller) {
}
/**
- * Invokes {@code ping}.
+ * Optional message to echo back to the caller.
* @since 1.0.0
*/
public CompletableFuture ping(PingParams params) {
@@ -64,7 +64,7 @@ public CompletableFuture ping(PingParams params) {
}
/**
- * Invokes {@code connect}.
+ * Optional connection token presented by the SDK client during the handshake.
* @since 1.0.0
*/
public CompletableFuture connect(ConnectParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java
index 068ff939f7..25aefcf252 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java
@@ -26,7 +26,7 @@ public final class ServerSessionFsApi {
}
/**
- * Invokes {@code sessionFs.setProvider}.
+ * Initial working directory, session-state path layout, and path conventions used to register the calling SDK client as the session filesystem provider.
* @since 1.0.0
*/
public CompletableFuture setProvider(SessionFsSetProviderParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java
index 6d1aa06519..a78a2fbf55 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java
@@ -26,7 +26,7 @@ public final class ServerSessionsApi {
}
/**
- * Invokes {@code sessions.fork}.
+ * Source session identifier to fork from, optional event-ID boundary, and optional friendly name for the new session.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
@@ -35,4 +35,14 @@ public CompletableFuture fork(SessionsForkParams params) {
return caller.invoke("sessions.fork", params, SessionsForkResult.class);
}
+ /**
+ * Remote session connection parameters.
+ *
+ * @apiNote This method is experimental and may change in a future version.
+ * @since 1.0.0
+ */
+ public CompletableFuture connect() {
+ return caller.invoke("sessions.connect", java.util.Map.of(), SessionsConnectResult.class);
+ }
+
}
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java
index 6cb4327176..92f9e0ccca 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java
@@ -12,6 +12,11 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
+/**
+ * Schema for the `ServerSkill` type.
+ *
+ * @since 1.0.0
+ */
@javax.annotation.processing.Generated("copilot-sdk-codegen")
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@@ -21,7 +26,7 @@ public record ServerSkill(
/** Description of what the skill does */
@JsonProperty("description") String description,
/** Source location type (e.g., project, personal-copilot, plugin, builtin) */
- @JsonProperty("source") String source,
+ @JsonProperty("source") SkillSource source,
/** Whether the skill can be invoked by the user as a slash command */
@JsonProperty("userInvocable") Boolean userInvocable,
/** Whether the skill is currently enabled (based on global config) */
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java
index 943f682584..8884edc979 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java
@@ -30,7 +30,7 @@ public final class ServerSkillsApi {
}
/**
- * Invokes {@code skills.discover}.
+ * Optional project paths and additional skill directories to include in discovery.
* @since 1.0.0
*/
public CompletableFuture discover(SkillsDiscoverParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java
index 41eaeab01e..a0236fd333 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java
@@ -26,7 +26,7 @@ public final class ServerSkillsConfigApi {
}
/**
- * Invokes {@code skills.config.setDisabledSkills}.
+ * Skill names to mark as disabled in global configuration, replacing any previous list.
* @since 1.0.0
*/
public CompletableFuture setDisabledSkills(SkillsConfigSetDisabledSkillsParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java
index 2eb2a90f54..81bbaece6d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java
@@ -26,7 +26,7 @@ public final class ServerToolsApi {
}
/**
- * Invokes {@code tools.list}.
+ * Optional model identifier whose tool overrides should be applied to the listing.
* @since 1.0.0
*/
public CompletableFuture list(ToolsListParams params) {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java
index 47192e6310..ab91fe3ae7 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java
@@ -30,7 +30,7 @@ public final class SessionAgentApi {
}
/**
- * Invokes {@code session.agent.list}.
+ * Identifies the target session.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
@@ -40,7 +40,7 @@ public CompletableFuture list() {
}
/**
- * Invokes {@code session.agent.getCurrent}.
+ * Identifies the target session.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
@@ -50,7 +50,7 @@ public CompletableFuture getCurrent() {
}
/**
- * Invokes {@code session.agent.select}.
+ * Name of the custom agent to select for subsequent turns.
*
* Note: the {@code sessionId} field in the params record is overridden
* by the session-scoped wrapper; any value provided is ignored.
@@ -65,7 +65,7 @@ public CompletableFuture select(SessionAgentSelectPara
}
/**
- * Invokes {@code session.agent.deselect}.
+ * Identifies the target session.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
@@ -75,7 +75,7 @@ public CompletableFuture deselect() {
}
/**
- * Invokes {@code session.agent.reload}.
+ * Identifies the target session.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java
index cd101194c7..d412c83cfd 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.agent.deselect} RPC method.
+ * Identifies the target session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java
index c05e5fa362..24bf532ff5 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.agent.getCurrent} RPC method.
+ * Identifies the target session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java
index fea4e47b63..fec2bc94f2 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code session.agent.getCurrent} RPC method.
+ * The currently selected custom agent, or null when using the default agent.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java
index e14ae40c0c..6badf614c5 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.agent.list} RPC method.
+ * Identifies the target session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java
index f572bf9aed..9b618b248a 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code session.agent.list} RPC method.
+ * Custom agents available to the session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java
index ea1b4050b0..5b30c866a0 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.agent.reload} RPC method.
+ * Identifies the target session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java
index 32928e53a1..d058293eac 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java
@@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code session.agent.reload} RPC method.
+ * Custom agents available to the session after reloading definitions from disk.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java
index 61777dde33..38532ace01 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.agent.select} RPC method.
+ * Name of the custom agent to select for subsequent turns.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java
index ab9637568d..ea19f56488 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code session.agent.select} RPC method.
+ * The newly selected custom agent.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java
index 93624213e8..ceb245027e 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java
@@ -28,7 +28,7 @@ public final class SessionAuthApi {
}
/**
- * Invokes {@code session.auth.getStatus}.
+ * Identifies the target session.
* @since 1.0.0
*/
public CompletableFuture getStatus() {
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java
index 059833d374..4a99886682 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Request parameters for the {@code session.auth.getStatus} RPC method.
+ * Identifies the target session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java
index 737c2ae9ea..6e58fe6c7d 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java
@@ -13,7 +13,7 @@
import javax.annotation.processing.Generated;
/**
- * Result for the {@code session.auth.getStatus} RPC method.
+ * Authentication status and account metadata for the session.
*
* @since 1.0.0
*/
diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
index 6366af794a..df5e6d9f23 100644
--- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
+++ b/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java
@@ -30,7 +30,7 @@ public final class SessionCommandsApi {
}
/**
- * Invokes {@code session.commands.list}.
+ * Optional filters controlling which command sources to include in the listing.
* @since 1.0.0
*/
public CompletableFuture list() {
@@ -38,7 +38,7 @@ public CompletableFuture list() {
}
/**
- * Invokes {@code session.commands.invoke}.
+ * Slash command name and optional raw input string to invoke.
*