An Agent Skill that creates markdown pastes on gomarkdown.online and returns shareable URLs.
Works with Claude Code, Codex CLI, and any agent that supports the SKILL.md specification.
When activated, this skill teaches the agent to:
- POST markdown content to the GoMarkdown API
- Construct the full shareable URL from the response
- Return the URL to the user
No API keys, no authentication, no dependencies beyond an HTTP client.
cp -r skills/creating-gomarkdown-paste /path/to/your/project/.claude/skills/mkdir -p ~/.claude/skills
cp -r skills/creating-gomarkdown-paste ~/.claude/skills/clawhub install creating-gomarkdown-pasteThe skill uses a single endpoint:
POST https://gomarkdown.online/api/paste
Content-Type: application/json
{"markdown": "# Your content here"}
Response (201 Created):
{"id": "iB_vxKVwpG", "url": "/paste/iB_vxKVwpG"}Full URL: https://gomarkdown.online/paste/iB_vxKVwpG
Constraints: 500KB max, no auth, no binary content.
Full API docs: gomarkdown.online/api/docs
MIT