md-to-json-parser — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited md-to-json-parser (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.
name: md-to-json-parser description: Structure Markdown documents into JSON, supporting headings, paragraphs, tables, code blocks, etc. This skill should be used when users need to parse markdown files, convert markdown to structured data, extract content from markdown documents, analyze markdown structure, or process .md files programmatically. Keywords: markdown解析, markdown转JSON, 提取markdown结构, 分析markdown文档, parse markdown, convert md to json, extract markdown content, markdown structure analysis, process markdown files, 处理markdown文件 inputs:
outputs:
instructions: |
This skill parses Markdown documents and converts them into structured JSON format, making it easier for Claude to understand and work with document content programmatically.
Use this skill when you need to:
The structured JSON includes:
{
"metadata": {
"title": "Document Title",
"word_count": 1500,
"heading_count": 8,
"table_count": 3,
"code_block_count": 5
},
"structure": {
"headings": [
{"level": 1, "text": "Main Title", "id": "main-title"}
],
"paragraphs": [
{"text": "Content...", "word_count": 120}
],
"tables": [
{
"headers": ["Column1", "Column2"],
"rows": [
{"Column1": "data1", "Column2": "data2"}
]
}
],
"code_blocks": [
{
"language": "python",
"content": "def example():\n pass"
}
]
}
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.