Kazakhstan tax assistant
Analysis
This is a coherent Kazakhstan tax-code lookup skill, with some disclosed local-script and insecure-download behaviors users should understand before relying on it.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
console.warn("⚠️ --insecure: проверка TLS отключена. Используйте только в доверенной сети.");
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";The fetch/update path can intentionally disable TLS certificate verification. This is disclosed and gated by --insecure, but it can reduce confidence that downloaded legal text came unmodified from the intended source.
const resolved = filePath.startsWith("/") || filePath.match(/^[A-Za-z]:/) ? filePath : join(process.cwd(), filePath);
return readFileSync(resolved, "utf-8");The custom --file search mode can read a user-specified local path. The documented purpose is searching downloaded law files, but the code itself does not restrict paths to the skill's data directory.
