@attalabs/vinaya 0.1.2 → 0.1.3

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.
@@ -2773,7 +2773,7 @@ var CHECK_NAME = "coherence";
2773
2773
  var execFileAsync4 = promisify4(execFile4);
2774
2774
  function git(args) {
2775
2775
  try {
2776
- return execFileSync2("git", args, { encoding: "utf8" }).trim();
2776
+ return execFileSync2("git", args, { encoding: "utf8", stdio: ["ignore", "pipe", "pipe"] }).trim();
2777
2777
  } catch {
2778
2778
  return "";
2779
2779
  }
@@ -2773,7 +2773,7 @@ var CHECK_NAME = "dispatch-readiness";
2773
2773
  var execFileAsync4 = promisify4(execFile4);
2774
2774
  function git(args) {
2775
2775
  try {
2776
- return execFileSync2("git", args, { encoding: "utf8" }).trim();
2776
+ return execFileSync2("git", args, { encoding: "utf8", stdio: ["ignore", "pipe", "pipe"] }).trim();
2777
2777
  } catch {
2778
2778
  return "";
2779
2779
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@attalabs/vinaya",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Vinaya — Agentic Engineering Harness. Deterministic checks every AI coding agent must satisfy before merge.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",