convert-schematic-pdf

convert-schematic-pdf is a skill for Codex from ght123247/schematic-pdf-to-json. It costs 57 tokens per session (593 once invoked), scanned A, original, MIT.

A workflow for converting PDF circuit schematics into SchematicIR JSON, a structured description of components and their electrical connections. It preserves uncertainty when the PDF does not provide enough evidence.

In plain words
What is it for?
Use it to inspect schematic PDFs, extract components and nets, validate the resulting JSON, and review uncertain or blocked conversions.
Why use it?
It reduces the risk of turning unclear symbols or connections into confidently wrong circuit data.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to inspect schematic PDFs, extract components and nets, validate the resulting JSON, and review uncertain or blocked conversions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ght123247/schematic-pdf-to-json --skill convert-schematic-pdf
Clone the repo
git clone --depth 1 https://github.com/ght123247/schematic-pdf-to-json

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for convert-schematic-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf/github.svg)](https://agentmods.dev/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf)
Your own site
<a href="https://agentmods.dev/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf"><img src="https://agentmods.dev/badge/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for convert-schematic-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf"><img src="https://agentmods.dev/badge/skills/ght123247/schematic-pdf-to-json/convert-schematic-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 593 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.00593
Opus 5 $0.00028 $0.00296
Sonnet 5 $0.00011 $0.00119
Haiku 4.5 $0.00006 $0.00059

Measured 9d ago against content hash c3078cae37c5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

convert-schematic-pdf scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/plugins/plugins/schematic-pdf-to-json/skills/convert-schematic-pdf/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Convert Schematic PDF

Use the bundled schematic-pdf MCP server. Preserve uncertainty and optimize for precision before recall: omitting an uncertain object is preferable to emitting plausible but incorrect electrical information.

Workflow

  1. Call inspect_schematic_pdf with the absolute local PDF path.
  2. Confirm every selected page is vector or explicitly report unsupported raster/hybrid content.
  3. Call convert_schematic_pdf, restricting pages only when requested.
  4. Keep the returned manifest and all four artifact URIs.
  5. Read the final resource and report status, deterministic hash, counts, validation checks, and every blocking issue.
  6. Treat needs_review as incomplete. Never describe it as verified.
  7. Use validate_schematic_ir when reviewing an existing final JSON file.

Correctness Rules

  • Treat nets as the electrical source of truth; geometry alone is not a verified connection.
  • Never invent hidden pin numbers, missing reference-designator suffixes, symbol identities, component values, or remote net names.
  • For auto-detected native Altium Designer exports, use the dedicated profile for source-order reference/value pairing, compatible value classes, dark-blue wires, blue symbol strokes, black pin stubs, and red/yellow ports. Skip dense PCB-artwork pages with NON_SCHEMATIC_PAGE_SKIPPED.
  • Require explicit evidence before connecting a four-way crossing.
  • Keep uncertain candidates out of resolved collections and retain their page, source IDs, bounding boxes, and rejection reason in issues.
  • Report INVALID_REFDES_FORMAT and REFDES_LIKE_VALUE_UNRESOLVED for manual review instead of silently repairing or accepting the text.
  • Require both schema and topology checks to pass before calling structural output valid; unresolved blocking issues still prevent verified status.

MCP Contract

  • inspect_schematic_pdf(source_path) returns page classifications and source identity.
  • convert_schematic_pdf(source_path, pages?) returns a job manifest with raw, semantic, connectivity, and final resource URIs.
  • validate_schematic_ir(ir_path) validates without changing semantics.
  • schematic://schema/current contains the current JSON Schema.
  • schematic://jobs/{job_id}/{stage} reads a staged artifact.

Read the full file on GitHub · 55 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 55 lines · 57 tokens per session scan A c3078cae37c5

Subscribe to this mod's changes

convert-schematic-pdf is a skill published in the GitHub repository ght123247/schematic-pdf-to-json (1 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 593 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

datasheets

Extract structured specifications from electronic component datasheet PDFs — pinouts, electrical characteristics, peripherals, topology, and features. Cache extractions per project for consumption by schematic and PCB analyzers. Primary consumer infrastructure for kicad, emc, spice, and thermal analyzers. Use this…

aklofas/kicad-happy · 156 tokens

kernelcad-drawings

Export 2D engineering-drawing sheets (SVG) from any model or assembly — third-angle front/top/left + isometric views with hidden-line removal, overall dimensions, and a title block. Use when the deliverable is a human-readable fabrication or review drawing.

w1ne/kernelCAD-web · 60 tokens

datasheet-interpreter

Extracts key specifications from component datasheet PDFs for maker projects. Use when user shares a datasheet PDF URL, asks about component specs, needs pin assignments, I2C addresses, timing requirements, or register maps. Downloads and parses PDF to extract essentials. Complements datasheet-parser for quick lookups.

wedsamuel1230/arduino-skills · 67 tokens

analyzing-malicious-pdfs

Analyzes malicious PDF documents: parsing the object structure for JavaScript, OpenAction/launch triggers, embedded files, and URIs, then extracting and decoding suspicious streams without opening the document in a reader. Activates for requests to analyze a malicious PDF, inspect PDF JavaScript, or extract embedded…

meltedinhex/analyst-ai-pack · 73 tokens

extract-pattern

Extract passive component MPN pattern (resistor, capacitor, inductor) from a datasheet PDF. Returns structured data via the savepattern tool.

Faradworks/Pinscope · 30 tokens

extract-specs

Extract pin table, package info, and electrical specifications from a discrete/simple component datasheet PDF. Returns structured data via the savespecs tool.

Faradworks/Pinscope · 28 tokens