document — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited document (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
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.
Display markdown documents with syntax highlighting and optional text selection.
display (default)Read-only document view with markdown rendering.
canvas_document({
content: "# Hello World\n\nThis is **markdown** content.",
title: "My Document",
scenario: "display"
})editInteractive document view with text selection support.
canvas_document({
content: "# My Blog Post\n\nThis is the **introduction** to my post.\n\n## Section One\n\n- Point one\n- Point two",
title: "Blog Post Draft",
scenario: "edit"
})email-previewSpecialized view for email content display.
canvas_document({
content: "Dear Team,\n\nPlease review the attached document.\n\nBest regards,\nAlice",
title: "RE: Project Update",
scenario: "email-preview"
})canvas_document({
content: string, // Required: Markdown content to display
title?: string, // Optional: Document title (shown in header)
scenario?: string // Optional: "display" | "edit" | "email-preview"
})The document canvas renders these markdown features:
# H1, ## H2, ### H3, etc.**text***text* code ` and fenced code blocks[text](url)-, *) and ordered (1.)> quoted text---q or Esc: Close canvascanvas_document({
content: `Hi Team,
Just a quick update on the project status:
**Completed:**
- Feature A implementation
- Bug fixes for module B
**In Progress:**
- Performance optimization
- Documentation updates
Let me know if you have questions!
Best,
Claude`,
title: "Project Update Email",
scenario: "email-preview"
})canvas_document({
content: `# API Reference
## \`getUserById(id: string)\`
Fetches a user by their unique identifier.
\`\`\`typescript
const user = await getUserById("usr_123");
console.log(user.name);
\`\`\`
### Parameters
- \`id\` - The user's unique identifier
### Returns
A \`User\` object or \`null\` if not found.`,
title: "API Docs",
scenario: "display"
})When using the edit scenario, users can select text they want to modify. The selection is available via IPC for tools that need to know what the user highlighted.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.