copilot-sdk-supercharged 2.1.2 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/copilot/types.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19d158b60339fae57a72d251e121914c0bd9881663f62dc0dfb3429589ccbced
|
|
4
|
+
data.tar.gz: aaade275a2913861110d2f3428cef4a66b681a6b84ca5784c7841ac0370dcf3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aeb65b748e0249a97df087e257c31ebf2a9e5fa05522f8de892fe3d4ea87c9396ce550c4419ed7b4944761f29208e7a973144a559c3f241d14795271f6de69a
|
|
7
|
+
data.tar.gz: 4f3ba9365d11a5310620ea853407917e31b9a69f6c10a73a92e46b0c0c425da24b8048cf9f0e5207aceebe818ccd668d5adc0a745008cb2a5bbb5504c87c89a8
|
data/lib/copilot/types.rb
CHANGED
|
@@ -289,6 +289,7 @@ module Copilot
|
|
|
289
289
|
:model_capabilities, :enable_config_discovery,
|
|
290
290
|
:github_token,
|
|
291
291
|
:commands, :on_elicitation_request,
|
|
292
|
+
:instruction_directories,
|
|
292
293
|
keyword_init: true
|
|
293
294
|
)
|
|
294
295
|
|
|
@@ -303,6 +304,7 @@ module Copilot
|
|
|
303
304
|
:model_capabilities, :enable_config_discovery,
|
|
304
305
|
:github_token,
|
|
305
306
|
:commands, :on_elicitation_request,
|
|
307
|
+
:instruction_directories,
|
|
306
308
|
:disable_resume,
|
|
307
309
|
keyword_init: true
|
|
308
310
|
)
|
|
@@ -456,12 +458,13 @@ module Copilot
|
|
|
456
458
|
|
|
457
459
|
# Session event from the server.
|
|
458
460
|
# Uses an open struct-style approach so new event types are forward-compatible.
|
|
459
|
-
SessionEvent = Struct.new(:id, :timestamp, :parent_id, :ephemeral, :type, :data, keyword_init: true) do
|
|
461
|
+
SessionEvent = Struct.new(:id, :timestamp, :parent_id, :agent_id, :ephemeral, :type, :data, keyword_init: true) do
|
|
460
462
|
def self.from_hash(h)
|
|
461
463
|
new(
|
|
462
464
|
id: h["id"],
|
|
463
465
|
timestamp: h["timestamp"],
|
|
464
466
|
parent_id: h["parentId"],
|
|
467
|
+
agent_id: h["agentId"],
|
|
465
468
|
ephemeral: h["ephemeral"],
|
|
466
469
|
type: h["type"],
|
|
467
470
|
data: h["data"] || {}
|
|
@@ -592,6 +595,7 @@ module Copilot
|
|
|
592
595
|
:log_level, :auto_start, :auto_restart, :env,
|
|
593
596
|
:github_token, :use_logged_in_user, :session_idle_timeout_seconds,
|
|
594
597
|
:session_fs,
|
|
598
|
+
:copilot_home, :tcp_connection_token,
|
|
595
599
|
keyword_init: true
|
|
596
600
|
)
|
|
597
601
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: copilot-sdk-supercharged
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremiah Isaacson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
A Ruby SDK for interacting with the GitHub Copilot CLI server via JSON-RPC 2.0.
|