@bradygaster/squad-sdk 0.8.16 → 0.8.17-preview
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.
- package/package.json +205 -205
package/package.json
CHANGED
|
@@ -1,205 +1,205 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@bradygaster/squad-sdk",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "Squad SDK — Programmable multi-agent runtime for GitHub Copilot",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./parsers": {
|
|
14
|
-
"types": "./dist/parsers.d.ts",
|
|
15
|
-
"import": "./dist/parsers.js"
|
|
16
|
-
},
|
|
17
|
-
"./types": {
|
|
18
|
-
"types": "./dist/types.d.ts",
|
|
19
|
-
"import": "./dist/types.js"
|
|
20
|
-
},
|
|
21
|
-
"./config": {
|
|
22
|
-
"types": "./dist/config/index.d.ts",
|
|
23
|
-
"import": "./dist/config/index.js"
|
|
24
|
-
},
|
|
25
|
-
"./skills": {
|
|
26
|
-
"types": "./dist/skills/index.d.ts",
|
|
27
|
-
"import": "./dist/skills/index.js"
|
|
28
|
-
},
|
|
29
|
-
"./agents": {
|
|
30
|
-
"types": "./dist/agents/index.d.ts",
|
|
31
|
-
"import": "./dist/agents/index.js"
|
|
32
|
-
},
|
|
33
|
-
"./adapter": {
|
|
34
|
-
"types": "./dist/adapter/types.d.ts",
|
|
35
|
-
"import": "./dist/adapter/types.js"
|
|
36
|
-
},
|
|
37
|
-
"./client": {
|
|
38
|
-
"types": "./dist/client/index.d.ts",
|
|
39
|
-
"import": "./dist/client/index.js"
|
|
40
|
-
},
|
|
41
|
-
"./coordinator": {
|
|
42
|
-
"types": "./dist/coordinator/index.d.ts",
|
|
43
|
-
"import": "./dist/coordinator/index.js"
|
|
44
|
-
},
|
|
45
|
-
"./hooks": {
|
|
46
|
-
"types": "./dist/hooks/index.d.ts",
|
|
47
|
-
"import": "./dist/hooks/index.js"
|
|
48
|
-
},
|
|
49
|
-
"./tools": {
|
|
50
|
-
"types": "./dist/tools/index.d.ts",
|
|
51
|
-
"import": "./dist/tools/index.js"
|
|
52
|
-
},
|
|
53
|
-
"./runtime": {
|
|
54
|
-
"types": "./dist/runtime/config.d.ts",
|
|
55
|
-
"import": "./dist/runtime/config.js"
|
|
56
|
-
},
|
|
57
|
-
"./runtime/streaming": {
|
|
58
|
-
"types": "./dist/runtime/streaming.d.ts",
|
|
59
|
-
"import": "./dist/runtime/streaming.js"
|
|
60
|
-
},
|
|
61
|
-
"./marketplace": {
|
|
62
|
-
"types": "./dist/marketplace/index.d.ts",
|
|
63
|
-
"import": "./dist/marketplace/index.js"
|
|
64
|
-
},
|
|
65
|
-
"./build": {
|
|
66
|
-
"types": "./dist/build/index.d.ts",
|
|
67
|
-
"import": "./dist/build/index.js"
|
|
68
|
-
},
|
|
69
|
-
"./sharing": {
|
|
70
|
-
"types": "./dist/sharing/index.d.ts",
|
|
71
|
-
"import": "./dist/sharing/index.js"
|
|
72
|
-
},
|
|
73
|
-
"./ralph": {
|
|
74
|
-
"types": "./dist/ralph/index.d.ts",
|
|
75
|
-
"import": "./dist/ralph/index.js"
|
|
76
|
-
},
|
|
77
|
-
"./ralph/triage": {
|
|
78
|
-
"types": "./dist/ralph/triage.d.ts",
|
|
79
|
-
"import": "./dist/ralph/triage.js"
|
|
80
|
-
},
|
|
81
|
-
"./casting": {
|
|
82
|
-
"types": "./dist/casting/index.d.ts",
|
|
83
|
-
"import": "./dist/casting/index.js"
|
|
84
|
-
},
|
|
85
|
-
"./resolution": {
|
|
86
|
-
"types": "./dist/resolution.d.ts",
|
|
87
|
-
"import": "./dist/resolution.js"
|
|
88
|
-
},
|
|
89
|
-
"./adapter/errors": {
|
|
90
|
-
"types": "./dist/adapter/errors.d.ts",
|
|
91
|
-
"import": "./dist/adapter/errors.js"
|
|
92
|
-
},
|
|
93
|
-
"./config/migrations": {
|
|
94
|
-
"types": "./dist/config/migrations/index.d.ts",
|
|
95
|
-
"import": "./dist/config/migrations/index.js"
|
|
96
|
-
},
|
|
97
|
-
"./runtime/event-bus": {
|
|
98
|
-
"types": "./dist/runtime/event-bus.d.ts",
|
|
99
|
-
"import": "./dist/runtime/event-bus.js"
|
|
100
|
-
},
|
|
101
|
-
"./runtime/benchmarks": {
|
|
102
|
-
"types": "./dist/runtime/benchmarks.d.ts",
|
|
103
|
-
"import": "./dist/runtime/benchmarks.js"
|
|
104
|
-
},
|
|
105
|
-
"./runtime/i18n": {
|
|
106
|
-
"types": "./dist/runtime/i18n.d.ts",
|
|
107
|
-
"import": "./dist/runtime/i18n.js"
|
|
108
|
-
},
|
|
109
|
-
"./runtime/telemetry": {
|
|
110
|
-
"types": "./dist/runtime/telemetry.d.ts",
|
|
111
|
-
"import": "./dist/runtime/telemetry.js"
|
|
112
|
-
},
|
|
113
|
-
"./runtime/offline": {
|
|
114
|
-
"types": "./dist/runtime/offline.d.ts",
|
|
115
|
-
"import": "./dist/runtime/offline.js"
|
|
116
|
-
},
|
|
117
|
-
"./runtime/cost-tracker": {
|
|
118
|
-
"types": "./dist/runtime/cost-tracker.d.ts",
|
|
119
|
-
"import": "./dist/runtime/cost-tracker.js"
|
|
120
|
-
},
|
|
121
|
-
"./runtime/otel": {
|
|
122
|
-
"types": "./dist/runtime/otel.d.ts",
|
|
123
|
-
"import": "./dist/runtime/otel.js"
|
|
124
|
-
},
|
|
125
|
-
"./runtime/otel-bridge": {
|
|
126
|
-
"types": "./dist/runtime/otel-bridge.d.ts",
|
|
127
|
-
"import": "./dist/runtime/otel-bridge.js"
|
|
128
|
-
},
|
|
129
|
-
"./runtime/otel-metrics": {
|
|
130
|
-
"types": "./dist/runtime/otel-metrics.d.ts",
|
|
131
|
-
"import": "./dist/runtime/otel-metrics.js"
|
|
132
|
-
},
|
|
133
|
-
"./runtime/squad-observer": {
|
|
134
|
-
"types": "./dist/runtime/squad-observer.d.ts",
|
|
135
|
-
"import": "./dist/runtime/squad-observer.js"
|
|
136
|
-
},
|
|
137
|
-
"./runtime/event-payloads": {
|
|
138
|
-
"types": "./dist/runtime/event-payloads.d.ts",
|
|
139
|
-
"import": "./dist/runtime/event-payloads.js"
|
|
140
|
-
},
|
|
141
|
-
"./runtime/event-bus-ws-bridge": {
|
|
142
|
-
"types": "./dist/runtime/event-bus-ws-bridge.d.ts",
|
|
143
|
-
"import": "./dist/runtime/event-bus-ws-bridge.js"
|
|
144
|
-
},
|
|
145
|
-
"./runtime/constants": {
|
|
146
|
-
"types": "./dist/runtime/constants.d.ts",
|
|
147
|
-
"import": "./dist/runtime/constants.js"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"files": [
|
|
151
|
-
"dist",
|
|
152
|
-
"README.md"
|
|
153
|
-
],
|
|
154
|
-
"scripts": {
|
|
155
|
-
"prepublishOnly": "npm run build",
|
|
156
|
-
"build": "tsc -p tsconfig.json"
|
|
157
|
-
},
|
|
158
|
-
"engines": {
|
|
159
|
-
"node": ">=20"
|
|
160
|
-
},
|
|
161
|
-
"dependencies": {
|
|
162
|
-
"@github/copilot-sdk": "^0.1.25"
|
|
163
|
-
},
|
|
164
|
-
"peerDependencies": {
|
|
165
|
-
"@opentelemetry/api": "^1.9.0"
|
|
166
|
-
},
|
|
167
|
-
"peerDependenciesMeta": {
|
|
168
|
-
"@opentelemetry/api": {
|
|
169
|
-
"optional": true
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"optionalDependencies": {
|
|
173
|
-
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.57.2",
|
|
174
|
-
"@opentelemetry/exporter-trace-otlp-grpc": "^0.57.2",
|
|
175
|
-
"@opentelemetry/resources": "^1.30.0",
|
|
176
|
-
"@opentelemetry/sdk-metrics": "^1.30.0",
|
|
177
|
-
"@opentelemetry/sdk-node": "^0.57.2",
|
|
178
|
-
"@opentelemetry/sdk-trace-base": "^1.30.0",
|
|
179
|
-
"@opentelemetry/sdk-trace-node": "^1.30.0",
|
|
180
|
-
"@opentelemetry/semantic-conventions": "^1.28.0",
|
|
181
|
-
"ws": "^8.18.0"
|
|
182
|
-
},
|
|
183
|
-
"devDependencies": {
|
|
184
|
-
"@opentelemetry/api": "^1.9.0",
|
|
185
|
-
"@types/node": "^22.0.0",
|
|
186
|
-
"@types/ws": "^8.5.13",
|
|
187
|
-
"typescript": "^5.7.0"
|
|
188
|
-
},
|
|
189
|
-
"keywords": [
|
|
190
|
-
"copilot",
|
|
191
|
-
"multi-agent",
|
|
192
|
-
"squad",
|
|
193
|
-
"sdk"
|
|
194
|
-
],
|
|
195
|
-
"license": "MIT",
|
|
196
|
-
"homepage": "https://github.com/bradygaster/squad#readme",
|
|
197
|
-
"bugs": {
|
|
198
|
-
"url": "https://github.com/bradygaster/squad/issues"
|
|
199
|
-
},
|
|
200
|
-
"repository": {
|
|
201
|
-
"type": "git",
|
|
202
|
-
"url": "https://github.com/bradygaster/squad.git",
|
|
203
|
-
"directory": "packages/squad-sdk"
|
|
204
|
-
}
|
|
205
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@bradygaster/squad-sdk",
|
|
3
|
+
"version": "0.8.17-preview",
|
|
4
|
+
"description": "Squad SDK — Programmable multi-agent runtime for GitHub Copilot",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./parsers": {
|
|
14
|
+
"types": "./dist/parsers.d.ts",
|
|
15
|
+
"import": "./dist/parsers.js"
|
|
16
|
+
},
|
|
17
|
+
"./types": {
|
|
18
|
+
"types": "./dist/types.d.ts",
|
|
19
|
+
"import": "./dist/types.js"
|
|
20
|
+
},
|
|
21
|
+
"./config": {
|
|
22
|
+
"types": "./dist/config/index.d.ts",
|
|
23
|
+
"import": "./dist/config/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./skills": {
|
|
26
|
+
"types": "./dist/skills/index.d.ts",
|
|
27
|
+
"import": "./dist/skills/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./agents": {
|
|
30
|
+
"types": "./dist/agents/index.d.ts",
|
|
31
|
+
"import": "./dist/agents/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./adapter": {
|
|
34
|
+
"types": "./dist/adapter/types.d.ts",
|
|
35
|
+
"import": "./dist/adapter/types.js"
|
|
36
|
+
},
|
|
37
|
+
"./client": {
|
|
38
|
+
"types": "./dist/client/index.d.ts",
|
|
39
|
+
"import": "./dist/client/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./coordinator": {
|
|
42
|
+
"types": "./dist/coordinator/index.d.ts",
|
|
43
|
+
"import": "./dist/coordinator/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./hooks": {
|
|
46
|
+
"types": "./dist/hooks/index.d.ts",
|
|
47
|
+
"import": "./dist/hooks/index.js"
|
|
48
|
+
},
|
|
49
|
+
"./tools": {
|
|
50
|
+
"types": "./dist/tools/index.d.ts",
|
|
51
|
+
"import": "./dist/tools/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./runtime": {
|
|
54
|
+
"types": "./dist/runtime/config.d.ts",
|
|
55
|
+
"import": "./dist/runtime/config.js"
|
|
56
|
+
},
|
|
57
|
+
"./runtime/streaming": {
|
|
58
|
+
"types": "./dist/runtime/streaming.d.ts",
|
|
59
|
+
"import": "./dist/runtime/streaming.js"
|
|
60
|
+
},
|
|
61
|
+
"./marketplace": {
|
|
62
|
+
"types": "./dist/marketplace/index.d.ts",
|
|
63
|
+
"import": "./dist/marketplace/index.js"
|
|
64
|
+
},
|
|
65
|
+
"./build": {
|
|
66
|
+
"types": "./dist/build/index.d.ts",
|
|
67
|
+
"import": "./dist/build/index.js"
|
|
68
|
+
},
|
|
69
|
+
"./sharing": {
|
|
70
|
+
"types": "./dist/sharing/index.d.ts",
|
|
71
|
+
"import": "./dist/sharing/index.js"
|
|
72
|
+
},
|
|
73
|
+
"./ralph": {
|
|
74
|
+
"types": "./dist/ralph/index.d.ts",
|
|
75
|
+
"import": "./dist/ralph/index.js"
|
|
76
|
+
},
|
|
77
|
+
"./ralph/triage": {
|
|
78
|
+
"types": "./dist/ralph/triage.d.ts",
|
|
79
|
+
"import": "./dist/ralph/triage.js"
|
|
80
|
+
},
|
|
81
|
+
"./casting": {
|
|
82
|
+
"types": "./dist/casting/index.d.ts",
|
|
83
|
+
"import": "./dist/casting/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./resolution": {
|
|
86
|
+
"types": "./dist/resolution.d.ts",
|
|
87
|
+
"import": "./dist/resolution.js"
|
|
88
|
+
},
|
|
89
|
+
"./adapter/errors": {
|
|
90
|
+
"types": "./dist/adapter/errors.d.ts",
|
|
91
|
+
"import": "./dist/adapter/errors.js"
|
|
92
|
+
},
|
|
93
|
+
"./config/migrations": {
|
|
94
|
+
"types": "./dist/config/migrations/index.d.ts",
|
|
95
|
+
"import": "./dist/config/migrations/index.js"
|
|
96
|
+
},
|
|
97
|
+
"./runtime/event-bus": {
|
|
98
|
+
"types": "./dist/runtime/event-bus.d.ts",
|
|
99
|
+
"import": "./dist/runtime/event-bus.js"
|
|
100
|
+
},
|
|
101
|
+
"./runtime/benchmarks": {
|
|
102
|
+
"types": "./dist/runtime/benchmarks.d.ts",
|
|
103
|
+
"import": "./dist/runtime/benchmarks.js"
|
|
104
|
+
},
|
|
105
|
+
"./runtime/i18n": {
|
|
106
|
+
"types": "./dist/runtime/i18n.d.ts",
|
|
107
|
+
"import": "./dist/runtime/i18n.js"
|
|
108
|
+
},
|
|
109
|
+
"./runtime/telemetry": {
|
|
110
|
+
"types": "./dist/runtime/telemetry.d.ts",
|
|
111
|
+
"import": "./dist/runtime/telemetry.js"
|
|
112
|
+
},
|
|
113
|
+
"./runtime/offline": {
|
|
114
|
+
"types": "./dist/runtime/offline.d.ts",
|
|
115
|
+
"import": "./dist/runtime/offline.js"
|
|
116
|
+
},
|
|
117
|
+
"./runtime/cost-tracker": {
|
|
118
|
+
"types": "./dist/runtime/cost-tracker.d.ts",
|
|
119
|
+
"import": "./dist/runtime/cost-tracker.js"
|
|
120
|
+
},
|
|
121
|
+
"./runtime/otel": {
|
|
122
|
+
"types": "./dist/runtime/otel.d.ts",
|
|
123
|
+
"import": "./dist/runtime/otel.js"
|
|
124
|
+
},
|
|
125
|
+
"./runtime/otel-bridge": {
|
|
126
|
+
"types": "./dist/runtime/otel-bridge.d.ts",
|
|
127
|
+
"import": "./dist/runtime/otel-bridge.js"
|
|
128
|
+
},
|
|
129
|
+
"./runtime/otel-metrics": {
|
|
130
|
+
"types": "./dist/runtime/otel-metrics.d.ts",
|
|
131
|
+
"import": "./dist/runtime/otel-metrics.js"
|
|
132
|
+
},
|
|
133
|
+
"./runtime/squad-observer": {
|
|
134
|
+
"types": "./dist/runtime/squad-observer.d.ts",
|
|
135
|
+
"import": "./dist/runtime/squad-observer.js"
|
|
136
|
+
},
|
|
137
|
+
"./runtime/event-payloads": {
|
|
138
|
+
"types": "./dist/runtime/event-payloads.d.ts",
|
|
139
|
+
"import": "./dist/runtime/event-payloads.js"
|
|
140
|
+
},
|
|
141
|
+
"./runtime/event-bus-ws-bridge": {
|
|
142
|
+
"types": "./dist/runtime/event-bus-ws-bridge.d.ts",
|
|
143
|
+
"import": "./dist/runtime/event-bus-ws-bridge.js"
|
|
144
|
+
},
|
|
145
|
+
"./runtime/constants": {
|
|
146
|
+
"types": "./dist/runtime/constants.d.ts",
|
|
147
|
+
"import": "./dist/runtime/constants.js"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"files": [
|
|
151
|
+
"dist",
|
|
152
|
+
"README.md"
|
|
153
|
+
],
|
|
154
|
+
"scripts": {
|
|
155
|
+
"prepublishOnly": "npm run build",
|
|
156
|
+
"build": "tsc -p tsconfig.json"
|
|
157
|
+
},
|
|
158
|
+
"engines": {
|
|
159
|
+
"node": ">=20"
|
|
160
|
+
},
|
|
161
|
+
"dependencies": {
|
|
162
|
+
"@github/copilot-sdk": "^0.1.25"
|
|
163
|
+
},
|
|
164
|
+
"peerDependencies": {
|
|
165
|
+
"@opentelemetry/api": "^1.9.0"
|
|
166
|
+
},
|
|
167
|
+
"peerDependenciesMeta": {
|
|
168
|
+
"@opentelemetry/api": {
|
|
169
|
+
"optional": true
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"optionalDependencies": {
|
|
173
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.57.2",
|
|
174
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.57.2",
|
|
175
|
+
"@opentelemetry/resources": "^1.30.0",
|
|
176
|
+
"@opentelemetry/sdk-metrics": "^1.30.0",
|
|
177
|
+
"@opentelemetry/sdk-node": "^0.57.2",
|
|
178
|
+
"@opentelemetry/sdk-trace-base": "^1.30.0",
|
|
179
|
+
"@opentelemetry/sdk-trace-node": "^1.30.0",
|
|
180
|
+
"@opentelemetry/semantic-conventions": "^1.28.0",
|
|
181
|
+
"ws": "^8.18.0"
|
|
182
|
+
},
|
|
183
|
+
"devDependencies": {
|
|
184
|
+
"@opentelemetry/api": "^1.9.0",
|
|
185
|
+
"@types/node": "^22.0.0",
|
|
186
|
+
"@types/ws": "^8.5.13",
|
|
187
|
+
"typescript": "^5.7.0"
|
|
188
|
+
},
|
|
189
|
+
"keywords": [
|
|
190
|
+
"copilot",
|
|
191
|
+
"multi-agent",
|
|
192
|
+
"squad",
|
|
193
|
+
"sdk"
|
|
194
|
+
],
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"homepage": "https://github.com/bradygaster/squad#readme",
|
|
197
|
+
"bugs": {
|
|
198
|
+
"url": "https://github.com/bradygaster/squad/issues"
|
|
199
|
+
},
|
|
200
|
+
"repository": {
|
|
201
|
+
"type": "git",
|
|
202
|
+
"url": "https://github.com/bradygaster/squad.git",
|
|
203
|
+
"directory": "packages/squad-sdk"
|
|
204
|
+
}
|
|
205
|
+
}
|