clipboard — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited clipboard (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.
Auto-copy to system clipboard, either proactively or via /copy.
Copy automatically when output is clearly paste-worthy:
Append (Copied to clipboard) when auto-copying.
/copy - copy last response/copy <text> - copy specific textPlain text with markdown syntax (e.g. *bold*, ` ` `) does NOT render when pasted into rich text editors — Slack, Notion, Google Docs, email, Linear, etc. only parse markdown when typed, not pasted.
Solution: Set HTML on the clipboard. Rich text editors read public.html and render it natively.
osascript -l JavaScript -e '
ObjC.import("AppKit");
var pb = $.NSPasteboard.generalPasteboard;
pb.clearContents;
var html = "<b>Title</b><br><pre>code block</pre>";
pb.setStringForType($(html), "public.html");
pb.setStringForType($("plain text fallback"), "public.utf8-plain-text");
'Sets both HTML (for rich editors) and plain text (for terminals/plain editors) on the clipboard.
| GFM | HTML |
|---|---|
## Header | <b>Header</b> |
**bold** | <b>bold</b> |
_italic_ | <i>italic</i> |
` code ` | <code>code</code> |
` blocks | <pre>...</pre> |
- item / • item | • item<br> (or <ul><li>) |
| Pipe tables | <pre> with manually aligned columns |
[text](url) | <a href="url">text</a> |
--- | <br> |
| Newlines | <br> |
< in content | < (escape for HTML) |
pbcopy / pbpasteosascript -l JavaScript (NSPasteboard, see above)xclip -selection clipboardclip.exeUser: Give me a curl to test the webhook
→ Plain text, use pbcopy
(Copied to clipboard)User: /copy (after a markdown report with tables and bold)
→ Rich text, convert to HTML, use osascript JXA
(Copied to clipboard)~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.