portable-agent-layer 0.41.0 → 0.41.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "portable-agent-layer",
3
- "version": "0.41.0",
3
+ "version": "0.41.1",
4
4
  "description": "PAL — Portable Agent Layer: persistent personal context for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {
@@ -74,6 +74,7 @@ export async function checkReflectTrigger(): Promise<void> {
74
74
  stdout: "ignore",
75
75
  stderr: "ignore",
76
76
  stdin: "ignore",
77
+ windowsHide: true,
77
78
  });
78
79
  proc.unref();
79
80
  logDebug("reflect-trigger", "Spawned reflect in background");
@@ -68,6 +68,7 @@ async function checkRepo(): Promise<UpdateCache> {
68
68
  cwd: repoDir,
69
69
  stdout: "ignore",
70
70
  stderr: "ignore",
71
+ windowsHide: true,
71
72
  });
72
73
  await fetch.exited;
73
74
 
@@ -75,6 +76,7 @@ async function checkRepo(): Promise<UpdateCache> {
75
76
  cwd: repoDir,
76
77
  stdout: "pipe",
77
78
  stderr: "ignore",
79
+ windowsHide: true,
78
80
  });
79
81
  const localHash = (await new Response(local.stdout).text()).trim();
80
82
 
@@ -82,6 +84,7 @@ async function checkRepo(): Promise<UpdateCache> {
82
84
  cwd: repoDir,
83
85
  stdout: "pipe",
84
86
  stderr: "ignore",
87
+ windowsHide: true,
85
88
  });
86
89
  const remoteHash = (await new Response(remote.stdout).text()).trim();
87
90
 
@@ -95,6 +98,7 @@ async function checkRepo(): Promise<UpdateCache> {
95
98
  cwd: repoDir,
96
99
  stdout: "pipe",
97
100
  stderr: "ignore",
101
+ windowsHide: true,
98
102
  });
99
103
  const remotePkg = JSON.parse(await new Response(show.stdout).text());
100
104
  latest = remotePkg.version || current;
@@ -30,6 +30,7 @@ export function spawnDetachedInference(
30
30
  detached: true,
31
31
  stdio: "ignore",
32
32
  env: { ...process.env, CLAUDECODE: undefined },
33
+ windowsHide: true,
33
34
  });
34
35
  child.unref();
35
36
  logDebug(scope, `detached inference spawned: ${args[0] ?? "no-mode"}`);
@@ -564,6 +564,7 @@ async function singleCliAttempt(
564
564
  stdin: "pipe",
565
565
  stdout: "pipe",
566
566
  stderr: "pipe",
567
+ windowsHide: true,
567
568
  });
568
569
  } catch (err) {
569
570
  void logError("inference:spawn", err);
@@ -191,6 +191,7 @@ function spawnBackgroundRebuild(): void {
191
191
  detached: true,
192
192
  stdio: "ignore",
193
193
  env: process.env,
194
+ windowsHide: true,
194
195
  });
195
196
  child.unref();
196
197
  } catch (err) {