Quicksort Markdown

PassAudited by ClawScan on May 10, 2026.

Overview

This appears to be a simple local Markdown-sorting tool with no credential, network, persistence, or background behavior, though users should choose output files carefully.

This skill is reasonable to use for local Markdown organization. Confirm the correct script name, run it on a copy or write to a new output file first, and review the sorted result before replacing important notes.

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

The skill may not run as documented unless the user or agent uses the actual provided script name.

Why it was flagged

The usage documentation references quicksort_markdown.py, but the provided file manifest contains tool.py. This looks like a packaging or documentation mismatch rather than malicious behavior.

Skill content
python quicksort_markdown.py notes.md -o sorted_notes.md
Recommendation

Verify the correct command before running the tool; the package should update SKILL.md or rename the script for consistency.

What this means

If an existing file is chosen as output, its contents may be replaced by the sorted output.

Why it was flagged

The tool writes to a user-selected output file, which is expected for a Markdown sorting utility, but write mode can overwrite an existing destination file.

Skill content
type=argparse.FileType("w"),
        default=sys.stdout,
        help="Output file (stdout if not specified)"
Recommendation

Write to a new file first, review the result, and keep a backup before replacing important notes.