@h-rig/contracts 0.0.6-alpha.6 → 0.0.6-alpha.61

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.
@@ -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,
@@ -143,6 +147,7 @@ var GitHubProjectStatusConfig = Schema2.Struct({
143
147
  running: Schema2.optional(Schema2.String),
144
148
  prOpen: Schema2.optional(Schema2.String),
145
149
  ciFixing: Schema2.optional(Schema2.String),
150
+ merging: Schema2.optional(Schema2.String),
146
151
  done: Schema2.optional(Schema2.String),
147
152
  needsAttention: Schema2.optional(Schema2.String)
148
153
  }))
@@ -208,6 +213,7 @@ export {
208
213
  PullRequestConfig,
209
214
  ProjectIdentity,
210
215
  PlanningConfig,
216
+ PiRuntimeConfig,
211
217
  MergeConfig,
212
218
  IssueAnalysisConfig,
213
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,
@@ -1448,6 +1452,7 @@ var GitHubProjectStatusConfig = Schema9.Struct({
1448
1452
  running: Schema9.optional(Schema9.String),
1449
1453
  prOpen: Schema9.optional(Schema9.String),
1450
1454
  ciFixing: Schema9.optional(Schema9.String),
1455
+ merging: Schema9.optional(Schema9.String),
1451
1456
  done: Schema9.optional(Schema9.String),
1452
1457
  needsAttention: Schema9.optional(Schema9.String)
1453
1458
  }))
@@ -4408,6 +4413,7 @@ export {
4408
4413
  PolicyDecision,
4409
4414
  PluginContributes,
4410
4415
  PlanningConfig,
4416
+ PiRuntimeConfig,
4411
4417
  PROVIDER_SEND_TURN_MAX_INPUT_CHARS,
4412
4418
  PROVIDER_SEND_TURN_MAX_IMAGE_BYTES,
4413
4419
  PROVIDER_SEND_TURN_MAX_ATTACHMENTS,
@@ -0,0 +1 @@
1
+ // @bun
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h-rig/contracts",
3
- "version": "0.0.6-alpha.6",
3
+ "version": "0.0.6-alpha.61",
4
4
  "type": "module",
5
5
  "description": "Rig package",
6
6
  "license": "UNLICENSED",