kordoc-parse-form — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited kordoc-parse-form (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.
Reproduce the parse_form logic from src/mcp.ts: parse the document, then run extractFormFields.
.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/form.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(k.extractFormFields(result.blocks), null, 2));
}).catch(e => { console.error(e); process.exit(1); });
SCRIPTextractFormFields(result.blocks).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.