LaunchKit · 2026
Back to Skills

code-share

Share code via GitHub Gist instead of inline chat blocks.

2
536 downloads
by @jeromestein

Setup & Installation

openclaw skills install @jeromestein/code-share

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install code-share

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.

INPUT

User asks: 'Share the migration script we just wrote as a gist'

AGENT
  1. 1Checks GitHub CLI auth status with `gh auth status`
  2. 2Scans code for secrets and replaces any found with placeholders
  3. 3Writes the script to a temp file with the correct extension
  4. 4Runs `gh gist create` with a short description, defaulting to secret
  5. 5Returns the fixed 3-line response: summary, URL, filename and line count
OUTPUT

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.

GitHub CLI (`gh`) installed and authenticated with gist scope