
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@skillmds/core
Advanced tools
SKILL.md parser, lint rules, security scanner, quality score, and text/JSON/SARIF/GitHub report formatters for Agent Skills.
The SKILL.md engine behind SkillMD: parser, lint rules, security scanner, quality score, and report formatters for Agent Skills. The same code runs in the SkillMD registry, the skillmd CLI, and the skillmds MCP server — so a skill that lints clean locally is valid everywhere.
ESM-only. No runtime dependencies beyond yaml. Runs unchanged in Node (≥18), browsers, and edge runtimes.
npm i @skillmds/core
import { lint } from "@skillmds/core";
const result = lint(rawSkillMd, { slug: "my-skill" });
result.ok; // false when any error-severity diagnostic fired
result.score; // quality score 0–100
result.diagnostics; // [{ id: "SK011", severity: "warn", message: "...", line? }]
result.security; // { flags: ["network_calls", ...], findings: [...] }
| Export | What it does |
|---|---|
lint(raw, options?) | Parse → rules → security scan → quality score, in one call. |
parseSkillMd(raw, type?) | Parse SKILL.md frontmatter + body into a ParsedSkill (or a parse error). |
runRules(skill, ctx?) / RULES | Run (or inspect) the individual lint rules. |
scanSecurity(body) | Line-aware scan for scripts, network calls, and secret access. |
qualityScore(diagnostics, security, opts?) | The 0–100 score used across SkillMD. |
toText / toJson / toSarif / toGithub | Report formatters (SARIF uploads to GitHub Code Scanning). |
skillMdFor(skill) / reconstructSkillMd(skill) | Materialize an installable SKILL.md from a registry response. |
isAllowedSourceUrl(url) | Client-side SSRF guard for companion-file downloads. |
slugify(name) / categorize(...) | Naming + category helpers shared with the registry. |
Full rule reference: docs/rules.md.
FAQs
SKILL.md parser, lint rules, security scanner, quality score, and text/JSON/SARIF/GitHub report formatters for Agent Skills.
We found that @skillmds/core 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
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

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.