creating-gomarkdown-paste — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited creating-gomarkdown-paste (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.
Create a markdown paste on gomarkdown.online and return the shareable URL.
Send a POST request to the GoMarkdown API:
curl -s https://gomarkdown.online/api/paste \
--request POST \
--header 'Content-Type: application/json' \
--data '{"markdown": "<MARKDOWN_CONTENT>"}'The response is JSON:
{
"id": "abc1234567",
"url": "/paste/abc1234567"
}The shareable URL is https://gomarkdown.online + the url field from the response.
Example: If the response url is /paste/abc1234567, the full URL is https://gomarkdown.online/paste/abc1234567.
markdown field in the request body is required and must be a string\n, quotes as \", backslashes as \\)Always return the full shareable URL to the user: https://gomarkdown.online/paste/<id>
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.