🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

knowmind

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knowmind - npm Package Compare versions

Comparing version
0.3.0
to
0.3.1
+1
-1
package.json
{
"name": "knowmind",
"version": "0.3.0",
"version": "0.3.1",
"mcpName": "io.github.Schubeler-Consulting/knowmind",

@@ -5,0 +5,0 @@ "description": "Knowmind — das Agentengehirn aus Deutschland: CLI + MCP-Server (Langzeitgedächtnis & Wissensgraph für Ihre KI, Server in Deutschland).",

@@ -79,7 +79,8 @@ /**

// /reset alleine reicht nicht — die geerbten Berechtigungen müssen weg.
spawnSync("icacls", [target, "/inheritance:r"], { stdio: "ignore" });
spawnSync("icacls", [target, "/grant:r", `${user}${suffix}`], { stdio: "ignore" });
spawnSync("icacls", [target, "/grant:r", `SYSTEM${suffix}`], { stdio: "ignore" });
spawnSync("icacls", [target, "/inheritance:r"], { stdio: "ignore", windowsHide: true });
spawnSync("icacls", [target, "/grant:r", `${user}${suffix}`], { stdio: "ignore", windowsHide: true });
spawnSync("icacls", [target, "/grant:r", `SYSTEM${suffix}`], { stdio: "ignore", windowsHide: true });
spawnSync("icacls", [target, "/grant:r", `Administratoren${suffix}`], {
stdio: "ignore",
windowsHide: true,
});

@@ -89,2 +90,3 @@ // EN-Variante als Fallback (icacls akzeptiert beide nur in jeweiliger Locale)

stdio: "ignore",
windowsHide: true,
});

@@ -91,0 +93,0 @@ } catch {

@@ -147,2 +147,3 @@ /**

stdio: "ignore",
windowsHide: true,
});

@@ -149,0 +150,0 @@ child.unref();