@h-rig/contracts 0.0.6-alpha.34 → 0.0.6-alpha.36
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/dist/src/config.js +6 -1
- package/dist/src/index.js +6 -1
- package/package.json +1 -1
package/dist/src/config.js
CHANGED
|
@@ -119,12 +119,16 @@ var TaskSourceConfig = Schema2.Struct({
|
|
|
119
119
|
});
|
|
120
120
|
var RuntimeHarness = Schema2.Literals(["pi", "claude-code", "codex"]);
|
|
121
121
|
var RigRuntimeMode = Schema2.Literals(["yolo", "approval-required"]);
|
|
122
|
+
var PiRuntimeConfig = Schema2.Struct({
|
|
123
|
+
packages: Schema2.optional(Schema2.Array(Schema2.String))
|
|
124
|
+
});
|
|
122
125
|
var RuntimeConfig = Schema2.Struct({
|
|
123
126
|
agentRoles: Schema2.optional(Schema2.Record(Schema2.String, Schema2.Unknown)),
|
|
124
127
|
timeouts: Schema2.optional(Schema2.Record(Schema2.String, Schema2.Number)),
|
|
125
128
|
harness: Schema2.optional(RuntimeHarness),
|
|
126
129
|
model: Schema2.optional(Schema2.String),
|
|
127
|
-
mode: Schema2.optional(RigRuntimeMode)
|
|
130
|
+
mode: Schema2.optional(RigRuntimeMode),
|
|
131
|
+
pi: Schema2.optional(PiRuntimeConfig)
|
|
128
132
|
});
|
|
129
133
|
var ProjectIdentity = Schema2.Struct({
|
|
130
134
|
name: Schema2.String,
|
|
@@ -209,6 +213,7 @@ export {
|
|
|
209
213
|
PullRequestConfig,
|
|
210
214
|
ProjectIdentity,
|
|
211
215
|
PlanningConfig,
|
|
216
|
+
PiRuntimeConfig,
|
|
212
217
|
MergeConfig,
|
|
213
218
|
IssueAnalysisConfig,
|
|
214
219
|
GitHubProjectStatusConfig,
|
package/dist/src/index.js
CHANGED
|
@@ -1424,12 +1424,16 @@ var TaskSourceConfig = Schema9.Struct({
|
|
|
1424
1424
|
});
|
|
1425
1425
|
var RuntimeHarness = Schema9.Literals(["pi", "claude-code", "codex"]);
|
|
1426
1426
|
var RigRuntimeMode = Schema9.Literals(["yolo", "approval-required"]);
|
|
1427
|
+
var PiRuntimeConfig = Schema9.Struct({
|
|
1428
|
+
packages: Schema9.optional(Schema9.Array(Schema9.String))
|
|
1429
|
+
});
|
|
1427
1430
|
var RuntimeConfig = Schema9.Struct({
|
|
1428
1431
|
agentRoles: Schema9.optional(Schema9.Record(Schema9.String, Schema9.Unknown)),
|
|
1429
1432
|
timeouts: Schema9.optional(Schema9.Record(Schema9.String, Schema9.Number)),
|
|
1430
1433
|
harness: Schema9.optional(RuntimeHarness),
|
|
1431
1434
|
model: Schema9.optional(Schema9.String),
|
|
1432
|
-
mode: Schema9.optional(RigRuntimeMode)
|
|
1435
|
+
mode: Schema9.optional(RigRuntimeMode),
|
|
1436
|
+
pi: Schema9.optional(PiRuntimeConfig)
|
|
1433
1437
|
});
|
|
1434
1438
|
var ProjectIdentity = Schema9.Struct({
|
|
1435
1439
|
name: Schema9.String,
|
|
@@ -4409,6 +4413,7 @@ export {
|
|
|
4409
4413
|
PolicyDecision,
|
|
4410
4414
|
PluginContributes,
|
|
4411
4415
|
PlanningConfig,
|
|
4416
|
+
PiRuntimeConfig,
|
|
4412
4417
|
PROVIDER_SEND_TURN_MAX_INPUT_CHARS,
|
|
4413
4418
|
PROVIDER_SEND_TURN_MAX_IMAGE_BYTES,
|
|
4414
4419
|
PROVIDER_SEND_TURN_MAX_ATTACHMENTS,
|