
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@phuetz/lm-resizer
Advanced tools
Minimal JavaScript wrapper around the lm-resizer WASM ABI.
Build the WASM module:
rustup target add wasm32-unknown-unknown
./scripts/build-wasm.sh
# Windows:
powershell -File scripts/build-wasm.ps1
The build script copies lm_resizer_wasm.wasm next to this package's
index.js. To create a local npm tarball under dist, run
scripts/package-wasm.sh or scripts/package-wasm.ps1.
import { readFile } from "node:fs/promises";
import { initLmResizerWasm } from "@phuetz/lm-resizer";
const bytes = await readFile("lm_resizer_wasm.wasm");
const lm = await initLmResizerWasm(bytes);
const report = lm.compressJson('{ "a": 1 }');
console.log(report.output);
FAQs
Query-aware JSON compression for LLM agents, as a WebAssembly module: shrink noisy tool output before it reaches the model, keep errors and paths intact.
We found that @phuetz/lm-resizer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.