@h-rig/cli 0.0.6-alpha.52 → 0.0.6-alpha.54

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/bin/rig.js CHANGED
@@ -10711,6 +10711,8 @@ function stringArrayField(record, key) {
10711
10711
  return Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : [];
10712
10712
  }
10713
10713
  async function executeRigOwnedTaskRun(context, input) {
10714
+ process.stdout.on("error", () => {});
10715
+ process.stderr.on("error", () => {});
10714
10716
  const runtimeTaskId = input.taskId?.trim() || `adhoc-${input.runId}`;
10715
10717
  const existingRunRecord = readAuthorityRun5(context.projectRoot, input.runId);
10716
10718
  const resumeMode = process.env.RIG_RUN_RESUME === "1";
@@ -1493,6 +1493,8 @@ function stringArrayField(record, key) {
1493
1493
  return Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : [];
1494
1494
  }
1495
1495
  async function executeRigOwnedTaskRun(context, input) {
1496
+ process.stdout.on("error", () => {});
1497
+ process.stderr.on("error", () => {});
1496
1498
  const runtimeTaskId = input.taskId?.trim() || `adhoc-${input.runId}`;
1497
1499
  const existingRunRecord = readAuthorityRun3(context.projectRoot, input.runId);
1498
1500
  const resumeMode = process.env.RIG_RUN_RESUME === "1";
@@ -10517,6 +10517,8 @@ function stringArrayField(record, key) {
10517
10517
  return Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : [];
10518
10518
  }
10519
10519
  async function executeRigOwnedTaskRun(context, input) {
10520
+ process.stdout.on("error", () => {});
10521
+ process.stderr.on("error", () => {});
10520
10522
  const runtimeTaskId = input.taskId?.trim() || `adhoc-${input.runId}`;
10521
10523
  const existingRunRecord = readAuthorityRun5(context.projectRoot, input.runId);
10522
10524
  const resumeMode = process.env.RIG_RUN_RESUME === "1";
package/dist/src/index.js CHANGED
@@ -10707,6 +10707,8 @@ function stringArrayField(record, key) {
10707
10707
  return Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : [];
10708
10708
  }
10709
10709
  async function executeRigOwnedTaskRun(context, input) {
10710
+ process.stdout.on("error", () => {});
10711
+ process.stderr.on("error", () => {});
10710
10712
  const runtimeTaskId = input.taskId?.trim() || `adhoc-${input.runId}`;
10711
10713
  const existingRunRecord = readAuthorityRun5(context.projectRoot, input.runId);
10712
10714
  const resumeMode = process.env.RIG_RUN_RESUME === "1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h-rig/cli",
3
- "version": "0.0.6-alpha.52",
3
+ "version": "0.0.6-alpha.54",
4
4
  "type": "module",
5
5
  "description": "Rig package",
6
6
  "license": "UNLICENSED",
@@ -23,12 +23,12 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@clack/prompts": "^1.2.0",
26
- "@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.52",
27
- "@rig/client": "npm:@h-rig/client@0.0.6-alpha.52",
28
- "@rig/core": "npm:@h-rig/core@0.0.6-alpha.52",
29
- "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.52",
30
- "@rig/server": "npm:@h-rig/server@0.0.6-alpha.52",
31
- "@rig/standard-plugin": "npm:@h-rig/standard-plugin@0.0.6-alpha.52",
26
+ "@earendil-works/pi-coding-agent": "npm:@h-rig/pi-coding-agent@0.0.6-alpha.54",
27
+ "@rig/client": "npm:@h-rig/client@0.0.6-alpha.54",
28
+ "@rig/core": "npm:@h-rig/core@0.0.6-alpha.54",
29
+ "@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.54",
30
+ "@rig/server": "npm:@h-rig/server@0.0.6-alpha.54",
31
+ "@rig/standard-plugin": "npm:@h-rig/standard-plugin@0.0.6-alpha.54",
32
32
  "picocolors": "^1.1.1"
33
33
  }
34
34
  }