Qmd
Analysis
This skill is coherent for local Markdown search, but users should notice that it installs an external CLI, indexes private local notes, and optionally runs scheduled re-indexing.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
`bun install -g https://github.com/tobi/qmd`
The skill directs users to install an external CLI globally from a GitHub URL. This is central to the skill's purpose, but the install is not pinned to a specific version or release in the provided artifact.
0 * * * * export PATH="$HOME/.bun/bin:$PATH" && qmd update
The skill provides optional cron examples for recurring index updates. This is disclosed maintenance behavior, but it is a form of persistence if the user installs the schedule.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
qmd collection add /path/to/notes --name notes --mask "**/*.md"
The setup indexes local Markdown files into searchable collections, and later commands can retrieve matching documents. This is the intended function, but it may create a reusable index over private notes.
