obsidian-canvas-architect — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited obsidian-canvas-architect (Agent Skill) and scored it 87/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 3 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 3 flagged
The text {match} tells the agent to skip the normal "ask the user first" gate. Used adversarially it removes the human-in-the-loop check before destructive or sensitive actions, turning a normally-gated agent into a fire-and-forget executor.
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This skill requires Python 3.8+ and standard library only. No external packages needed.
To install this skill's dependencies:
pip-compile ./requirements.in
pip install -r ./requirements.txtSee ./requirements.txt for the dependency lockfile (currently empty — standard library only).
Status: Active Author: Richard Fremmerlid Domain: Obsidian Integration Depends On: obsidian-vault-crud (WP06)
Obsidian Canvas files (.canvas) use the JSON Canvas Spec 1.0 to define visual boards with nodes (text, file references, URLs) connected by directional edges. This skill lets agents programmatically generate visual planning boards, architecture diagrams, and execution flowcharts.
A .canvas file is JSON with two top-level arrays:
{
"nodes": [
{"id": "1", "type": "text", "text": "Hello", "x": 0, "y": 0, "width": 250, "height": 60},
{"id": "2", "type": "file", "file": "path/to/note.md", "x": 300, "y": 0, "width": 250, "height": 60}
],
"edges": [
{"id": "e1", "fromNode": "1", "toNode": "2", "fromSide": "right", "toSide": "left"}
]
}| Type | Required Fields | Purpose |
|---|---|---|
text | text, x, y, width, height | Inline text content |
file | file, x, y, width, height | Reference to a vault note |
link | url, x, y, width, height | External URL |
group | label, x, y, width, height | Visual grouping container |
| Field | Required | Description |
|---|---|---|
fromNode | Yes | Source node ID |
toNode | Yes | Target node ID |
fromSide | No | top, right, bottom, left |
toSide | No | top, right, bottom, left |
label | No | Edge label text |
python ./canvas_ops.py create --file <path.canvas>python ./canvas_ops.py add-node \
--file <path.canvas> --type text --text "My Node" --x 100 --y 200python ./canvas_ops.py add-edge \
--file <path.canvas> --from-node id1 --to-node id2python ./canvas_ops.py read --file <path.canvas>obsidian-vault-crud atomic write protocol~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.