agentsclimarketplace

Creating gomarkdown paste

Skill alecplayground/gomarkdown-paste-skill/skills/creating-gomarkdown-paste

Creates a markdown paste on gomarkdown.online and returns the shareable URL. Use when the user wants to share markdown content via a link, create a paste of markdown, publish markdown online, or generate a shareable markdown document URL.From its SKILL.md

Install
npx -y skills add alecplayground/gomarkdown-paste-skill --skill creating-gomarkdown-paste

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • fetches URLsInstructs the agent to fetch 1 URL, including https://gomarkdown.online/api/paste.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.7 KB, 319 tokens by cl100k_base, as published. Nobody here has run it

Creating a GoMarkdown Paste

Create a markdown paste on gomarkdown.online and return the shareable URL.

How to create a paste

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.

Important details

  • Maximum paste size: 500KB
  • No authentication required
  • The markdown field in the request body is required and must be a string
  • Supports all standard markdown features plus Mermaid diagrams
  • Escape JSON special characters in the markdown content (newlines as \n, quotes as \", backslashes as \\)
  • On success the API returns HTTP 201
  • On invalid content the API returns HTTP 400 with an error message

After creating the paste

Always return the full shareable URL to the user: https://gomarkdown.online/paste/<id>

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.