Mindgraph
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
Markdown filenames, aliases, and wikilink relationships from the workspace are stored locally in mindgraph.json and may be reused in later queries.
The script indexes all Markdown files under the workspace, creating a persistent graph from workspace content.
for root, dirs, fnames in os.walk(WORKSPACE): ... if f.endswith('.md'): files.append(os.path.join(root, f))Use it in workspaces where broad Markdown indexing is acceptable, and avoid placing sensitive private notes in indexed Markdown files unless you want them included.
A saved MindSkill can affect future agent behavior when similar requests are made.
The skill stores learned repeatable processes as files that the agent later reads and follows, which is intentional but creates persistent task guidance.
Learning a New MindSkill ... Then write the PROCESS.md based on the user's description.
Review learned MindSkill PROCESS.md files before reusing them, especially if they were created from untrusted or experimental instructions.
Markdown files the agent edits may be automatically written with Obsidian-style wikilinks even when the user did not specifically ask for graph formatting.
The skill broadly changes how the agent should write Markdown files. This is consistent with the skill’s purpose, but it applies beyond explicit graph-query tasks.
Every time you write or edit a markdown file, use `[[wikilinks]]` ... This is not optional.
Install only if you want wikilinks to become a default writing convention for workspace Markdown.
The skill may fail or behave differently if Python is unavailable, and the runtime requirement is not reflected in metadata.
The documentation expects a Python runtime and bundled script execution, while the registry requirements declare no required binaries.
python3 skills/mindgraph/scripts/mindgraph.py index
Confirm Python 3 is available and review the bundled script before relying on the commands.
