Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
Shares code via GitHub Gist instead of pasting it inline in chat. For outputs over 10 lines, it creates a secret gist by default, returns a fixed 3-line summary with the URL, and strips sensitive values before sharing. Updating previously shared code reuses the same gist URL as a new revision.
Using a gist URL keeps chat readable and gives recipients a stable, syntax-highlighted link they can bookmark or fork instead of copying raw text.
When to use it
- Sharing a long script in a Discord server without wall-of-text formatting
- Getting a copy-paste-ready link for a multi-file refactor
- Iterating on a script with a teammate using a stable gist URL
- Posting sanitized code publicly without accidentally leaking API keys
- Reviewing generated code in GitHub's syntax-highlighted gist view
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: 'Share the migration script we just wrote as a gist'
- 1Checks GitHub CLI auth status with `gh auth status`
- 2Scans code for secrets and replaces any found with placeholders
- 3Writes the script to a temp file with the correct extension
- 4Runs `gh gist create` with a short description, defaulting to secret
- 5Returns the fixed 3-line response: summary, URL, filename and line count
Shared the migration script as a secret Gist for clean copy/paste. https://gist.github.com/... File: migrate.py · Lines: 87
Requirements
Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.