From gist-writer
Create a private (secret) GitHub gist from a file or content using the gh CLI. Use when the user asks to save something as a private gist, secret gist, or "gist this privately".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin gist-writerThis skill uses the workspace's default tool permissions.
`gh gist create` creates **secret (private) gists by default**. There is no
Prevents silent decimal mismatch bugs in EVM ERC-20 tokens via runtime decimals lookup, chain-aware caching, bridged-token handling, and normalization. For DeFi bots, dashboards using Python/Web3, TypeScript/ethers, Solidity.
Share bugs, ideas, or general feedback.
gh gist create creates secret (private) gists by default. There is no
--secret or --private flag — passing one will fail. The --public flag is
what makes a gist public; omit it for private.
From an existing file:
gh gist create -d "Short description" /path/to/file.md
From multiple files (same gist):
gh gist create -d "Description" file1.md file2.sh
From stdin (requires --filename):
echo "content" | gh gist create -d "Description" --filename notes.md -
Open in browser after creation:
gh gist create -d "Description" -w file.md
-d, --desc — description-f, --filename — filename when reading from stdin-p, --public — make it public (DO NOT pass this for private gists)-w, --web — open in browser after creation/tmp/<name>.md) first.gh gist create -d "..." /tmp/<name>.md.--secret — it doesn't exist and will error.--private — same.--public.