A straightforward way to publish files or notes as GitHub Gists directly from Claude. It wraps the gh CLI (or falls back to the GitHub API) and handles both public and secret gists with options for custom descriptions, filenames, and browser opening. Useful when you're iterating with Claude on code or markdown and want to quickly share a snapshot without creating a full repo. Defaults to secret gists, which is the right call since most throwaway shares don't need to clutter your public profile. The JSON output and URL-only mode make it easy to pipe into other workflows. Works with stdin too, so you can echo content straight into a gist.
npx -y skills add glebis/claude-skills --skill github-gist --agent claude-codeInstalls into .claude/skills of the current project.
Publish any file as a GitHub Gist for easy sharing.
Uses gh CLI by default. Ensure you're authenticated:
gh auth status
# If not authenticated: gh auth login
Fallback: Set GITHUB_GIST_TOKEN env var with gist scope.
# Publish file as secret (unlisted) gist - DEFAULT
python3 scripts/publish_gist.py /path/to/file.md
# Publish as public gist (visible in your profile)
python3 scripts/publish_gist.py /path/to/file.md --public
# Custom description
python3 scripts/publish_gist.py /path/to/file.md -d "My awesome note"
# Override filename in gist
python3 scripts/publish_gist.py /path/to/file.md -f "readme.md"
# From stdin
echo "Hello" | python3 scripts/publish_gist.py - -f "hello.txt"
# Just get URL
python3 scripts/publish_gist.py /path/to/file.md --url-only
# Create and open in browser
python3 scripts/publish_gist.py /path/to/file.md --open
| Flag | Description |
|---|---|
--public | Create public gist (default is secret/unlisted) |
-d, --description | Gist description |
-f, --filename | Override filename |
--url-only | Output only URL |
--open | Open in browser |
--api | Force API instead of gh CLI |
{
"url": "https://gist.github.com/user/abc123",
"id": "abc123",
"public": false,
"filename": "file.md"
}
Session log published with this skill: https://gist.github.com/glebis/3faaae6b907123929220e81add51a567
cursor/plugins
github/awesome-copilot
alirezarezvani/claude-skills
microsoft/win-dev-skills