From gist
Create a GitHub Gist from a file path. Use when user says "/gist-create", "create a gist", or "gist this file".
How this skill is triggered — by the user, by Claude, or both
Slash command
/gist:gist-createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a GitHub Gist from the file path provided: $ARGUMENTS
Create a GitHub Gist from the file path provided: $ARGUMENTS
gh gist create <filepath> --desc "<description>" --public
--public flag (gists default to private)gh api -X POST /gists/<gist_id>/comments -f body='<markdown_readme>'
Note: Use single quotes around the body and escape any single quotes in the content with '''
npx claudepluginhub ericboehs/claude-plugins --plugin gistStages all changes, commits tersely, pushes to claude/* branch if needed, and opens draft GitHub PR with detailed description using authenticated gh CLI. Use on explicit request for one-flow PR creation.
Creates or edits GitHub PRs while preserving multiline formatting by writing the body to a file and using --body-file with gh.
Fetches and displays GitHub file contents, directory listings, line ranges, and shallow clones using gh CLI. Activates on blob/tree/raw URLs or read/fetch requests.