@bendyline/gezel-catalog 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -11
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -67,7 +67,7 @@ var BUILTIN_TOOLSETS = [
67
67
  {
68
68
  id: "workspace-fs-read",
69
69
  name: "Workspace File Reading",
70
- description: "Read, list, search, and diff files in the project workspace. Mirrors Node's `fs` reads plus content/glob search. Diagnose-only \u2014 pair with `workspace-fs-write` to actually mutate.",
70
+ description: "Read, list, search, and diff files in the project workspace, and retrieve a referenced Boekwachter issue's durable metadata. Mirrors Node's `fs` reads plus content/glob search. Diagnose-only \u2014 pair with `workspace-fs-write` to actually mutate.",
71
71
  tools: [
72
72
  "list_dir",
73
73
  "read_file",
@@ -76,7 +76,8 @@ var BUILTIN_TOOLSETS = [
76
76
  "validate",
77
77
  "grep_files",
78
78
  "find_files",
79
- "diff_files"
79
+ "diff_files",
80
+ "get_file_issue"
80
81
  ]
81
82
  },
82
83
  {
@@ -91,7 +92,8 @@ var BUILTIN_TOOLSETS = [
91
92
  "map_repo",
92
93
  "search_code",
93
94
  "file_review",
94
- "list_file_issues"
95
+ "list_file_issues",
96
+ "set_file_issue_status"
95
97
  ]
96
98
  },
97
99
  {
@@ -1839,6 +1841,7 @@ import {
1839
1841
  resolvePnpmInvocation,
1840
1842
  retryTransient
1841
1843
  } from "@bendyline/gezel";
1844
+ import { windowsHeadlessSpawnOptions } from "@bendyline/gezel/native";
1842
1845
  import * as tar from "tar";
1843
1846
  var DEFAULT_NPM_REGISTRY = "https://registry.npmjs.org";
1844
1847
  var MAX_PACKUMENT_BYTES = 5 * 1024 * 1024;
@@ -2160,12 +2163,11 @@ function runAndWait(command, args, cwd, shell) {
2160
2163
  const child = spawn(command, args, {
2161
2164
  cwd,
2162
2165
  stdio: ["ignore", "pipe", "pipe"],
2163
- // DETACHED_PROCESS on Windows / a new process group on POSIX. The
2164
- // Windows half is load-bearing: the machine service's restricted SID
2165
- // cannot allocate a console, so a console-subsystem child started any
2166
- // other way dies as `spawn EPERM`. `windowsHide` (CREATE_NO_WINDOW)
2167
- // does not help — it still allocates one.
2168
- detached: true,
2166
+ // Keep the process-group boundary used by POSIX timeout cleanup. On
2167
+ // Windows, taskkill follows parent PIDs, so the owned installer stays
2168
+ // attached and its console window stays hidden.
2169
+ detached: process.platform !== "win32",
2170
+ ...windowsHeadlessSpawnOptions(),
2169
2171
  shell
2170
2172
  });
2171
2173
  let output = "";
@@ -2199,8 +2201,8 @@ function runAndWait(command, args, cwd, shell) {
2199
2201
  function killProcessTree(child) {
2200
2202
  if (process.platform === "win32" && child.pid) {
2201
2203
  const killer = spawn("taskkill.exe", ["/PID", String(child.pid), "/T", "/F"], {
2202
- detached: true,
2203
- stdio: "ignore"
2204
+ stdio: "ignore",
2205
+ ...windowsHeadlessSpawnOptions()
2204
2206
  });
2205
2207
  killer.once("error", () => child.kill("SIGKILL"));
2206
2208
  killer.unref();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/gezel-catalog",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Gezel catalog loader: sources, install pipeline, and authoring scripts over the external @bendyline/gilde content package.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -47,8 +47,8 @@
47
47
  "!dist/**/*.map"
48
48
  ],
49
49
  "dependencies": {
50
- "@bendyline/gezel": "1.0.0",
51
- "@bendyline/gilde": "0.1.21",
50
+ "@bendyline/gezel": "1.0.2",
51
+ "@bendyline/gilde": "0.1.23",
52
52
  "tar": "7.5.21",
53
53
  "zod": "^4.4.3"
54
54
  },