Pandoc Convert

PassAudited by ClawScan on May 1, 2026.

Overview

This is a purpose-aligned document conversion guide, but it references helper scripts and templates that are not included in the provided artifact.

This skill looks safe to use as a pandoc command guide. Before installing or invoking it, be aware that the advertised helper scripts and templates are not included in the reviewed artifact; do not run local `scripts/convert.py` or shell helpers unless you know where they came from. Prefer direct `pandoc` commands or reviewed helper files, and check paths before batch conversions.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Some advertised helper workflows may fail or may run unrelated local scripts if those paths happen to exist in the user's working directory.

Why it was flagged

The skill references helper scripts and documentation files, but the provided artifact set contains only SKILL.md. This creates an incomplete-provenance note if a user tries to run similarly named local files.

Skill content
python scripts/convert.py input.md output.pdf ... ./scripts/batch_convert.sh input/*.md pdf output/ ... See `INSTALL.md`
Recommendation

Use direct pandoc commands when possible, or only run helper scripts obtained from a trusted and reviewed source.

What this means

Running the examples can create or overwrite output files and process many matching documents in batch mode.

Why it was flagged

The skill documents local CLI execution and batch file conversion. This is expected for a pandoc conversion skill, but users should notice that it can read and write local documents.

Skill content
pandoc input.md -o output.pdf ... python scripts/convert.py --batch *.md --format pdf --output-dir ./pdfs
Recommendation

Review input/output paths before running conversions, especially batch commands or commands in directories containing important files.