registry  /  @sevoniva/llm-coding-bridge  /  0.3.0

@sevoniva/llm-coding-bridge@0.3.0

Local bridge for using OpenAI-compatible chat completion providers with coding clients.

Static Scan Results

scanned 1d ago · by rust-scanner

Static analysis completed at 65.0% confidence. No malicious behavior was detected; 7 low-signal pattern(s) were surfaced and cleared.

Static reason
No blocking static signals were detected.

Decision evidence

public snapshot
Behavioral surface
Source
ChildProcessCryptoEnvironmentVarsFilesystemNetwork
Supply chain
HighEntropyStringsUrlStrings
ManifestNo manifest risk signals triggered.
scanned 17 file(s), 70.6 KB of source, external domains: www.apple.com

Source & flagged code

1 flagged · loading source
lib/service.jsView file
5const path = require("node:path"); L6: const { spawnSync } = require("node:child_process"); L7: ... L12: function plistPath() { L13: return path.join(os.homedir(), "Library", "LaunchAgents", "com.sevoniva.llm-coding-bridge.plist"); L14: } ... L27: function installService(configPath, verb = "installed") { L28: if (process.platform !== "darwin") throw new Error("install-service currently supports macOS launchd only."); L29: const config = path.resolve(configPath); ... L50: const domain = `gui/${process.getuid()}`; L51: spawnSync("launchctl", ["bootout", domain, plistPath()], { stdio: "ignore" }); L52: const result = spawnSync("launchctl", ["bootstrap", domain, plistPath()], { encoding: "utf8" });
Medium
Install Persistence

Source writes installer persistence such as shell profile or service configuration.

lib/service.jsView on unpkg · L5

Findings

3 Medium4 Low
MediumNetwork
MediumEnvironment Vars
MediumInstall Persistencelib/service.js
LowScripts Present
LowFilesystem
LowHigh Entropy Strings
LowUrl Strings