kordoc-parse-metadata — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited kordoc-parse-metadata (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
src/mcp.ts uses internal metadata-only helpers, but the public npx kordoc surface does not expose that fast path. With npx only, emulate the tool by parsing JSON and returning just the metadata fields.
.hwp, .hwpx, .pdf.npm exec --yes --package=kordoc --package=pdfjs-dist -- node <<'SCRIPT'
const p = require("path"), fs = require("fs");
const nmBin = process.env.PATH.split(p.delimiter).find(d => d.endsWith(".bin"));
const kUrl = "file:///" + p.join(p.resolve(nmBin, ".."), "kordoc", "dist", "index.js").split(p.sep).join("/");
import(kUrl).then(async (k) => {
const filePath = "/abs/path/document.hwpx";
const raw = fs.readFileSync(filePath);
const buffer = raw.buffer.slice(raw.byteOffset, raw.byteOffset + raw.byteLength);
const result = await k.parse(buffer);
if (!result.success) throw new Error(result.error);
console.log(JSON.stringify({
fileType: result.fileType ?? null,
pageCount: result.pageCount ?? null,
metadata: result.metadata ?? null,
outline: result.outline ?? null,
warnings: result.warnings ?? null
}, null, 2));
}).catch(e => { console.error(e); process.exit(1); });
SCRIPTnpx-only.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.