gist-upload

gist-upload is a skill for Claude Code from opendatahub-io/ai-helpers. It costs 29 tokens per session (471 once invoked), scanned A, original, Apache-2.0.

A workflow for uploading a conversation summary, plan, or other selected content as a GitHub Gist, a shareable snippet hosted by GitHub.

In plain words
What is it for?
Use it to create a Markdown gist from a plan, summary, analysis, or other clearly identified part of the conversation.
Why use it?
It saves the manual work of copying, formatting, naming, and uploading conversation content.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the odh-git plugin — 6 skills shipped together

Good fit Use it to create a Markdown gist from a plan, summary, analysis, or other clearly identified part of the conversation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/opendatahub-io/ai-helpers/gist-upload
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add opendatahub-io/ai-helpers --skill gist-upload
Clone the repo
git clone --depth 1 https://github.com/opendatahub-io/ai-helpers

Made for: Claude Code.

Or install odh-git, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gist-upload

README.md
[![agentmods](https://agentmods.dev/badge/skills/opendatahub-io/ai-helpers/gist-upload/github.svg)](https://agentmods.dev/skills/opendatahub-io/ai-helpers/gist-upload)
Your own site
<a href="https://agentmods.dev/skills/opendatahub-io/ai-helpers/gist-upload"><img src="https://agentmods.dev/badge/skills/opendatahub-io/ai-helpers/gist-upload/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gist-upload

Your own site · 80×15
<a href="https://agentmods.dev/skills/opendatahub-io/ai-helpers/gist-upload"><img src="https://agentmods.dev/badge/skills/opendatahub-io/ai-helpers/gist-upload.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 471 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Data Exfiltration · line 17
    Code or instructions that leak agent conversation context to external services, potentially exposing sensitive user interactions.
    Fix: Remove any code that sends prompts, responses, or session data externally. Preserve user privacy; never exfiltrate conversation content.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00471
Opus 5 $0.00015 $0.00235
Sonnet 5 $0.00006 $0.00094
Haiku 4.5 $0.00003 $0.00047

Measured 12d ago against content hash a0b399015b59, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gist-upload scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/odh-git/skills/gist-upload/SKILL.md · 52 lines

What it actually says

Upload to GitHub Gist

Upload content from the current conversation (a plan, summary, analysis, or other output) as a GitHub Gist using the gh CLI.

Prerequisites

  • gh CLI must be installed and authenticated (gh auth status should succeed)

Usage

This skill triggers when the user asks to upload conversation content to a gist, for example:

  • "Upload the plan to gist"
  • "Upload the summary of our conversation as a gist"
  • "Create a gist with the analysis above"
  • "Share this as a gist"

Implementation

Step 1: Identify the Content

  1. Look at the conversation history to identify what the user wants uploaded
  2. If the user says "the plan", "the summary", "the analysis", etc., find that specific content in the conversation
  3. If ambiguous, ask the user: "Which part of our conversation should I upload? For example, the plan, summary, or a specific section?"

Step 2: Format the Content

  1. Take the identified content and format it as clean markdown
  2. Choose a descriptive filename based on the content type, e.g. plan.md, summary.md, analysis.md
  3. If the content relates to a specific project or topic, include that in the filename, e.g. migration-plan.md

Step 3: Upload via gh gist create

  1. Write the content to a temporary file in /tmp/
  2. Upload using gh:
    gh gist create /tmp/<filename>
    
    • Gists are created as secret by default. Note: secret gists are unlisted, not private, anyone with the URL can view them. Warn the user about this before uploading sensitive content.
    • If the user explicitly asks for a public gist, add --public
  3. Capture the gist URL from the command output

Step 4: Report and Clean Up

  1. Show the user the gist URL
  2. Delete the temporary file
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 52 lines · 29 tokens per session scan A a0b399015b59

Subscribe to this mod's changes

gist-upload is a skill published in the GitHub repository opendatahub-io/ai-helpers (37 stars, last pushed 4d ago), licensed Apache-2.0. It adds 29 tokens to every session and 471 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens

block-no-verify-hook

Configure a PreToolUse hook to prevent AI agents from skipping git pre-commit hooks with --no-verify and other bypass flags. Use when setting up Claude Code projects that enforce commit quality gates.

wshobson/agents · 46 tokens

turborepo-caching

Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching.

wshobson/agents · 42 tokens

ainb-fleet:ainb-spawn

Spawn a coding-agent session correctly with ainb run: always into a git worktree, never bare into a plain checkout. Use whenever you are about to start a Claude/Codex/Gemini/Copilot session in a terminal. Guards the invocations that silently produce a (broken) workspace row, two agents sharing one working tree, a…

stevengonsalvez/agents-in-a-box · 107 tokens

Finishing a Development Branch

Clean branch finalization, squashing commits, and updating changelogs before merging.

ankur-gaurav161418/omniforge · 23 tokens