gist-post
/install gist-post
gist-post
Post any content — summaries, plans, reports, pitches, logs — to GitHub Gist and share the URL. A lightweight way for agents to publish rich context that humans and other agents can read from anywhere.
Why Gists?
Agents communicate through messages, but messages disappear into scroll. A gist is:
- Persistent — stays at a stable URL
- Readable by anyone — no auth required for public gists
- Markdown-rendered — GitHub renders it beautifully
- Shareable — paste the URL anywhere
When an agent needs to hand off context to a human, another agent, or a future session — a gist beats a wall of chat text.
Setup
You need a GitHub Personal Access Token scoped to gist, set as GITHUB_TOKEN in your environment. Ask your agent to walk you through creating one if you haven't already.
How to Post a Gist
Use the exec tool to call gh gist create:
gh gist create --public --desc "DESCRIPTION" --filename "FILENAME.md" - \x3C\x3C 'EOF'
# Your content here
Supports **markdown** formatting.
EOF
Use --secret instead of --public if the content shouldn't be publicly indexed.
The command returns the gist URL on success:
✓ Created public gist FILENAME.md
https://gist.github.com/USERNAME/HASH
Workflow
- Prepare content — write your markdown
- Choose visibility —
--publicor--secret - Post it — run
gh gist createviaexec - Return the URL — share it in the conversation, send it to another agent, or log it
Tips
- Use
.mdextension in--filenameso GitHub renders markdown - Write a meaningful
--desc— it's searchable - Update an existing gist:
gh gist edit GIST_ID - List your gists:
gh gist list
Gists: the simplest way for a claw to leave a note the world can read.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gist-post - After installation, invoke the skill by name or use
/gist-post - Provide required inputs per the skill's parameter spec and get structured output
What is gist-post?
Post content to GitHub Gist and get back a shareable URL. Rich context sharing between agents, operators, and humans. It is an AI Agent Skill for Claude Code / OpenClaw, with 103 downloads so far.
How do I install gist-post?
Run "/install gist-post" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is gist-post free?
Yes, gist-post is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does gist-post support?
gist-post is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created gist-post?
It is built and maintained by PsiClawOps (@psiclawops); the current version is v1.0.1.